aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-02-07 12:32:27 +0100
committerMateja <mail@matejamaric.com>2021-02-07 12:32:27 +0100
commit3621cc09ea17c771d9c99d684d1e9bafc69fb222 (patch)
treeded04f4fe15f8490b8c0e48b9684b7d2e990bfe5
parent4f351301891746161bae7b848cb2cfd518fb62c4 (diff)
downloaddotfiles-3621cc09ea17c771d9c99d684d1e9bafc69fb222.tar.gz
dotfiles-3621cc09ea17c771d9c99d684d1e9bafc69fb222.zip
Update config files.
-rw-r--r--.config/i3/config2
-rw-r--r--.config/qtile/config.py4
-rw-r--r--.xmonad/xmonad.hs2
3 files changed, 4 insertions, 4 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"),
diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs
index cf2f262..e151dd9 100644
--- a/.xmonad/xmonad.hs
+++ b/.xmonad/xmonad.hs
@@ -86,7 +86,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
, ((modm, xK_bracketleft), spawn "amixer -q sset Master 5%+")
, ((modm, xK_apostrophe), spawn "amixer -q sset Master 5%-")
, ((modm, xK_semicolon), spawn "amixer -q sset Master toggle")
- , ((modm, xK_u ), spawn "~/stuff/scripts/unmount-usb")
+ , ((modm, xK_u ), spawn "~/.local/bin/unmount_usb.sh")
, ((modm, xK_s ), spawn "scrot -ze 'mv $f ~/stuff/pictures/screenshots/'")
-- my keybindings stop -----------------------------------------------