diff options
author | fpi | 2020-06-21 13:06:09 +0200 |
---|---|---|
committer | fpi | 2020-06-21 13:06:23 +0200 |
commit | 89a92c988dcef707890b8566346d089956adc67a (patch) | |
tree | 0eb255284119a8b6837ff35c0921e1016d4a549d | |
parent | Update symlinks (diff) |
Fix path for rofi
-rw-r--r-- | rc.org | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -814,7 +814,7 @@ end) #+BEGIN_SRC lua globalkeys = gears.table.join(globalkeys, - awful.key({ modkey }, "p", function() awful.spawn("rofi -show run -theme "..theme.."rofi_theme.rasi") end, + awful.key({ modkey }, "p", function() awful.spawn.with_shell("PATH=~/.local/bin:$PATH rofi -show run -theme "..theme.."rofi_theme.rasi") end, {description = "run rofi", group = "launcher"}) ) #+END_SRC |