setup audacious theme
BIN
audacious/steppenwolf/Avs.bmp
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
audacious/steppenwolf/Balance.bmp
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
audacious/steppenwolf/Cbuttons.bmp
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
audacious/steppenwolf/Eq_ex.bmp
Normal file
After Width: | Height: | Size: 66 KiB |
BIN
audacious/steppenwolf/Eqmain.bmp
Normal file
After Width: | Height: | Size: 255 KiB |
BIN
audacious/steppenwolf/Gen.bmp
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
audacious/steppenwolf/Genex.bmp
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
audacious/steppenwolf/Main.bmp
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
audacious/steppenwolf/Mb.bmp
Normal file
After Width: | Height: | Size: 85 KiB |
BIN
audacious/steppenwolf/Monoster.bmp
Normal file
After Width: | Height: | Size: 4.3 KiB |
9
audacious/steppenwolf/PLEDIT.TXT
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Text]
|
||||
Normal=#c9c9c9
|
||||
Current=#ffffff
|
||||
NormalBG=#000000
|
||||
SelectedBG=#1f9b92
|
||||
MBbg=#000000
|
||||
MBfg=#c9c9c9
|
||||
Font=Monospace
|
||||
|
BIN
audacious/steppenwolf/Playpaus.bmp
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
audacious/steppenwolf/Pledit.bmp
Normal file
After Width: | Height: | Size: 153 KiB |
BIN
audacious/steppenwolf/Posbar.bmp
Normal file
After Width: | Height: | Size: 9.2 KiB |
10
audacious/steppenwolf/README.TXT
Normal file
|
@ -0,0 +1,10 @@
|
|||
CrystalNeon
|
||||
|
||||
Skin by J R Johnson
|
||||
|
||||
|
||||
Classic (2x) skin.
|
||||
User friendly design.
|
||||
Clear (easy to see) details.
|
||||
Graphic labeled (language- independent) controls and modules.
|
||||
Works with a wide variety of desktop wall papers, bright and dark.
|
BIN
audacious/steppenwolf/Shufrep.bmp
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
audacious/steppenwolf/Text.bmp
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
audacious/steppenwolf/Titlebar.bmp
Normal file
After Width: | Height: | Size: 88 KiB |
24
audacious/steppenwolf/VISCOLOR.TXT
Normal file
|
@ -0,0 +1,24 @@
|
|||
0,0,0, // visualization window background color = 0 = black
|
||||
0,0,0, // visualization window dots = color 1 = grey
|
||||
31,155,146, // color 2 = top of spec
|
||||
31,155,146, // 3 - highest top bar
|
||||
31,155,146, // 4
|
||||
31,155,146, // 5
|
||||
31,155,146, // 6
|
||||
31,155,146, // 7
|
||||
31,155,146, // 8
|
||||
31,155,146, // 9
|
||||
31,155,146, // 10
|
||||
31,155,146, // 11
|
||||
31,155,146, // 12
|
||||
31,155,146, // 13
|
||||
31,155,146, // 14
|
||||
31,155,146, // 15 - lowest bottom bar
|
||||
31,155,146, // 16
|
||||
31,155,146, // 17 = bottom of spec
|
||||
31,155,146, // 18 = osc 1
|
||||
31,155,146, // 19 = osc 2
|
||||
31,155,146, // 20 = osc 3
|
||||
31,155,146, // 21 = osc 4
|
||||
31,155,146, // 22 = osc 5
|
||||
212,87,10, // 23 = analyzer peak dots
|
BIN
audacious/steppenwolf/Video.bmp
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
audacious/steppenwolf/Volume.bmp
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
audacious/steppenwolf/nums_ex.bmp
Normal file
After Width: | Height: | Size: 4.2 KiB |
10
install.sh
|
@ -4,12 +4,14 @@ case $(whoami) in
|
|||
root)
|
||||
gtkDir=/usr/share/themes/steppenwolf-dark
|
||||
qtDir=/usr/share/color-schemes
|
||||
plankdir=/usr/share/plank/themes
|
||||
plankDir=/usr/share/plank/themes
|
||||
audaciousDir=/usr/share/audacious/Skins
|
||||
;;
|
||||
*)
|
||||
gtkDir=${HOME}/.themes/steppenwolf-dark
|
||||
qtDir=${HOME}/.local/share/color-schemes
|
||||
plankDir=${HOME}/.local/share/plank/themes
|
||||
audaciousDir=${HOME}/.local/share/audacious/Skins
|
||||
;;
|
||||
esac
|
||||
|
||||
|
@ -25,6 +27,10 @@ if [ ! -d ${plankDir} ]; then
|
|||
mkdir -p ${plankDir}
|
||||
fi
|
||||
|
||||
if [ ! -d ${audaciousDir} ]; then
|
||||
mkdir -p ${audaciousDir}
|
||||
fi
|
||||
|
||||
cp -r gtk-* ${gtkDir}
|
||||
cp -r img ${gtkDir}
|
||||
cp index.theme ${gtkDir}
|
||||
|
@ -32,3 +38,5 @@ cp index.theme ${gtkDir}
|
|||
cp qt5/*.colors ${qtDir}
|
||||
|
||||
cp -r plank/* ${plankDir}
|
||||
|
||||
cp -r audacious/steppenwolf ${audaciousDir}
|
||||
|
|