blob: 3b063d53a6d4c9c2b5adb50966541752b8688ba5 (
plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#!/bin/bash
# var setup
RC_DIR=$HOME'/src/rc'
# git setup
git config --global user.name "Tom Barrett"
git config --global user.email "tom@tombarrett.xyz"
# bin directory
mkdir $HOME/bin
# dwm setup
DWM_DIR=$HOME'/src/dwm'
git clone https://git.suckless.org/dwm $DWM_DIR
patch $DWM_DIR'/dwm.c' $RC_DIR'/dwm/vanitygaps.diff'
patch $DWM_DIR'/dwm.c' $RC_DIR'/dwm/custom.diff'
cp $RC_DIR'/dwm/config.h' $DWM_DIR
make -C $DWM_DIR
ln -s $DWM_DIR/dwmstatus $HOME/bin
# dwmstatus setup
DWMSTS_DIR=$HOME'/src/dwmstatus'
git clone https://git.suckless.org/dwmstatus $DWMSTS_DIR
patch $DWMSTS_DIR'/dwmstatus.c' $RC_DIR'/dwmstatus/custom.diff'
make -C $DWMSTS_DIR
ln -s $DWMSTS_DIR/dwmstatus $HOME/bin
# st setup
ST_DIR=$HOME'/src/st'
git clone https://git.suckless.org/st $ST_DIR
cp $RC_DIR'/st/config.h' $ST_DIR
make -C $ST_DIR
ln -s $ST_DIR/st $HOME/bin
# fish setup
cp -r $RC_DIR'/.config/fish' $HOME'/.config/'
# lxc setup
cp -r $RC_DIR'/.config/lxc' $HOME'/.config'
chmod a+rw $HOME'/.local/' $HOME'/.local/share'
# freedesktop setup
cp $RC_DIR'/.config/user-dirs.dirs' $HOME'/.config/'
# xorg setup
cp $RC_DIR'/.xinitrc' $HOME
# autostart script
cp $RC_DIR'/.autostart' $HOME
# extras
#vboxmanage setproperty machinefolder /home/tom/vms
|