diff --git a/home/desktop/sway.nix b/home/desktop/sway.nix index 2ca50bfe..7ac7ee7f 100644 --- a/home/desktop/sway.nix +++ b/home/desktop/sway.nix @@ -71,7 +71,7 @@ in { assigns = { "2" = [{app_id = "firefox";}]; "3" = [ - {app_id = "Signal";} + {class = "Signal";} {app_id = "fractal";} {app_id = "discord";} {class = "teams-for-linux";} @@ -105,17 +105,10 @@ in { keybindings = lib.mkOptionDefault { "${modifier}+Return" = "exec ${term}"; "${modifier}+Shift+Return" = "exec ${pkgs.foot}/bin/foot"; - "${modifier}+q" = "kill"; - "${modifier}+e" = "exec power-profiles"; - "${modifier}+p" = "exec powermenu"; - "${modifier}+v" = "floating toggle"; "${modifier}+space" = "exec ${pkgs.rofi}/bin/rofi -show drun"; "${modifier}+F1" = "exec ${pkgs.swaylock}/bin/swaylock"; "${modifier}+w" = "exec ${pkgs.firefox}/bin/firefox"; "${modifier}+f" = "exec ${pkgs.xfce.thunar}/bin/thunar"; - "${modifier}+m" = "fullscreen toggle"; - "${modifier}+c" = "scratchpad show"; - "${modifier}+Shift+c" = "move scratchpad"; }; colors = { focused = { diff --git a/wm/sway.nix b/wm/sway.nix index 59a9a752..88431827 100644 --- a/wm/sway.nix +++ b/wm/sway.nix @@ -24,6 +24,6 @@ in { }; programs.sway = { enable = true; - package = null; + wrapperFeatures.gtk = true; }; }