Commit 4f31b8e 1 parent 2b61899 commit 4f31b8e Copy full SHA for 4f31b8e
File tree 2 files changed +12
-8
lines changed
2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,8 @@ cp -r Theme/Chicago95 /usr/share/themes
17
17
# Icons and cursors
18
18
cp -r Icons/* Cursors/* /usr/share/icons/
19
19
20
- # Battery tweaks (stay on full icon from 100%-90%)
21
- for f in $( find . -name " battery-level-90*" ) ; do
22
- target=$( echo ${f/ 90/ 100} | sed ' s/-charging//' )
23
- rm $f
24
- ln -s $target $f
25
- done
26
-
27
20
28
21
# Custom app icons
29
-
30
22
ln -s /usr/share/icons/Chicago95/apps/48/{software,bauh}.png
31
23
ln -s /usr/share/icons/Chicago95/apps/48/stock_keyring.png /usr/share/icons/Chicago95/apps/com.onepassword.OnePassword.png
32
24
Original file line number Diff line number Diff line change 2
2
3
3
set -ouex pipefail
4
4
5
+ # Battery panel icon tweaks (stay on full icon from 100% to 90%)
6
+ cd /usr/share/icons/Chicago95
7
+ for f in $( find . -name " battery-level-90*" ) ; do
8
+ cd /usr/share/icons/Chicago95/$( dirname $f )
9
+ icon_name=$( basename $f )
10
+
11
+ if [[ ! $icon_name == * " charging" * ]]; then
12
+ rm $icon_name
13
+ ln -s ${icon_name/ 90/ 100} $icon_name
14
+ fi
15
+ done
16
+
5
17
update-mime-database /usr/share/mime
6
18
gdk-pixbuf-query-loaders-64 --update-cache
You can’t perform that action at this time.
0 commit comments