diff options
Diffstat (limited to '.config/wmii/config.sh')
-rw-r--r-- | .config/wmii/config.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/wmii/config.sh b/.config/wmii/config.sh index 1dac0ad..b87ae5c 100644 --- a/.config/wmii/config.sh +++ b/.config/wmii/config.sh @@ -219,9 +219,9 @@ Key() { $MODKEY-a) ## Open wmii actions menu Action $(path_ls $WMII_CONFPATH | wimenu -h "${HIST}.actions" -n 5000) & ;; $MODKEY-x) ## Open program menu - setsid $(path_ls $PATH | wimenu -h "${HIST}.progs" -n 5000) & ;; + PATH=$_PATH setsid $(path_ls $PATH | wimenu -h "${HIST}.progs" -n 5000) & ;; $MODKEY-Return) ## Launch a terminal - setsid x-terminal-emulator & ;; + PATH=$_PATH setsid x-terminal-emulator & ;; ## Tag actions $MODKEY-t) ## Change to another tag |