Config sway background, add notification daemon to packages, setup sway startup
This commit is contained in:
parent
2caa91c31c
commit
b4ec216bdc
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -46,11 +46,19 @@
|
||||||
TERM = "foot";
|
TERM = "foot";
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.bash.shellAliases = {
|
programs.bash = {
|
||||||
|
shellAliases = {
|
||||||
sudo = "sudo ";
|
sudo = "sudo ";
|
||||||
doas = "doas ";
|
doas = "doas ";
|
||||||
edit = "$EDITOR";
|
edit = "$EDITOR";
|
||||||
nixos-rebuild-system-flake = "sudo nixos-rebuild switch --flake /etc/nixos#laptop";
|
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
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue