diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-10-19 00:09:56 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-10-19 00:09:56 -0700 |
commit | 129bf54ad38c4560c4154a9794dc1949a23aa667 (patch) | |
tree | 68834b4cdf4b19de69e70fccc397d5bb6a8191d8 | |
parent | c9eb76bfb5020191e08233f4a420faedc4197f5f (diff) |
launchers: ditch the unnecessary absolute paths
It doesn't look like the /bin/sh -c style invocation is going
away anytime soon, so let's just rely on the PATH searching and
this becomes more tolerant of stuff being in /usr vs. /usr/local
etc. (preparatory commit for rmd integration)
-rw-r--r-- | src/launchers.def | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/launchers.def b/src/launchers.def index ea06683..7fb90c4 100644 --- a/src/launchers.def +++ b/src/launchers.def @@ -1,8 +1,8 @@ /* it's up to you to ensure you don't conflict with the global VWM keys */ -/* keysym, label, cmd */ -launcher( XK_x, "xterm", "/usr/bin/xterm") -launcher( XK_b, "firefox", "/usr/bin/firefox -ProfileManager -no-remote") -launcher( XK_g, "gimp", "/usr/bin/gimp") -launcher( XK_period, "lock", "/usr/bin/xlock") -launcher( XK_minus, "dpms off", "/usr/bin/xset -dpms s off") -launcher( XK_equal, "dpms on", "/usr/bin/xset +dpms s on") +/* keysym, label, cmd */ +launcher( XK_x, "xterm", "xterm") +launcher( XK_b, "firefox", "firefox -ProfileManager -no-remote") +launcher( XK_g, "gimp", "gimp") +launcher( XK_period, "lock", "xlock") +launcher( XK_minus, "dpms off", "xset -dpms s off") +launcher( XK_equal, "dpms on", "xset +dpms s on") |