Add new file pyprland.nix Drop down term for kitty and volume control panel

"$modifier SHIFT,S, exec, pypr toggle term"
 "$modifier SHIFT,V, exec, pypr toggle volume"
This commit is contained in:
dwilliam62 2025-02-22 00:13:51 +00:00
parent 2a81d9d498
commit 0cba6e488c

36
modules/home/pyprland.nix Normal file
View File

@ -0,0 +1,36 @@
{
config,
pkgs,
...
}: {
home.packages = with pkgs; [pyprland];
xdg.configFile."hypr/pyprland.toml".text = ''
[pyprland]
plugins = [
"scratchpads",
"expose",
]
[scratchpads.term]
animation = "fromTop"
command = "kitty --class kitty-dropterm"
class = "kitty-dropterm"
size = "75% 60%"
max_size = "1920px 100%"
[scratchpads.volume]
animation = "fromRight"
command = "pavucontrol"
class = "pavucontrol"
lazy = true
size = "40% 90%"
max_size = "1080px 100%"
unfocus = "hide"
[expose]
include_special = false
'';
}