all repos

dotfiles @ e3c86138efc52aa469cd50d7908be29e538a25f3

my dotfiles

script/dmenu/dmenu-config-edit.sh (view raw)

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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/sh
declare options=("i3
qtile
berry
openbox
polybar
picom
dunst
qutebrowser
taskwarrior
tmux
alacritty
kitty
neovim
ranger
sh")

choice=$(echo -e "${options[@]}" | dmenu -p 'Edit config file' $@)
case "$choice" in
	dunst) choice="$HOME/.config/dunst/dunstrc" ;;
    neovim) choice="$HOME/.config/nvim/init.vim" ;;
    taskwarior) choice="$HOME/.taskrc" ;;
	picom) choice="$HOME/.config/picom.conf" ;;
    kitty) choice="$HOME/.config/kitty/kitty.conf" ;;
    alacritty) choice="$hoME/.config/alacritty.yml" ;;
	polybar) choice="$HOME/.config/polybar/config" ;;
    tmux) choice="$HOME/.tmux.conf" ;;
	i3) choice="$HOME/.config/i3/config" ;;
    qtile) 
        opt=$(echo -e "config.py\nautostart.sh"|dmenu -p 'Qtile' $@)
        case "$opt" in
            "config.py") choice="$HOME/.config/qtile/config.py" ;;
            "autostart.sh") choice="$HOME/.config/qtile/autostart.sh" ;;
        esac
    ;;
    berry)
        declare opt=$(echo -e "berry\npolybar\nsxhkd"|dmenu -p 'Berry' $@)
        case "$opt" in
            "berry") choice="$HOME/.config/berry/autostart" ;;
            "polybar") choice="$HOME/.config/berry/polybar/polybar" ;;
            "sxhkd") choice="$HOME/.config/berry/sxhkdrc" ;;
        esac
    ;;
    openbox)
        opt=$(echo -e "openbox\nautostart\nmenu\nreload"|dmenu -p 'OpenBox' $@)
        case "$opt" in
            "openbox") choice="$HOME/.config/openbox/rc.xml" ;;
            "autostart") choice="$HOME/.config/openbox/autostart" ;;
            "menu") choice="$HOME/.config/openbox/menu.xml" ;;
            "reload") openbox --reconfigure && pkill kitty ;;
        esac
    ;;
    qutebrowser)
        why=$(echo -e "config.py\nquickmarks"|dmenu -p 'Qutebrowser' $@)
        case "$why" in
            "config.py") choice="$HOME/.config/qutebrowser/config.py" ;;
            "quickmarks") choice="$HOME/.config/qutebrowser/quickmarks" ;;
        esac
    ;;
    ranger)
        why=$(echo -e "rc.conf\nrifle.conf"|dmenu -p 'Ranger' $@)
        case "$why" in
            "rc.conf") choice="$HOME/.config/ranger/rc.conf" ;;
            "rifle.conf") choice="$HOME/.config/ranger/rifle.conf" ;;
        esac
    ;;
    sh)
        why=$(echo -e "zsh\nfish\nbash"|dmenu -p "Shell" $@)
        case "$why" in
            zsh) choice="$HOME/.zshrc" ;;
            fish) choice="$HOME/.config/fish/config.fish" ;;
            bash) choice="$hoME/.bashrc"
        esac
    ;;
	*) exit 1 ;;
esac
alacritty -e nvim "$choice"