diff options
author | 2023-01-04 23:43:36 +0600 | |
---|---|---|
committer | 2023-01-04 23:43:36 +0600 | |
commit | 48b073941e0fc537ab4a35830b95c1ec07b8cddb (patch) | |
tree | 9b6dab06d8d80073df5068f3d733ab00e9335e28 /patch/xfconf | |
parent | 4b45d6c391b93e378ff0fdd9133bbf3940caf65c (diff) | |
download | patches-48b073941e0fc537ab4a35830b95c1ec07b8cddb.tar.gz patches-48b073941e0fc537ab4a35830b95c1ec07b8cddb.zip |
patch: Apply xfce settings automatically
Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
Diffstat (limited to 'patch/xfconf')
-rwxr-xr-x | patch/xfconf | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/patch/xfconf b/patch/xfconf new file mode 100755 index 0000000..20e755c --- /dev/null +++ b/patch/xfconf @@ -0,0 +1,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' |