From 4c5431efc91060a2c07242b2830657df4061d1af Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 19 Dec 2025 12:46:46 -0600 Subject: Do not load plugins in config file; will crash on update --- hypr/hyprland.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 3d63bdd..05c9946 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -9,8 +9,8 @@ monitor = , preferred, auto, 1 # See https://wiki.hypr.land/Configuring/Keywords/ for more #{{{ Plugins -plugin = /var/cache/hyprpm/zachir/hyprland-plugins/hyprscrolling.so -plugin = /var/cache/hyprpm/zachir/hyprsplit/hyprsplit.so +#plugin = /var/cache/hyprpm/zachir/hyprland-plugins/hyprscrolling.so +#plugin = /var/cache/hyprpm/zachir/hyprsplit/hyprsplit.so #}}} #{{{ Autostart -- cgit v1.2.3 From f5f93f6cb622cabb3e7ee7eab77723991de84fa5 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 19 Dec 2025 12:47:08 -0600 Subject: Save backlight on startup --- hypr/hyprland.conf | 1 + 1 file changed, 1 insertion(+) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 05c9946..96cc554 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -33,6 +33,7 @@ exec-once = com.github.wwmm.easyeffects exec-once = systemctl --user start dunst exec-once = systemctl --user start hypridle exec-once = xwayland-satellite :1 +exec-once = bl-save #exec-once = mpd #}}} -- cgit v1.2.3 From 2e6fbf1445df54de3d271d046cdd7aa733972857 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 19 Dec 2025 12:47:21 -0600 Subject: Re-enable animations (hyprscrolling is fixed) --- hypr/hyprland.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 96cc554..a186f28 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -150,7 +150,7 @@ decoration { #{{{ Animations options animations { - enabled = no + enabled = yes # Some default animations, see https://wiki.hypr.land/Configuring/Animations/ for more bezier = myBezier, 0.05, 0.9, 0.1, 1.05 animation = windows, 1, 7, myBezier -- cgit v1.2.3 From ed116fa7b92420398b9e0e540b8ddab40c543f8c Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 19 Dec 2025 12:47:55 -0600 Subject: Update hyprland windowrules The center windowrule was super broken, and now you can only spawn the intended scratchpad window in a scratchpad special workspace. --- hypr/hyprland.conf | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index a186f28..df9c618 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -220,7 +220,20 @@ windowrulev2 = workspace special:easyeffects silent, class: ^(com\.github\.wwmm\ # Fix brave xray menus windowrulev2 = xray 0, class: ^(\s*), title: ^(\s*)$ # Center floating XWayland windows -windowrule = center, xwayland: 1 +#windowrule = center, xwayland: 1 +# Fix scratchpad window spawn behavior +windowrule = workspace +0, onworkspace:name:special:sphtop, class:negative:sphtop +windowrule = workspace +0, onworkspace:name:special:spterm, class:negative:spterm +windowrule = workspace +0, onworkspace:name:special:sppmxr, class:negative:sppmxr +windowrule = workspace +0, onworkspace:name:special:spblue, class:negative:spblue +windowrule = workspace +0, onworkspace:name:special:spncmp, class:negative:spncmp +windowrule = workspace +0, onworkspace:name:special:spmutt, class:negative:spmutt +windowrule = workspace +0, onworkspace:name:special:spprof, class:negative:spprof +windowrule = workspace +0, onworkspace:name:special:spirss, class:negative:spirss +windowrule = workspace +0, onworkspace:name:special:spvimw, class:negative:spvimw +windowrule = workspace +0, onworkspace:name:special:sptrmc, class:negative:sptrmc +windowrule = workspace +0, onworkspace:name:special:helvum, class:negative:helvum +windowrule = workspace +0, onworkspace:name:special:easyeffects, class:negative:easyeffects #}}} #{{{ Layerrules -- cgit v1.2.3 From b74017470ebcc277a775b57fca271412188c15fd Mon Sep 17 00:00:00 2001 From: zachir Date: Sat, 20 Dec 2025 21:05:35 -0600 Subject: Add window rules for steam/reaper Rather, fix center for steam and reaper popups, and add to fullscreen steam big picture mode. --- hypr/hyprland.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index df9c618..0b4afe3 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -220,7 +220,9 @@ windowrulev2 = workspace special:easyeffects silent, class: ^(com\.github\.wwmm\ # Fix brave xray menus windowrulev2 = xray 0, class: ^(\s*), title: ^(\s*)$ # Center floating XWayland windows -#windowrule = center, xwayland: 1 +windowrule = center, xwayland: 1, class: negative:^(steam|REAPER)$ +# Make Steam Big Picture Mode fullscreen +windowrule = fullscreen, class: ^(steam)$, title: ^(Steam Big Picture Mode)$ # Fix scratchpad window spawn behavior windowrule = workspace +0, onworkspace:name:special:sphtop, class:negative:sphtop windowrule = workspace +0, onworkspace:name:special:spterm, class:negative:spterm -- cgit v1.2.3 From 89930dfd56181beffe686052e8b447e9d5f40a90 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Mon, 29 Dec 2025 20:23:42 -0600 Subject: Update hypr config for 0.53.0 --- hypr/hyprland.conf | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 0b4afe3..2a64c9e 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -181,7 +181,7 @@ master { new_on_active = before #no_gaps_when_only = false orientation = left - inherit_fullscreen = true + #inherit_fullscreen = true drop_at_cursor = true } #}}} @@ -216,30 +216,30 @@ plugin { # Example windowrule v2 # windowrule = float, class:^(kitty)$, title:^(kitty)$ # See https://wiki.hypr.land/Configuring/Window-Rules/ for more -windowrulev2 = workspace special:easyeffects silent, class: ^(com\.github\.wwmm\.easyeffects)$ +windowrulev2 = workspace special:easyeffects silent, match: class ^(com\.github\.wwmm\.easyeffects)$ # Fix brave xray menus -windowrulev2 = xray 0, class: ^(\s*), title: ^(\s*)$ +windowrulev2 = xray 0, match:class ^(\s*), match:title ^(\s*)$ # Center floating XWayland windows -windowrule = center, xwayland: 1, class: negative:^(steam|REAPER)$ +windowrule = center on, match:xwayland on, match:class negative:^(steam|REAPER)$ # Make Steam Big Picture Mode fullscreen -windowrule = fullscreen, class: ^(steam)$, title: ^(Steam Big Picture Mode)$ +windowrule = fullscreen on, match:class ^(steam)$, match:title ^(Steam Big Picture Mode)$ # Fix scratchpad window spawn behavior -windowrule = workspace +0, onworkspace:name:special:sphtop, class:negative:sphtop -windowrule = workspace +0, onworkspace:name:special:spterm, class:negative:spterm -windowrule = workspace +0, onworkspace:name:special:sppmxr, class:negative:sppmxr -windowrule = workspace +0, onworkspace:name:special:spblue, class:negative:spblue -windowrule = workspace +0, onworkspace:name:special:spncmp, class:negative:spncmp -windowrule = workspace +0, onworkspace:name:special:spmutt, class:negative:spmutt -windowrule = workspace +0, onworkspace:name:special:spprof, class:negative:spprof -windowrule = workspace +0, onworkspace:name:special:spirss, class:negative:spirss -windowrule = workspace +0, onworkspace:name:special:spvimw, class:negative:spvimw -windowrule = workspace +0, onworkspace:name:special:sptrmc, class:negative:sptrmc -windowrule = workspace +0, onworkspace:name:special:helvum, class:negative:helvum -windowrule = workspace +0, onworkspace:name:special:easyeffects, class:negative:easyeffects +windowrule = workspace +0, match:workspace name:sphtop, match:class negative:sphtop +windowrule = workspace +0, match:workspace name:spterm, match:class negative:spterm +windowrule = workspace +0, match:workspace name:sppmxr, match:class negative:sppmxr +windowrule = workspace +0, match:workspace name:spblue, match:class negative:spblue +windowrule = workspace +0, match:workspace name:spncmp, match:class negative:spncmp +windowrule = workspace +0, match:workspace name:spmutt, match:class negative:spmutt +windowrule = workspace +0, match:workspace name:spprof, match:class negative:spprof +windowrule = workspace +0, match:workspace name:spirss, match:class negative:spirss +windowrule = workspace +0, match:workspace name:spvimw, match:class negative:spvimw +windowrule = workspace +0, match:workspace name:sptrmc, match:class negative:sptrmc +windowrule = workspace +0, match:workspace name:helvum, match:class negative:helvum +windowrule = workspace +0, match:workspace name:easyeffects, match:class negative:easyeffects #}}} #{{{ Layerrules -layerrule = blur, waybar +layerrule = blur on, match:namespace waybar #}}} #{{{ Mods -- cgit v1.2.3 From 42907de445d3469c2a38c6fd43f1c822dd8a2b99 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Fri, 2 Jan 2026 06:11:05 -0600 Subject: Update hyprpaper config to new standard --- hypr/hyprpaper.conf | 46 ++++++++++++++++++++++++++++++++-------------- 1 file changed, 32 insertions(+), 14 deletions(-) (limited to 'hypr') diff --git a/hypr/hyprpaper.conf b/hypr/hyprpaper.conf index 728c00c..a11d6b0 100644 --- a/hypr/hyprpaper.conf +++ b/hypr/hyprpaper.conf @@ -1,15 +1,33 @@ -preload = ~/Pictures/background.png -#if more than one preload is desired then continue to preload other backgrounds -#preload = /path/to/next_image.png -# .. more preloads - -#set the default wallpaper(s) seen on inital workspace(s) --depending on the number of monitors used -wallpaper = eDP-1,~/Pictures/background.png -wallpaper = HDMI-A-1,~/Pictures/background.png -wallpaper = HDMI-A-2,~/Pictures/background.png -wallpaper = DP-1,~/Pictures/background.png -wallpaper = DP-2,~/Pictures/background.png -#if more than one monitor in use, can load a 2nd image -#wallpaper = monitor2,~/background.png -# .. more monitors +wallpaper { + monitor = eDP-1 + path = ~/Pictures/background.png + fit_mode = cover +} + +wallpaper { + monitor = HDMI-A-1 + path = ~/Pictures/background.png + fit_mode = cover +} + +wallpaper { + monitor = HDMI-A-2 + path = ~/Pictures/background.png + fit_mode = cover +} + +wallpaper { + monitor = DP-1 + path = ~/Pictures/background.png + fit_mode = cover +} + +wallpaper { + monitor = DP-2 + path = ~/Pictures/background.png + fit_mode = cover +} + +# Misc Options splash = false +ipc = true -- cgit v1.2.3 From 6c799eb732f7915a8b458e9e5af34cf10ae8fedf Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sat, 3 Jan 2026 10:56:54 -0600 Subject: Fix scratchpad size+centering --- hypr/hyprland.conf | 60 ++++++++++++++++++++++++++++++++++++++++----------- hypr/hyprscratch.conf | 16 ++------------ 2 files changed, 50 insertions(+), 26 deletions(-) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 2a64c9e..d5dc4d3 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -224,18 +224,42 @@ windowrule = center on, match:xwayland on, match:class negative:^(steam|REAPER)$ # Make Steam Big Picture Mode fullscreen windowrule = fullscreen on, match:class ^(steam)$, match:title ^(Steam Big Picture Mode)$ # Fix scratchpad window spawn behavior -windowrule = workspace +0, match:workspace name:sphtop, match:class negative:sphtop -windowrule = workspace +0, match:workspace name:spterm, match:class negative:spterm -windowrule = workspace +0, match:workspace name:sppmxr, match:class negative:sppmxr -windowrule = workspace +0, match:workspace name:spblue, match:class negative:spblue -windowrule = workspace +0, match:workspace name:spncmp, match:class negative:spncmp -windowrule = workspace +0, match:workspace name:spmutt, match:class negative:spmutt -windowrule = workspace +0, match:workspace name:spprof, match:class negative:spprof -windowrule = workspace +0, match:workspace name:spirss, match:class negative:spirss -windowrule = workspace +0, match:workspace name:spvimw, match:class negative:spvimw -windowrule = workspace +0, match:workspace name:sptrmc, match:class negative:sptrmc -windowrule = workspace +0, match:workspace name:helvum, match:class negative:helvum -windowrule = workspace +0, match:workspace name:easyeffects, match:class negative:easyeffects +windowrule = workspace +0, match:workspace name:sphtop, match:title negative:sphtop +windowrule = workspace +0, match:workspace name:spterm, match:title negative:spterm +windowrule = workspace +0, match:workspace name:sppmxr, match:title negative:sppmxr +windowrule = workspace +0, match:workspace name:spblue, match:title negative:spblue +windowrule = workspace +0, match:workspace name:spncmp, match:title negative:spncmp +windowrule = workspace +0, match:workspace name:spmutt, match:title negative:spmutt +windowrule = workspace +0, match:workspace name:spprof, match:title negative:spprof +windowrule = workspace +0, match:workspace name:spirss, match:title negative:spirss +windowrule = workspace +0, match:workspace name:spvimw, match:title negative:spvimw +windowrule = workspace +0, match:workspace name:sptrmc, match:title negative:sptrmc +windowrule = workspace +0, match:workspace name:helvum, match:title negative:helvum +windowrule = workspace +0, match:workspace name:easyeffects, match:title negative:easyeffects +windowrule = center on, match:title sphtop +windowrule = center on, match:title spterm +windowrule = center on, match:title sppmxr +windowrule = center on, match:title spblue +windowrule = center on, match:title spncmp +windowrule = center on, match:title spmutt +windowrule = center on, match:title spprof +windowrule = center on, match:title spirss +windowrule = center on, match:title spvimw +windowrule = center on, match:title sptrmc +windowrule = center on, match:title helvum +windowrule = center on, match:title easyeffects +windowrule = size monitor_w/2 monitor_h/2, match:title ^(sphtop)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(spterm)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(sppmxr)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(spblue)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(spncmp)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(spmutt)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(spprof)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(spirss)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(spvimw)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(sptrmc)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(helvum)$ +windowrule = size monitor_w/2 monitor_h/2, match:title ^(easyeffects)$ #}}} #{{{ Layerrules @@ -437,6 +461,18 @@ bind = $mainMod Control, M, exec, volsv -m #}}} #{{{ Scratchpads +workspace = name:sphtop, persistent:false +workspace = name:spterm, persistent:false +workspace = name:sppmxr, persistent:false +workspace = name:spblue, persistent:false +workspace = name:spncmp, persistent:false +workspace = name:spmutt, persistent:false +workspace = name:spprof, persistent:false +workspace = name:spirss, persistent:false +workspace = name:spvimw, persistent:false +workspace = name:sptrmc, persistent:false +workspace = name:helvum, persistent:false +workspace = name:easyeffects, persistent:false bind = $mainMod CONTROL, Z, exec, hyprscratch toggle sphtop bind = $mainMod CONTROL, X, exec, hyprscratch toggle spterm bind = $mainMod CONTROL, C, exec, hyprscratch toggle sppmxr diff --git a/hypr/hyprscratch.conf b/hypr/hyprscratch.conf index 5964419..fe3cda6 100644 --- a/hypr/hyprscratch.conf +++ b/hypr/hyprscratch.conf @@ -1,8 +1,8 @@ # Optional globals that apply to all scratchpads daemon_options = clean -daemon_options = eager +daemon_options = spotless -global_rules = size 50% 50% +global_options = special sphtop { # Mandatory fields @@ -11,7 +11,6 @@ sphtop { # Optional fields options = lazy - options = special } spterm { @@ -21,7 +20,6 @@ spterm { # Optional fields options = lazy - options = special } sppmxr { @@ -31,7 +29,6 @@ sppmxr { # Optional fields options = lazy - options = special } spblue { @@ -41,7 +38,6 @@ spblue { # Optional fields options = lazy - options = special } spncmp { @@ -51,7 +47,6 @@ spncmp { # Optional fields options = lazy - options = special } spmutt { @@ -61,7 +56,6 @@ spmutt { # Optional fields options = lazy - options = special } spprof { @@ -71,7 +65,6 @@ spprof { # Optional fields options = lazy - options = special } spirss { @@ -81,7 +74,6 @@ spirss { # Optional fields options = lazy - options = special } spvimw { @@ -91,7 +83,6 @@ spvimw { # Optional fields options = lazy - options = special } sptrmc { @@ -101,7 +92,6 @@ sptrmc { # Optional fields options = lazy - options = special } helvum { @@ -111,7 +101,6 @@ helvum { # Optional fields options = lazy - options = special } easyeffects { @@ -121,6 +110,5 @@ easyeffects { # Optional fields options = lazy - options = special } -- cgit v1.2.3 From 4dfae6cc2cae76d60e04ead74774b74b1432219c Mon Sep 17 00:00:00 2001 From: ZachIR Date: Sun, 4 Jan 2026 21:18:58 -0600 Subject: Move scratchpads back to pyprland --- hypr/hyprland.conf | 64 +++++++++++------------------------------------ hypr/pyprland.toml | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+), 50 deletions(-) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index d5dc4d3..e2c8f64 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -22,7 +22,7 @@ exec-once = hyprpaper #exec-once = hypridle exec-once = waybar exec-once = pypr -exec-once = hyprscratch init +#exec-once = hyprscratch init exec-once = lxqt-policykit-agent exec-once = import-gsettings gtk-theme 'Flat-Remix-GTK-Green-Darkest' exec-once = import-gsettings icon-theme 'Papirus-Dark' @@ -235,31 +235,7 @@ windowrule = workspace +0, match:workspace name:spirss, match:title negative:spi windowrule = workspace +0, match:workspace name:spvimw, match:title negative:spvimw windowrule = workspace +0, match:workspace name:sptrmc, match:title negative:sptrmc windowrule = workspace +0, match:workspace name:helvum, match:title negative:helvum -windowrule = workspace +0, match:workspace name:easyeffects, match:title negative:easyeffects -windowrule = center on, match:title sphtop -windowrule = center on, match:title spterm -windowrule = center on, match:title sppmxr -windowrule = center on, match:title spblue -windowrule = center on, match:title spncmp -windowrule = center on, match:title spmutt -windowrule = center on, match:title spprof -windowrule = center on, match:title spirss -windowrule = center on, match:title spvimw -windowrule = center on, match:title sptrmc -windowrule = center on, match:title helvum -windowrule = center on, match:title easyeffects -windowrule = size monitor_w/2 monitor_h/2, match:title ^(sphtop)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(spterm)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(sppmxr)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(spblue)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(spncmp)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(spmutt)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(spprof)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(spirss)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(spvimw)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(sptrmc)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(helvum)$ -windowrule = size monitor_w/2 monitor_h/2, match:title ^(easyeffects)$ +windowrule = workspace +0, match:workspace name:easyfx, match:title negative:easyfx #}}} #{{{ Layerrules @@ -461,30 +437,18 @@ bind = $mainMod Control, M, exec, volsv -m #}}} #{{{ Scratchpads -workspace = name:sphtop, persistent:false -workspace = name:spterm, persistent:false -workspace = name:sppmxr, persistent:false -workspace = name:spblue, persistent:false -workspace = name:spncmp, persistent:false -workspace = name:spmutt, persistent:false -workspace = name:spprof, persistent:false -workspace = name:spirss, persistent:false -workspace = name:spvimw, persistent:false -workspace = name:sptrmc, persistent:false -workspace = name:helvum, persistent:false -workspace = name:easyeffects, persistent:false -bind = $mainMod CONTROL, Z, exec, hyprscratch toggle sphtop -bind = $mainMod CONTROL, X, exec, hyprscratch toggle spterm -bind = $mainMod CONTROL, C, exec, hyprscratch toggle sppmxr -bind = $mainMod CONTROL, V, exec, hyprscratch toggle spblue -bind = $mainMod CONTROL, B, exec, hyprscratch toggle spncmp -bind = $mainMod CONTROL, A, exec, hyprscratch toggle spmutt -bind = $mainMod CONTROL, S, exec, hyprscratch toggle spprof -bind = $mainMod CONTROL, D, exec, hyprscratch toggle spirss -bind = $mainMod CONTROL, F, exec, hyprscratch toggle spvimw -bind = $mainMod CONTROL, G, exec, hyprscratch toggle sptrmc -bind = $mainMod CONTROL, Q, exec, hyprscratch toggle helvum -bind = $mainMod CONTROL, E, exec, hyprscratch toggle easyeffects +bind = $mainMod CONTROL, Z, exec, pypr toggle sphtop +bind = $mainMod CONTROL, X, exec, pypr toggle spterm +bind = $mainMod CONTROL, C, exec, pypr toggle sppmxr +bind = $mainMod CONTROL, V, exec, pypr toggle spblue +bind = $mainMod CONTROL, B, exec, pypr toggle spncmp +bind = $mainMod CONTROL, A, exec, pypr toggle spmutt +bind = $mainMod CONTROL, S, exec, pypr toggle spprof +bind = $mainMod CONTROL, D, exec, pypr toggle spirss +bind = $mainMod CONTROL, F, exec, pypr toggle spvimw +bind = $mainMod CONTROL, G, exec, pypr toggle sptrmc +bind = $mainMod CONTROL, Q, exec, pypr toggle helvum +bind = $mainMod CONTROL, E, exec, pypr toggle easyfx #}}} #{{{ OBS bindings diff --git a/hypr/pyprland.toml b/hypr/pyprland.toml index cacd7f1..3110ba5 100644 --- a/hypr/pyprland.toml +++ b/hypr/pyprland.toml @@ -1,5 +1,78 @@ [pyprland] plugins = [ "toggle_special", + "scratchpads", "expose" ] + +[scratchpads.sphtop] +animation = "fromBottom" +command = "kitty --class sphtop -e htop" +class = "sphtop" +size = "50% 50%" + +[scratchpads.spterm] +animation = "fromBottom" +command = "kitty --class spterm" +class = "spterm" +size = "50% 50%" + +[scratchpads.sppmxr] +animation = "fromBottom" +command = "kitty --class sppmxr -e pulsemixer" +class = "sppmxr" +size = "50% 50%" + +[scratchpads.spblue] +animation = "fromBottom" +command = "kitty --class spblue -e bluetoothctl" +class = "spblue" +size = "50% 50%" + +[scratchpads.spncmp] +animation = "fromBottom" +command = "kitty --class spncmp -e ncmpcpp" +class = "spncmp" +size = "50% 50%" + +[scratchpads.spmutt] +animation = "fromBottom" +command = "kitty --class spmutt -e neomutt" +class = "spmutt" +size = "50% 50%" + +[scratchpads.spprof] +animation = "fromBottom" +command = "kitty --class spprof -e profanity" +class = "spprof" +size = "50% 50%" + +[scratchpads.spirss] +animation = "fromBottom" +command = "kitty --class spirss -e irssi" +class = "spirss" +size = "50% 50%" + +[scratchpads.spvimw] +animation = "fromBottom" +command = "kitty --class spvimw -e vw" +class = "spvimw" +size = "50% 50%" + +[scratchpads.trmc] +animation = "fromBottom" +command = "kitty --class trmc -e tremc" +class = "trmc" +size = "50% 50%" + +[scratchpads.helvum] +animation = "fromBottom" +command = "helvum" +class = "org.pipewire.Helvum" +size = "50% 50%" + +[scratchpads.easyfx] +animation = "fromBottom" +command = "easyeffects" +class = "com.github.wwmm.easyeffects" +size = "50% 50%" -- cgit v1.2.3