diff options
Diffstat (limited to 'modules/home-manager/personal/gui/x/i3/startup.nix')
| -rw-r--r-- | modules/home-manager/personal/gui/x/i3/startup.nix | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/modules/home-manager/personal/gui/x/i3/startup.nix b/modules/home-manager/personal/gui/x/i3/startup.nix index b40247b..f3b54a2 100644 --- a/modules/home-manager/personal/gui/x/i3/startup.nix +++ b/modules/home-manager/personal/gui/x/i3/startup.nix @@ -11,12 +11,15 @@ (autostart { command = "keepassxc"; }) ] ++ autostartIf config.programs.thunderbird.enable { command = "thunderbird"; } - ++ autostartIf config.personal.profiles.social { command = "signal-desktop"; } - # ++ autostartIf config.services.redshift.enable { - # command = "systemctl --user start redshift"; - # } - # ++ autostartIf config.services.xidlehook.enable { - # command = "systemctl --user start xidlehook.service"; - # } + ++ autostartIf (config.personal.profiles.social.enable + && config.personal.profiles.social.identities.personal) { + command = "signal-desktop"; + } + # ++ autostartIf config.services.redshift.enable { + # command = "systemctl --user start redshift"; + # } + # ++ autostartIf config.services.xidlehook.enable { + # command = "systemctl --user start xidlehook.service"; + # } ; } |
