diff options
author | Mateja Marić <mail@matejamaric.com> | 2021-02-07 12:49:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-07 12:49:43 +0100 |
commit | 3ed060173b0a3110aac0a5f53a4cb534531b3c28 (patch) | |
tree | ded04f4fe15f8490b8c0e48b9684b7d2e990bfe5 /.config/qtile | |
parent | 5d0c80a46c76dd1712f274ff6ddce05526253983 (diff) | |
parent | 3621cc09ea17c771d9c99d684d1e9bafc69fb222 (diff) | |
download | dotfiles-3ed060173b0a3110aac0a5f53a4cb534531b3c28.tar.gz dotfiles-3ed060173b0a3110aac0a5f53a4cb534531b3c28.zip |
Merge pull request #4 from MatejaMaric/fix-scripts
Fix issue #2
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 501d807..aa3abcc 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -28,13 +28,13 @@ keys = [ desc="Toggle mute"), # Programs... - Key([mod], "e", lazy.spawn("bash -c ~/stuff/scripts/unmount-usb"), + Key([mod], "e", lazy.spawn("bash -c ~/.local/bin/unmount_usb.sh"), desc="Eject USB"), Key([mod, "control"], "p", lazy.spawn("scrot -ze 'mv $f ~/stuff/pictures/screenshots/'"), desc="Take a screenshot"), Key([mod], "x", lazy.spawn("mpc toggle"), desc="Pause/Resume MPD playback"), - Key([mod, "shift"], "x", lazy.spawn("bash -c ~/stuff/scripts/mpd_show"), + Key([mod, "shift"], "x", lazy.spawn("bash -c ~/.local/bin/mpd_show.sh"), desc="Display song."), Key([mod], "z", lazy.spawn("mpc next"), desc="MPD next song"), |