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

33 lines
898 B
Nix
Raw Normal View History

2024-10-09 03:36:08 -04:00
{ pkgs, ... }:
{
2024-08-24 22:16:51 -04:00
wayland.windowManager.sway = {
config = {
bars = [{command = "waybar";}];
startup = [
# Scratchpads
{command = "foot -a gotop -T Gotop gotop";}
{command = "foot -a music -T Music ncmpcpp";}
{command = "foot -a sound -T Sound pulsemixer";}
{command = "easyeffects";}
# Daemons and tray apps
{command = "wl-paste -t text --watch clipman store -P";}
{command = "wl-copy";}
{command = "mako";}
2024-09-18 02:07:39 -04:00
{command = "sunshine";}
2024-08-24 22:16:51 -04:00
{command = "${pkgs.rot8}/bin/rot8";}
# Polkit agent
{command = "${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1";}
# Foreground apps
{command = "librewolf -P Misc --name=MiscBrowser";}
2024-09-08 21:45:54 -04:00
{command = "vesktop";}
2024-10-01 18:18:26 -04:00
{command = "fractal";}
2024-08-24 22:16:51 -04:00
{command = "thunderbird";}
];
};
};
}