Skip to content

Commit 6ecd792

Browse files
committed
fix: icons for volume notifications
1 parent 6919559 commit 6ecd792

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

files/scripts/29-finalize-de-tweaks.sh

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
set -ouex pipefail
3+
set -oeux pipefail
44

55
# Battery panel icon tweaks (stay on full icon from 100% to 90%)
66
cd /usr/share/icons/Chicago95
@@ -14,5 +14,13 @@ for f in $(find . -name "battery-level-90*"); do
1414
fi
1515
done
1616

17+
# TODO: remove when https://github.com/grassmunk/Chicago95/pull/362 is merged
18+
# Fix missing icons in xfce4-notifyd for volume
19+
cd /usr/share/icons/Chicago95/status/32
20+
for icon in audio-volume-*; do
21+
cd ../symbolic
22+
ln -s ../32/$icon $icon
23+
done
24+
1725
update-mime-database /usr/share/mime
1826
gdk-pixbuf-query-loaders-64 --update-cache

files/system/usr/share/ublue-os/just/60-apps.just

+10
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,13 @@
1111
configure-palemoon:
1212
echo "Opening Pale Moon to install Netscape theme"
1313
palemoon "https://addons.palemoon.org/addon/moonscape/" >/dev/null 2>&1 &
14+
15+
[group('Apps')]
16+
configure-audacious:
17+
mkdir -p ~/.var/app/org.atheme.audacious/data/audacious/Skins
18+
cd ~/.var/app/org.atheme.audacious/data/audacious/Skins
19+
mkdir Winamp
20+
cd Winamp
21+
wget https://archive.org/download/winampskin_Winamp_Classic_CM/Winamp_Classic_CM.wsz
22+
unzip *.wsz && rm *.wsz
23+

recipes/recipe.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ modules:
2020
- type: rpm-ostree
2121
install:
2222
- btop
23+
- catfish
2324
- fastfetch
2425
- libcanberra
2526
- lightdm-gtk-greeter-settings
2627
- mate-disk-usage-analyzer
2728
- mate-system-monitor
2829
- menulibre
2930
- neovim
31+
- orage
3032
- python3-cairosvg
3133
- plymouth-plugin-script
3234
- qt5ct
@@ -49,7 +51,7 @@ modules:
4951
- 03-ublue.sh
5052
- 10-install-appimages.sh
5153
- 20-chicago95.sh
52-
- 21-fix-icon-sizes.py
54+
#- 21-fix-icon-sizes.py
5355
- 29-finalize-de-tweaks.sh
5456

5557
- type: default-flatpaks

0 commit comments

Comments
 (0)