forked from alrra/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathui_and_ux.sh
executable file
·34 lines (24 loc) · 1.26 KB
/
ui_and_ux.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
cd "$(dirname "${BASH_SOURCE[0]}")" \
&& . "../../utils.sh"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print_in_purple "\n UI & UX\n\n"
execute "gsettings set com.canonical.indicator.bluetooth visible false" \
"Hide bluetooth icon from the menu bar"
execute "gsettings set com.canonical.indicator.sound visible false" \
"Hide volume icon from the menu bar"
execute "gsettings set com.canonical.indicator.power icon-policy 'charge' && \
gsettings set com.canonical.indicator.power show-time false" \
"Hide battery icon from the menu bar when the battery is not in use"
execute "gsettings set com.canonical.indicator.datetime custom-time-format '%l:%M %p' && \
gsettings set com.canonical.indicator.datetime time-format 'custom'" \
"Use custom date format in the menu bar"
execute "gsettings set org.gnome.desktop.background picture-options 'stretched'" \
"Set desktop background image options"
execute "gsettings set org.gnome.libgnomekbd.keyboard layouts \"[ 'us', 'ro' ]\"" \
"Set keyboard languages"
execute "gsettings set com.canonical.Unity.Launcher favorites \"[
'ubiquity-gtkui.desktop',
'nautilus-home.desktop'
]\"" \
"Set Launcher favorites"