2024-11-12 18:03:28 -05:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
wayland.windowManager.sway.config = {
|
|
|
|
bars = [{ command = "waybar"; }];
|
|
|
|
|
|
|
|
startup = [
|
|
|
|
# Scratchpads
|
2024-12-06 04:03:03 -05:00
|
|
|
{ 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
|
2024-12-03 16:50:23 -05:00
|
|
|
{ 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"; }
|
2024-12-20 03:20:05 -05:00
|
|
|
{ command = "rot8"; }
|
2024-11-12 18:03:28 -05:00
|
|
|
{ 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"; }
|
2024-12-01 01:44:12 -05:00
|
|
|
{ command = "telegram-desktop"; }
|
2024-11-12 18:03:28 -05:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|