28 lines
725 B
Nix
28 lines
725 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
myConfig,
|
|
...
|
|
}: {
|
|
wayland.windowManager.hyprland.settings = {
|
|
exec-once = [
|
|
# "[workspace special:communication silent] discord"
|
|
"[workspace special:steam silent] steam -start steam://open/bigpicture"
|
|
"[workspace special:preload silent] kitty --single-instance --hold fastfetch"
|
|
"[workspace special:preload silent] firefox"
|
|
"[workspace 1] kitty --single-instance --hold -e fish -C fastfetch"
|
|
|
|
"hyprctl setcursor Bibata-Modern-Ice 24"
|
|
|
|
"solaar -w hide"
|
|
# "sunshine"
|
|
# "moondeck-buddy"
|
|
|
|
"wl-paste --type text --watch cliphist store"
|
|
"wl-paste --type image --watch cliphist store"
|
|
|
|
"sleep 3 && caelestia shell"
|
|
];
|
|
};
|
|
}
|