mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
22 lines
461 B
Nix
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"
|
|
];
|
|
};
|
|
}
|