Create bin/ directory with all scripts to install
This commit is contained in:
parent
c2e90e1e00
commit
c4653b40e1
3 changed files with 4 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,5 +2,6 @@ nvim/plug
|
|||
nvim/**/.*
|
||||
**/secrets.sh
|
||||
i3/background*
|
||||
!bin/
|
||||
|
||||
.mypy_cache/
|
||||
|
|
|
@ -4,7 +4,7 @@ GUI=true
|
|||
[[ $1 == --no-x ]] && GUI=false
|
||||
|
||||
DOT_CONF="${XDG_CONFIG_HOME:-$HOME/.config}"
|
||||
DOT_CONF="${XDG_CONFIG_HOME:-$HOME/.config}"
|
||||
DOT_LOCAL_BIN="$HOME/.local/bin"
|
||||
mkdir -p "$DOT_CONF"
|
||||
|
||||
# stuff that we only want when we're setting up a graphical environment
|
||||
|
@ -12,7 +12,7 @@ mkdir -p "$DOT_CONF"
|
|||
ln -s $PWD/xinitrc $HOME/.xinitrc
|
||||
ln -s $PWD/Xresources $HOME/.Xresources
|
||||
|
||||
mkdir -p "$HOME/.local/bin"
|
||||
mkdir -p "$DOT_LOCAL_BIN"
|
||||
|
||||
mkdir -p $DOT_CONF/{dunst,compton,xfce4,foot}
|
||||
ln -s $PWD/i3/ $DOT_CONF
|
||||
|
@ -25,7 +25,7 @@ mkdir -p "$DOT_CONF"
|
|||
ln -s $PWD/redshift.ini $DOT_CONF/redshift.conf
|
||||
ln -s $PWD/xfce4-terminal $DOT_CONF/xfce4/terminal
|
||||
ln -s $PWD/foot.ini $DOT_CONF/foot/foot.ini
|
||||
ln -s $PWD/dpass $HOME/.local/bin/dpass
|
||||
ln -s -t $DOT_LOCAL_BIN $PWD/bin/*
|
||||
|
||||
sudo mkdir -p /usr/share/fonts/local
|
||||
sudo ln -s $PWD/yambar/bar-material-supplements.ttf /usr/share/fonts/local/
|
||||
|
|
Loading…
Reference in a new issue