From b33438b8243801b8935898cf0b47c3e43e79b3f7 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Thu, 10 Oct 2019 15:42:25 -0500 Subject: [PATCH] Minor edits. --- .dmenu/dmenu-edit-configs.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.dmenu/dmenu-edit-configs.sh b/.dmenu/dmenu-edit-configs.sh index 6671773..79f214d 100755 --- a/.dmenu/dmenu-edit-configs.sh +++ b/.dmenu/dmenu-edit-configs.sh @@ -19,6 +19,8 @@ declare -nc options=(" awesome qtile st sxhkd + vim + xmobar xmonad zsh quit ") @@ -61,6 +63,12 @@ choice=$(echo -e "${options[@]}" | dmenu -i -p 'Edit a config file: ') if [ "$choice" == ' sxhkd ' ]; then exec emacsclient -nc '~/.config/sxhkd/sxhkdrc' fi + if [ "$choice" == ' vim ' ]; then + exec emacsclient -nc '~/.vimrc' + fi + if [ "$choice" == ' xmobar ' ]; then + exec emacsclient -nc '~/.config/xmobar/xmobarrc2' + fi if [ "$choice" == ' xmonad ' ]; then exec emacsclient -nc '~/.xmonad/xmonad.hs' fi