summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home/config/i3/startup.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/home/config/i3/startup.nix b/home/config/i3/startup.nix
index 0157fd8..7b57e41 100644
--- a/home/config/i3/startup.nix
+++ b/home/config/i3/startup.nix
@@ -8,12 +8,13 @@ in {
};
in (lib.optional config.services.redshift.enable
(autostart { command = "systemctl --user start redshift"; }))
-++ (lib.optional (background-image != null) (autostart {
+ ++ (lib.optional (background-image != null) (autostart {
command = "${pkgs.feh}/bin/feh --bg-scale ${background-image}";
})) ++ (lib.optional config.services.xidlehook.enable
(autostart { command = "systemctl --user xidlehook.service"; }))
++ (lib.optional config.services.emacs.enable
(autostart { command = "systemctl --user start emacs.service"; })) ++ [
+ (autostart { command = "xfce4-power-manager --daemon"; })
# Launch frequently used apps
(autostart { command = "thunderbird"; })
(autostart { command = "signal-desktop"; })