aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2019-06-21 13:23:09 -0400
committertdro <tdro@users.noreply.github.com>2019-06-21 13:23:09 -0400
commit37470a09922f2039d71d8506ea396a5d85adeabc (patch)
tree9b679c13f4e0470882cb4060f0564f3d1946b7b4 /.config/awesome
parent0863616e18ff13d579a745321b2ee4f5b4c63f1e (diff)
downloaddotfiles-37470a09922f2039d71d8506ea396a5d85adeabc.tar.gz
dotfiles-37470a09922f2039d71d8506ea396a5d85adeabc.tar.bz2
dotfiles-37470a09922f2039d71d8506ea396a5d85adeabc.zip
.config/awesome/scripts/app-launcher: Export local path in the case of new setups
Diffstat (limited to '.config/awesome')
-rwxr-xr-x.config/awesome/scripts/app-launcher3
-rwxr-xr-x.config/awesome/scripts/app-launcher-priv3
2 files changed, 4 insertions, 2 deletions
diff --git a/.config/awesome/scripts/app-launcher b/.config/awesome/scripts/app-launcher
index 981dc66..77855e0 100755
--- a/.config/awesome/scripts/app-launcher
+++ b/.config/awesome/scripts/app-launcher
@@ -1,3 +1,4 @@
#!/bin/bash
-rofi -fullscreen -show run -display-run "$" -font "ubuntu 12" -padding 300
+export PATH="$PATH:$HOME/.local/share/bin";
+rofi -fullscreen -show run -display-run "$" -font "ubuntu 12" -padding 300;
diff --git a/.config/awesome/scripts/app-launcher-priv b/.config/awesome/scripts/app-launcher-priv
index c1751ae..9754b84 100755
--- a/.config/awesome/scripts/app-launcher-priv
+++ b/.config/awesome/scripts/app-launcher-priv
@@ -1,3 +1,4 @@
#!/bin/bash
-rofi -fullscreen -show run -display-run "#" -run-command 'gksudo {cmd}' -font "ubuntu 12" -padding 300
+export PATH="$PATH:$HOME/.local/share/bin";
+rofi -fullscreen -show run -display-run "#" -run-command 'gksudo {cmd}' -font "ubuntu 12" -padding 300;