2024-08-10 22:32:12 +02:00
|
|
|
|
# vim:ft=swayconfig
|
|
|
|
|
|
2024-08-09 14:47:04 +02:00
|
|
|
|
# gtk themes
|
|
|
|
|
exec_always {
|
|
|
|
|
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
2024-08-10 22:32:12 +02:00
|
|
|
|
gsettings set org.gnome.desktop.interface icon-theme "Papirus-Dark"
|
2024-08-09 14:47:04 +02:00
|
|
|
|
gsettings set org.gnome.desktop.interface cursor-theme "Bibata-Modern-Classic"
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-10 22:32:12 +02:00
|
|
|
|
# daemons, dbus doesn't start them automatically lol
|
|
|
|
|
exec /usr/libexec/xdg-desktop-portal-gtk
|
|
|
|
|
exec /usr/libexec/xdg-desktop-portal-wlr
|
|
|
|
|
|
2024-08-09 14:47:04 +02:00
|
|
|
|
# audio
|
|
|
|
|
exec pipewire
|
|
|
|
|
|
|
|
|
|
# applets
|
|
|
|
|
exec nm-applet
|
|
|
|
|
exec blueman-applet
|
|
|
|
|
|
|
|
|
|
# auto lock + auto sleep
|
|
|
|
|
exec swayidle -w \
|
|
|
|
|
timeout 120 'swaylock -f' \
|
2024-08-10 22:32:12 +02:00
|
|
|
|
timeout 120 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
|
2024-08-09 14:47:04 +02:00
|
|
|
|
before-sleep 'swaylock -f'
|