aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/i3/config2
-rw-r--r--.config/qtile/config.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/.config/i3/config b/.config/i3/config
index 7c002d1..6a5e3ce 100644
--- a/.config/i3/config
+++ b/.config/i3/config
@@ -14,7 +14,7 @@ bindsym $mod+apostrophe exec amixer -q sset Master 5%-
bindsym $mod+p exec amixer -q sset Master toggle
bindsym $mod+m exec scrot -ze 'mv $f ~/screenshots/'
-bindsym $mod+u exec ~/scripts/unmount-usb
+bindsym $mod+u exec ~/.local/bin/unmount_usb.sh
#END
floating_modifier $mod
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"),