special workspace

This commit is contained in:
Tristan 2023-05-05 09:46:01 +01:00
parent aa5e75e924
commit bbd26675f8

View file

@ -104,6 +104,7 @@ in
yt-dlp yt-dlp
playerctl playerctl
swww swww
neofetch
inkscape inkscape
pavucontrol pavucontrol
@ -211,6 +212,8 @@ in
bind = SUPER, V, togglefloating, bind = SUPER, V, togglefloating,
bind = SUPER_SHIFT, V, togglegroup, bind = SUPER_SHIFT, V, togglegroup,
bind = SUPER_SHIFT, space, changegroupactive,n bind = SUPER_SHIFT, space, changegroupactive,n
bind = SUPER, Y, togglespecialworkspace
bind = SUPER_SHIFT, Y, movetoworkspace, special
bind = SUPER, P, exec,${ my-scripts.bwmenu }/bin/bwmenu bind = SUPER, P, exec,${ my-scripts.bwmenu }/bin/bwmenu
bind = SUPER_SHIFT, P, exec,${ my-scripts.bwotpmenu }/bin/bwotpmenu bind = SUPER_SHIFT, P, exec,${ my-scripts.bwotpmenu }/bin/bwotpmenu
@ -416,7 +419,7 @@ in
}; };
colors = { colors = {
foreground = "abb2bf"; foreground = "abb2bf";
background = "282c34"; background = "000000";
regular0 = "222222"; regular0 = "222222";
regular1 = "eb3a26"; regular1 = "eb3a26";
regular2 = "7fbc59"; regular2 = "7fbc59";
@ -893,9 +896,11 @@ color body red default "([a-z][a-z0-9+-]*://(((([a-z0-9_.!~*'();:&=+$,-]|%[0-9a-
gaps = { gaps = {
inner = 10; inner = 10;
}; };
keybindings = let keybindings =
let
modifier = config.wayland.windowManager.sway.config.modifier; modifier = config.wayland.windowManager.sway.config.modifier;
in lib.mkOptionDefault { in
lib.mkOptionDefault {
"${modifier}+Shift+x" = "kill"; "${modifier}+Shift+x" = "kill";
"${modifier}+d" = "exec ${pkgs.wofi}/bin/wofi --show drun"; "${modifier}+d" = "exec ${pkgs.wofi}/bin/wofi --show drun";
"${modifier}+o" = "exec ${my-deps.fileman}"; "${modifier}+o" = "exec ${my-deps.fileman}";
@ -913,7 +918,7 @@ color body red default "([a-z][a-z0-9+-]*://(((([a-z0-9_.!~*'();:&=+$,-]|%[0-9a-
"${modifier}+C" = "exec ${ my-scripts.open-code }/bin/open-code"; "${modifier}+C" = "exec ${ my-scripts.open-code }/bin/open-code";
"${modifier}+Z" = "exec ${pkgs.swaylock-effects}/bin/swaylock -f"; "${modifier}+Z" = "exec ${pkgs.swaylock-effects}/bin/swaylock -f";
}; };
bars = []; bars = [ ];
}; };
}; };