blob: 20e755c3883762503656a04c947a9ba9886652ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
conf()
{
local pth="$1"
shift
xfconf-query -c "${pth%%/*}" -p "/${pth#*/}" -s "$@"
}
conf xsettings/Gtk/DialogsUseHeader false
conf xsettings/Gtk/MenuImages true
conf xsettings/Gtk/MenuImages true
conf xsettings/Gtk/ButtonImages true
conf xsettings/Gtk/DecorationLayout ':minimize,maximize,close'
conf xsettings/Net/ThemeName Materia-dark-compact
conf xsettings/Net/IconThemeName Papirus-Dark
conf xsettings/Net/EnableEventSounds true
conf xsettings/Net/EnableInputFeedbackSounds true
conf xfwm4/general/theme Materia-dark
conf xfwm4/general/button_layout 'O|HMC'
|