From 1b54291dadb51a54e086140cbd072c38887fd9fa Mon Sep 17 00:00:00 2001 From: fhdk Date: Sat, 21 Dec 2019 15:17:26 +0100 Subject: [PATCH 1/3] moving bin to .local - adhere to systemd standard ``` systemd-path user-binaries /home/fh/.local/bin ``` --- base/{ => .local}/bin/rofi_run | 0 base/bin | 1 + 2 files changed, 1 insertion(+) rename base/{ => .local}/bin/rofi_run (100%) create mode 120000 base/bin diff --git a/base/bin/rofi_run b/base/.local/bin/rofi_run similarity index 100% rename from base/bin/rofi_run rename to base/.local/bin/rofi_run diff --git a/base/bin b/base/bin new file mode 120000 index 00000000..aab35185 --- /dev/null +++ b/base/bin @@ -0,0 +1 @@ +.local/bin \ No newline at end of file From 6525c27489aee971edf03e0c36dadddb6c7c261d Mon Sep 17 00:00:00 2001 From: fhdk Date: Sat, 21 Dec 2019 15:35:30 +0100 Subject: [PATCH 2/3] Add .local/bin to path --- base/.xprofile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base/.xprofile b/base/.xprofile index 774f517c..c65458e1 100644 --- a/base/.xprofile +++ b/base/.xprofile @@ -5,7 +5,8 @@ XDG_CONFIG_HOME="$HOME/.config" export XDG_CONFIG_HOME -[ "$PATH" == *"$HOME/bin"* ] || PATH="$HOME/bin:$PATH" +export PATH="$HOME/.local/bin" +# [ "$PATH" == *"$HOME/bin"* ] || PATH="$HOME/bin:$PATH" picom -b & nitrogen --restore & From 46f29d06b2c269376c6d49599dca75006c31722e Mon Sep 17 00:00:00 2001 From: PacBangLinux Date: Mon, 23 Dec 2019 07:56:46 +0000 Subject: [PATCH 3/3] fix typo export $PATH --- base/.xprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/.xprofile b/base/.xprofile index c65458e1..be546eda 100644 --- a/base/.xprofile +++ b/base/.xprofile @@ -5,7 +5,7 @@ XDG_CONFIG_HOME="$HOME/.config" export XDG_CONFIG_HOME -export PATH="$HOME/.local/bin" +export PATH="$HOME/.local/bin:$PATH" # [ "$PATH" == *"$HOME/bin"* ] || PATH="$HOME/bin:$PATH" picom -b &