Config sway background, add notification daemon to packages, setup sway startup

This commit is contained in:
Curt Spark 2024-03-16 05:14:45 +00:00
parent 2caa91c31c
commit b4ec216bdc
3 changed files with 16 additions and 7 deletions

View File

@ -44,6 +44,7 @@
wdisplays # Manage wayland displays wdisplays # Manage wayland displays
wlsunset # Day/night gamma adjustment/filter for wayland wlsunset # Day/night gamma adjustment/filter for wayland
sway-contrib.grimshot # Screenshot tool for wayland sway-contrib.grimshot # Screenshot tool for wayland
mako # Notification Daemon
lxqt.pcmanfm-qt # File Manager lxqt.pcmanfm-qt # File Manager
lxqt.lxqt-archiver # Archiver lxqt.lxqt-archiver # Archiver

View File

@ -46,11 +46,19 @@
TERM = "foot"; TERM = "foot";
}; };
programs.bash.shellAliases = { programs.bash = {
sudo = "sudo "; shellAliases = {
doas = "doas "; sudo = "sudo ";
edit = "$EDITOR"; doas = "doas ";
nixos-rebuild-system-flake = "sudo nixos-rebuild switch --flake /etc/nixos#laptop"; edit = "$EDITOR";
nixos-rebuild-system-flake = "sudo nixos-rebuild switch --flake /etc/nixos#laptop";
};
# Start sway after login if on TTY1 (Default Linux TTY upon boot/login)
profileExtra = ''
if [[ $(tty) == "/dev/tty1" ]]; then
sway
fi
'';
}; };
} }

View File

@ -24,8 +24,8 @@ include /etc/sway/config-vars.d/*
### Output configuration ### Output configuration
# #
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) # Wallpaper (Default wallpaper are available in /usr/share/backgrounds/sway/)
output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill output * bg ~/Pictures/Wallpapers/gruvbox_light_linux.png fill
# #
# Example configuration: # Example configuration:
# #