You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.1 KiB
Bash
23 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
# Configure Desktop environment settings for Various DE's.
|
|
|
|
if (/usr/bin/which gconftool-2); then
|
|
echo "[*] gnome-core installed, applying gconf settings"
|
|
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/use_theme_colors" --type bool false
|
|
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/background_color" --type string "#000000000000"
|
|
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/foreground_color" --type string "#FFFFFFFFFFFF"
|
|
gconftool-2 --type bool --set "/apps/gnome-terminal/profiles/Default/scrollback_unlimited" true
|
|
gconftool-2 --type string -s "/apps/gnome-terminal/profiles/Default/background_type" transparent
|
|
gconftool-2 --type float -s "/apps/gnome-terminal/profiles/Default/background_darkness" 0.65
|
|
gconftool -s --type bool "/apps/gnome-terminal/global/confirm_window_close" false
|
|
gsettings set org.gnome.desktop.background show-desktop-icons true
|
|
gsettings set org.gnome.desktop.wm.preferences theme AgingGorilla
|
|
dbus-launch gsettings set org.gnome.desktop.session session-name 'gnome-fallback'
|
|
else
|
|
echo "[*] gnome-core not installed."
|
|
fi
|
|
|
|
|
|
|