From 9846a3692c9489f7c339b2c943d35578dbf84ed4 Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 23 Jan 2026 16:53:27 -0600 Subject: Hypr: windowrulev2 deprecated --- hypr/hyprland.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index e2c8f64..84d676a 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -218,7 +218,7 @@ plugin { # See https://wiki.hypr.land/Configuring/Window-Rules/ for more windowrulev2 = workspace special:easyeffects silent, match: class ^(com\.github\.wwmm\.easyeffects)$ # Fix brave xray menus -windowrulev2 = xray 0, match:class ^(\s*), match:title ^(\s*)$ +windowrule = xray 0, match:class ^(\s*), match:title ^(\s*)$ # Center floating XWayland windows windowrule = center on, match:xwayland on, match:class negative:^(steam|REAPER)$ # Make Steam Big Picture Mode fullscreen -- cgit v1.2.3 From 36639188f05004053dbca7e7ed2c54b1ac7a42b4 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sun, 25 Jan 2026 10:55:13 -0600 Subject: Hypr: dont fullscreen when only one window --- hypr/hyprland.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 84d676a..2ff046f 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -201,7 +201,7 @@ plugin { } hyprscrolling { - fullscreen_on_one_column = true + fullscreen_on_one_column = false column_width = 0.5 explicit_column_widths = 0.25, 0.333, 0.5, 0.667, 0.75, 1.0 focus_fit_method = 1 -- cgit v1.2.3 From 02b699ba5b029fc4501318000278209df07af35f Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sun, 25 Jan 2026 10:55:32 -0600 Subject: lf: no sixel option --- lf/lfrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lf/lfrc b/lf/lfrc index bc18f79..8473fd8 100644 --- a/lf/lfrc +++ b/lf/lfrc @@ -2,7 +2,7 @@ set ratios 1:2:3 set previewer ~/.config/lf/previewer set cleaner ~/.config/lf/cleaner # Basic Settings -set sixel true +#set sixel true set preview true set drawbox false set icons true -- cgit v1.2.3 From 9d01d57722154ba3b9869cbdb04806336cc58552 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sun, 25 Jan 2026 10:55:46 -0600 Subject: Override lf paste option --- lf/lfrc | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/lf/lfrc b/lf/lfrc index 8473fd8..cbe77a4 100644 --- a/lf/lfrc +++ b/lf/lfrc @@ -30,6 +30,30 @@ cmd open ${{ esac }} +# Override paste command +cmd paste ${{ + while read -r line; do + set -- "$@" "$line" + done < ~/.local/share/lf/files + mode="$1" + shift + case "$mode" in + copy) + echo "lf-paste in ${PWD}: rsync -av --backup -- $@ ." >> ~/.cache/lf.log + rsync -av --backup --progress -- "$@" . | + stdbuf -i0 -o0 -e0 tr '\r' '\n' | + while IFS= read -r line; do + lf -remote "send $id echo $line" + done + ;; + move) + echo "lf-paste in ${PWD}: mv -n -- $@ ." >> ~/.cache/lf.log + mv -n -- "$@" .;; + esac + rm ~/.local/share/lf/files + lf -remote "send clear" +}} + cmd execute ${{ exec "$f" }} cmd vimv ${{ exec vimv }} -- cgit v1.2.3