diff options
Diffstat (limited to 'accounts')
-rw-r--r-- | accounts/gkleen@sif/default.nix | 11 | ||||
-rw-r--r-- | accounts/gkleen@sif/niri/default.nix | 4 |
2 files changed, 15 insertions, 0 deletions
diff --git a/accounts/gkleen@sif/default.nix b/accounts/gkleen@sif/default.nix index 1e619505..b2b6203d 100644 --- a/accounts/gkleen@sif/default.nix +++ b/accounts/gkleen@sif/default.nix | |||
@@ -673,6 +673,17 @@ in { | |||
673 | StartupWMClass = "Rainbow"; | 673 | StartupWMClass = "Rainbow"; |
674 | }; | 674 | }; |
675 | }; | 675 | }; |
676 | thunderbird-lmu = { | ||
677 | name = "Thunderbird (LMU)"; | ||
678 | exec = "thunderbird --name thunderbird -P lmu %U"; | ||
679 | icon = "thunderbird"; | ||
680 | genericName = "Email Client"; | ||
681 | categories = [ "Network" "Chat" "Email" "Feed" "GTK" "News" ]; | ||
682 | settings = { | ||
683 | StartupWMClass = "thunderbird"; | ||
684 | StartupNotify = "true"; | ||
685 | }; | ||
686 | }; | ||
676 | }; | 687 | }; |
677 | 688 | ||
678 | fonts = { | 689 | fonts = { |
diff --git a/accounts/gkleen@sif/niri/default.nix b/accounts/gkleen@sif/niri/default.nix index 45605c94..99696c70 100644 --- a/accounts/gkleen@sif/niri/default.nix +++ b/accounts/gkleen@sif/niri/default.nix | |||
@@ -830,6 +830,10 @@ in { | |||
830 | 830 | ||
831 | "Mod+Control+W".action = with-empty-unnamed-workspace-action "{\"Action\":{\"FocusWorkspace\":{\"reference\":{\"Id\": $workspace_id}}}}"; | 831 | "Mod+Control+W".action = with-empty-unnamed-workspace-action "{\"Action\":{\"FocusWorkspace\":{\"reference\":{\"Id\": $workspace_id}}}}"; |
832 | "Mod+Control+Shift+W".action = with-empty-unnamed-workspace-action "{\"Action\":{\"MoveColumnToWorkspace\":{\"reference\":{\"Id\": $workspace_id}}}}"; | 832 | "Mod+Control+Shift+W".action = with-empty-unnamed-workspace-action "{\"Action\":{\"MoveColumnToWorkspace\":{\"reference\":{\"Id\": $workspace_id}}}}"; |
833 | |||
834 | "Mod+X".action = set-dynamic-cast-window; | ||
835 | "Mod+Shift+X".action = set-dynamic-cast-monitor; | ||
836 | "Mod+Control+Shift+X".action = clear-dynamic-cast-target; | ||
833 | })) | 837 | })) |
834 | (map ({ name, selector, spawn, key, ...}: if key != null && selector != null && spawn != null then bind key { action = focus-or-spawn-action selector name spawn; } else null) cfg.scratchspaces) | 838 | (map ({ name, selector, spawn, key, ...}: if key != null && selector != null && spawn != null then bind key { action = focus-or-spawn-action selector name spawn; } else null) cfg.scratchspaces) |
835 | ] | 839 | ] |