summaryrefslogtreecommitdiff
path: root/scripts/set_theme.sh
blob: b2517ae7c7ae4fd1889a45757f7d464cfd892c2a (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

echo "Choose a theme:" && ls ./theme/
read theme

cp ./theme/$theme/$theme.png $HOME/.config/wallpaper.png
cp ./theme/$theme/colors.h ./

echo "Done"