aboutsummaryrefslogtreecommitdiff
path: root/old/theme
blob: 7e0107ab9c0fc06c058624ffbccc72683fd5a847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

# This script is a shortcut to change between a dark and a light theme
# for my terminal emulator (st).

# Usage: theme (dark|light)

src=$HOME/.local/src

case "$@" in
	dark)
		cd $src/st-darkbg
		;;
	light)
		cd $src/st-lightbg
		;;
	*)
		echo "usage: theme (dark|light)"
		exit 1
		;;
esac

make && sudo make install

Generated with cgit - Back to sebastiano.tronto.net