-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·48 lines (44 loc) · 961 Bytes
/
setup.sh
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
43
44
45
46
47
48
#!/usr/bin/env sh
DIR_HOME=~/.local/bin
mkdir -p "$DIR_HOME"
link_home() {
script=$(echo "$1" | cut -d. -f1)
ln -frs "$1" "$DIR_HOME/$script" && echo Installed: "$script"
}
DIR_USR=/usr/local/bin
mkdir -p "$DIR_USR"
link_usr() {
script=$(echo "$1" | cut -d. -f1)
sudo ln -frs "$1" "$DIR_USR/$script" && echo Installed: "$script"
}
link_home bak.sh
link_home bstatus.sh
link_home cpm.sh
link_home efistub.sh
link_home execute.sh
link_home ffind.sh
link_home format.sh
link_home ggrep.sh
link_home iwltm.sh
link_home launch.sh
link_home lint.sh
link_home ls-dirs.sh
link_home ls-files.sh
link_home ls-ignored.sh
link_home memlog.sh
link_home mmrdf.sh
link_home open.sh
link_home pkg.sh
link_home preview.sh
link_home root.sh
link_home rrclone.sh
link_home sfzf.sh
link_home spawn.sh
link_home susu.sh
link_home update.sh
link_home volume.sh
link_home wal.sh
link_home xclientlist.sh
link_usr brightness.sh
link_usr lock.sh
link_usr monitor.sh