summaryrefslogtreecommitdiff
path: root/scripts/old/theme
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xscripts/old/theme23
1 files changed, 0 insertions, 23 deletions
diff --git a/scripts/old/theme b/scripts/old/theme
deleted file mode 100755
index 7e0107a..0000000
--- a/scripts/old/theme
+++ /dev/null
@@ -1,23 +0,0 @@
1#!/bin/sh
2
3# This script is a shortcut to change between a dark and a light theme
4# for my terminal emulator (st).
5
6# Usage: theme (dark|light)
7
8src=$HOME/.local/src
9
10case "$@" in
11 dark)
12 cd $src/st-darkbg
13 ;;
14 light)
15 cd $src/st-lightbg
16 ;;
17 *)
18 echo "usage: theme (dark|light)"
19 exit 1
20 ;;
21esac
22
23make && sudo make install

Generated with cgit - Back to sebastiano.tronto.net