Minor correction.

This commit is contained in:
Derek Taylor 2019-11-17 13:23:16 -06:00
parent 1612480a33
commit 2689e25a93
1 changed files with 19 additions and 15 deletions

View File

@ -18,6 +18,7 @@ i3
polybar polybar
qtile qtile
st st
stumpwm
sxhkd sxhkd
vim vim
xmobar xmobar
@ -32,49 +33,52 @@ case "$choice" in
echo "Program terminated." && exit 1 echo "Program terminated." && exit 1
;; ;;
awesome) awesome)
choice="HOME/.config/awesome/rc.lua" choice="$HOME/.config/awesome/rc.lua"
;; ;;
bash) bash)
choice="HOME/.bashrc" choice="$HOME/.bashrc"
;; ;;
bspwm) bspwm)
choice="HOME/.config/bspwm/bspwmrc" choice="$HOME/.config/bspwm/bspwmrc"
;; ;;
dwm) dwm)
choice="HOME/dwm/config.h" choice="$HOME/dwm/config.h"
;; ;;
emacs) emacs)
choice="HOME/.emacs.d/init.el" choice="$HOME/.emacs.d/init.el"
;; ;;
herbstluftwm) herbstluftwm)
choice="HOME/.config/herbstluftwm/autostart" choice="$HOME/.config/herbstluftwm/autostart"
;; ;;
i3) i3)
choice="HOME/.i3/config" choice="$HOME/.i3/config"
;; ;;
polybar) polybar)
choice="HOME/.config/polybar/config" choice="$HOME/.config/polybar/config"
;; ;;
qtile) qtile)
choice="HOME/.config/qtile/config.py" choice="$HOME/.config/qtile/config.py"
;; ;;
st) st)
choice="HOME/st/config.h" choice="$HOME/st/config.h"
;;
stumpwm)
choice="$HOME/.config/stumpwm/config"
;; ;;
sxhkd) sxhkd)
choice="HOME/.config/sxhkd/sxhkdrc" choice="$HOME/.config/sxhkd/sxhkdrc"
;; ;;
vim) vim)
choice="HOME/.vimrc" choice="$HOME/.vimrc"
;; ;;
xmobar) xmobar)
choice="HOME/.config/xmobar/xmobarrc2" choice="$HOME/.config/xmobar/xmobarrc2"
;; ;;
xmonad) xmonad)
choice="HOME/.xmonad/xmonad.hs" choice="$HOME/.xmonad/xmonad.hs"
;; ;;
zsh) zsh)
choice="HOME/.zshrc" choice="$HOME/.zshrc"
;; ;;
*) *)
exit 1 exit 1