]> git.armaanb.net Git - charsel.git/blob - INSTALL.sh
I think that this is a fully working thing now
[charsel.git] / INSTALL.sh
1 #!/bin/env sh
2
3 if [ `whoami` == root ]; then
4   mkdir -p /usr/share/charsel
5   cp charfiles/* /usr/share/charsel/
6   chmod +x charsel
7   cp charsel /usr/bin/
8   exit
9 else
10   mkdir -p ~/.local/share/charsel
11   cp charfiles/* ~/.local/share/charsel/
12   chmod +x charsel
13   cp charsel ~/.local/bin/
14   exit
15 fi