mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +01:00
19 lines
461 B
Text
19 lines
461 B
Text
|
# gtk themes
|
|||
|
exec_always {
|
|||
|
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
|||
|
gsettings set org.gnome.desktop.interface cursor-theme "Bibata-Modern-Classic"
|
|||
|
}
|
|||
|
|
|||
|
# audio
|
|||
|
exec pipewire
|
|||
|
|
|||
|
# applets
|
|||
|
exec nm-applet
|
|||
|
exec blueman-applet
|
|||
|
|
|||
|
# auto lock + auto sleep
|
|||
|
exec swayidle -w \
|
|||
|
timeout 120 'swaylock -f' \
|
|||
|
timeout 300 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
|
|||
|
before-sleep 'swaylock -f'
|