diff options
| author | iceyrazor <iceyrazor@mailfence.com> | 2025-06-30 00:05:45 -0500 |
|---|---|---|
| committer | iceyrazor <iceyrazor@mailfence.com> | 2025-06-30 00:05:45 -0500 |
| commit | b95ae4c5c9ff4d693d6424cce8a0d579754c4202 (patch) | |
| tree | aa6385301fc4dce26d70bc473fd876c794fc5f74 /runs-all | |
| parent | 22b2eb9a952bf252af29eb5ed905de4bb62386a2 (diff) | |
- moved system scripts to here
- config changes
- fixed my backup scripts. rsync -a
- added dmenu script
- fixed finds in env.sh
Diffstat (limited to 'runs-all')
| -rwxr-xr-x | runs-all/env.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runs-all/env.sh b/runs-all/env.sh index 55dc4e1..65c11a2 100755 --- a/runs-all/env.sh +++ b/runs-all/env.sh @@ -5,7 +5,6 @@ echo DEPLOYING ENV ALL cp -r $script_dir_2/../env/. "$DEV_ENV" [ -d "$script_dir_2/../env_private/env/" ] && cp -r $script_dir_2/../env_private/env/. "$DEV_ENV" -path_dirs="$(find $DEV_ENV/.local/bin/scripts -type d)" if [ ! -f "/etc/profile" ]; then echo NO /etc/profile @@ -14,12 +13,14 @@ else export PATH="" source /etc/profile paths="$PATH" - yt_cli_dir="$(find ~/stuff/scripts/**/youtube-playlist-cli -maxdepth 0 -type d)" + path_dirs="$(find $DEV_ENV/.local/bin/scripts -type d)" + yt_cli_dir="$(find ~/stuff/ -name youtube-playlist-cli -type d)" path_dirs="$path_dirs $yt_cli_dir -$(find ~/stuff/scripts/**/theme-setter -maxdepth 0 -type d) -$(find ~/stuff/scripts/system -maxdepth 2 -type d)" +$(find ~/stuff/ -name theme-setter -type d) +$(find $script_dir/keep/system -type d) +$(find $script_dir/env_private/keep/system -type d)" for s in $path_dirs; do echo "adding $s to path" |
