Cinnamon dconf settings update. (#2944)
* Cinnamon dconf settings update. * fixed typo in the file
This commit is contained in:
parent
1880df66b4
commit
e232e93af0
@ -5,8 +5,7 @@ if [ -f /etc/lightdm/slick-greeter.conf ]; then sed '/^armbian03-Dre0x-Minum-dar
|
||||
# Disable Pulseaudio timer scheduling which does not work with sndhdmi driver
|
||||
if [ -f /etc/pulse/default.pa ]; then sed "s/load-module module-udev-detect$/& tsched=0/g" -i /etc/pulse/default.pa; fi
|
||||
|
||||
# set wallpapper to armbian
|
||||
|
||||
##dconf desktop settings
|
||||
keys=/etc/dconf/db/local.d/00-desktop
|
||||
profile=/etc/dconf/profile/user
|
||||
|
||||
@ -14,32 +13,115 @@ install -Dv /dev/null $keys
|
||||
install -Dv /dev/null $profile
|
||||
|
||||
# gather dconf settings
|
||||
# org/cinnamon/ > cinnamon_desktop_backup
|
||||
# deconf dump org/nemo/ > nemo_backup
|
||||
# deconf dump org/cinnamon/ > cinnamon_desktop_backup
|
||||
|
||||
echo "[org/cinnamon/desktop/background]
|
||||
echo "
|
||||
[org/nemo/list-view]
|
||||
default-visible-columns=['name', 'size', 'type', 'date_modified', 'owner', 'per>
|
||||
|
||||
[org/nemo/preferences]
|
||||
quick-renames-with-pause-in-between=true
|
||||
show-advanced-permissions=true
|
||||
show-compact-view-icon-toolbar=false
|
||||
show-full-path-titles=true
|
||||
show-hidden-files=true
|
||||
show-home-icon-toolbar=true
|
||||
show-icon-view-icon-toolbar=false
|
||||
show-image-thumbnails='never'
|
||||
show-list-view-icon-toolbar=false
|
||||
show-new-folder-icon-toolbar=true
|
||||
show-open-in-terminal-toolbar=true
|
||||
|
||||
[org/nemo/window-state]
|
||||
geometry='800x550+550+244'
|
||||
maximized=false
|
||||
sidebar-bookmark-breakpoint=5
|
||||
|
||||
[org/cinnamon]
|
||||
desklet-decorations=0
|
||||
desktop-effects=false
|
||||
enabled-applets=['panel1:left:0:menu@cinnamon.org:0', 'panel1:left:1:show-desktop@cinnamon.org:1', 'panel1:left:2:grouped-window-list@cinnamon.org:2', 'panel1:right:0:systray@>
|
||||
enabled-desklets=@as []
|
||||
next-applet-id=14
|
||||
panels-height=['1:33']
|
||||
panels-resizable=['1:true']
|
||||
startup-animation=false
|
||||
|
||||
[org/cinnamon/desktop/a11y/applications]
|
||||
screen-keyboard-enabled=false
|
||||
screen-reader-enabled=false
|
||||
|
||||
[org/cinnamon/desktop/a11y/mouse]
|
||||
dwell-click-enabled=false
|
||||
dwell-threshold=10
|
||||
dwell-time=1.2
|
||||
secondary-click-enabled=false
|
||||
secondary-click-time=1.2
|
||||
|
||||
[org/cinnamon/desktop/background]
|
||||
picture-options='zoom'
|
||||
picture-uri='file:///usr/share/backgrounds/armbian/armbian_4k_gray_resultado.jpg'
|
||||
primary-color='#456789'
|
||||
secondary-color='#FFFFFF'
|
||||
|
||||
[org/cinnamon/desktop/interface]
|
||||
clock-show-date=true
|
||||
cursor-theme='whiteglass'
|
||||
gtk-theme='Numix'
|
||||
icon-theme='Numix'
|
||||
scaling-factor=uint32 0
|
||||
toolkit-accessibility=false
|
||||
|
||||
[desktop/default-applications/terminal]
|
||||
exec='/usr/bin/terminator'
|
||||
|
||||
[org/cinnamon/desktop/media-handling]
|
||||
autorun-never=false
|
||||
|
||||
[org/cinnamon/desktop/screensaver]
|
||||
picture-options='zoom'
|
||||
picture-uri='file:///usr/share/backgrounds/armbian/armbian_4k_gray_guass_resultado.jpg'
|
||||
primary-color='#456789'
|
||||
secondary-color='#FFFFFF'
|
||||
|
||||
[org/cinnamon/desktop/interface]
|
||||
cursor-theme='whiteglass'
|
||||
gtk-theme='Numix'
|
||||
icon-theme='Numix'
|
||||
scaling-factor=uint32 0
|
||||
|
||||
[org/cinnamon/desktop/wm/preferences]
|
||||
num-workspaces=2
|
||||
theme='Numix'
|
||||
|
||||
[org/cinnamon/settings-daemon/peripherals/touchpad]
|
||||
disable-while-typing=true
|
||||
horiz-scroll-enabled=false
|
||||
motion-acceleration=5.4820717131474108
|
||||
motion-threshold=2
|
||||
natural-scroll=false
|
||||
scroll-method='two-finger-scrolling'
|
||||
three-finger-click=2
|
||||
two-finger-click=3
|
||||
|
||||
[org/cinnamon/settings-daemon/plugins/power]
|
||||
button-power='interactive'
|
||||
critical-battery-action='hibernate'
|
||||
idle-brightness=30
|
||||
idle-dim-time=90
|
||||
lid-close-ac-action='nothing'
|
||||
lid-close-battery-action='nothing'
|
||||
sleep-display-ac=600
|
||||
sleep-display-battery=600
|
||||
sleep-inactive-ac-timeout=0
|
||||
sleep-inactive-battery-timeout=0
|
||||
|
||||
[org/cinnamon/settings-daemon/plugins/xsettings]
|
||||
buttons-have-icons=true
|
||||
menus-have-icons=true" >> $keys
|
||||
menus-have-icons=true
|
||||
|
||||
[org/cinnamon/sounds]
|
||||
login-enabled=false
|
||||
logout-enabled=false
|
||||
plug-enabled=false
|
||||
switch-enabled=false
|
||||
tile-enabled=false
|
||||
unplug-enabled=false" >> $keys
|
||||
|
||||
echo "user-db:user
|
||||
system-db:local" >> $profile
|
||||
@ -49,4 +131,4 @@ dconf update
|
||||
#re-compile schemas
|
||||
if [ -d /usr/share/glib-2.0/schemas ]; then
|
||||
glib-compile-schemas /usr/share/glib-2.0/schemas
|
||||
fi
|
||||
fi
|
||||
|
||||
Loading…
Reference in New Issue
Block a user