Files
omarchy-nix/modules/home-manager/hyprland/autostart.nix
T
2025-06-28 12:27:26 -05:00

22 lines
461 B
Nix

{
config,
pkgs,
...
}: {
wayland.windowManager.hyprland.settings = {
exec-once = [
# "hypridle & mako & waybar & fcitx5"
# "waybar"
# "swaybg -i ~/.config/omarchy/current/background -m fill"
"systemctl --user start hyprpolkitagent"
"wl-clip-persist --clipboard regular & clipse -listen"
# "dropbox-cli start" # Uncomment to run Dropbox
];
exec = [
"pkill -SIGUSR2 waybar || waybar"
];
};
}