add bin env
This commit is contained in:
parent
bb37adb02a
commit
df213f04bb
@ -1 +0,0 @@
|
||||
/home/guillaumev/.config/waybar/configs/[TOP] Custom
|
||||
7
.gitignore
vendored
7
.gitignore
vendored
@ -11,6 +11,13 @@
|
||||
|
||||
!.config/waybar/
|
||||
!.config/waybar/**/*
|
||||
.config/waybar/wallust
|
||||
.config/waybar/configs/'[TOP] Custom'
|
||||
.config/waybar/config
|
||||
|
||||
!.local/
|
||||
!.local/bin/
|
||||
!.local/bin/env
|
||||
|
||||
|
||||
|
||||
|
||||
11
.local/bin/env
Normal file
11
.local/bin/env
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
# add binaries to PATH if they aren't added yet
|
||||
# affix colons on either side of $PATH to simplify matching
|
||||
case ":${PATH}:" in
|
||||
*:"$HOME/.local/bin":*)
|
||||
;;
|
||||
*)
|
||||
# Prepending path in case a system-installed binary needs to be overridden
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
;;
|
||||
esac
|
||||
Loading…
x
Reference in New Issue
Block a user