NixOS-Config/modules/home/wms/sway/autostart/default.nix

29 lines
830 B
Nix
Raw Normal View History

2024-11-12 18:03:28 -05:00
{ pkgs, ... }:
{
wayland.windowManager.sway.config = {
bars = [{ command = "waybar"; }];
startup = [
# Scratchpads
{ command = "foot -a btop -T Gotop btop"; }
2024-11-12 18:03:28 -05:00
{ command = "foot -a music -T Music ncmpcpp"; }
{ command = "foot -a sound -T Sound pulsemixer"; }
2024-12-08 06:41:06 -05:00
# Daemons and tray
{ command = "hyprpaper"; }
2024-11-12 18:03:28 -05:00
{ command = "wl-paste -t text --watch clipman store -P"; }
{ command = "wl-copy"; }
{ command = "mako"; }
{ command = "sunshine"; }
{ command = "${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1"; }
2024-12-08 06:41:06 -05:00
# Foreground
2024-11-12 18:03:28 -05:00
{ command = "librewolf -P Misc --name=MiscBrowser"; }
2024-12-08 06:41:06 -05:00
{ command = "thunderbird"; }
2024-11-12 18:03:28 -05:00
{ command = "vesktop"; }
{ command = "fractal"; }
{ command = "telegram-desktop"; }
2024-11-12 18:03:28 -05:00
];
};
}