diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2025-05-09 20:36:07 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2025-05-09 20:36:07 +0200 |
commit | 3905093084393d6b7f4168371cf4ba64b54a1d11 (patch) | |
tree | 6f12c173e8789245d0ba3b56d551145ac0ac56ac /accounts/gkleen@sif | |
parent | 50e7168a785464e75c48296de718e1fc26d9dccb (diff) | |
download | nixos-3905093084393d6b7f4168371cf4ba64b54a1d11.tar nixos-3905093084393d6b7f4168371cf4ba64b54a1d11.tar.gz nixos-3905093084393d6b7f4168371cf4ba64b54a1d11.tar.bz2 nixos-3905093084393d6b7f4168371cf4ba64b54a1d11.tar.xz nixos-3905093084393d6b7f4168371cf4ba64b54a1d11.zip |
audiobookshelf
Diffstat (limited to 'accounts/gkleen@sif')
-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 | ] |