all repos — steppenwolf-dark @ main

simple dark GUI theme with turquoise hilights

install.sh (raw)

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
35
36
37
38
39
40
41
42
#!/bin/sh

case $(whoami) in
  root)
    gtkDir=/usr/share/themes/steppenwolf-dark
    qtDir=/usr/share/color-schemes
    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

if [ ! -d ${gtkDir} ]; then
  mkdir -p ${gtkDir}
fi

if [ ! -d ${qtDir} ]; then
  mkdir -p ${qtDir}
fi

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}

cp qt5/*.colors ${qtDir}

cp -r plank/* ${plankDir}

cp -r audacious/steppenwolf ${audaciousDir}