voidrice/.local/bin/add_local_bin_to_path
2020-04-03 18:12:14 -05:00

7 lines
142 B
Bash
Executable File

#!/bin/sh
export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
notify-send "Added ~/.local/bin/ to $PATH"