summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfpi2020-06-21 13:06:09 +0200
committerfpi2020-06-21 13:06:23 +0200
commit89a92c988dcef707890b8566346d089956adc67a (patch)
tree0eb255284119a8b6837ff35c0921e1016d4a549d
parentUpdate symlinks (diff)
Fix path for rofi
-rw-r--r--rc.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.org b/rc.org
index 9587037..3076ea9 100644
--- a/rc.org
+++ b/rc.org
@@ -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