From 09156e6cea71093079af580acdd6d4a8594e14b9 Mon Sep 17 00:00:00 2001 From: iceyrazor Date: Tue, 9 Jun 2026 23:14:29 -0500 Subject: Squashed commit of the following: moved aur installer down switched to xlibre on install reqs added vis to env.sh switched to ugrep runs posix changes alias changes autostart fix hyprland config update --- runs-all/env.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'runs-all/env.sh') diff --git a/runs-all/env.sh b/runs-all/env.sh index 970fe3f..a3ae7e7 100755 --- a/runs-all/env.sh +++ b/runs-all/env.sh @@ -1,7 +1,7 @@ #!/bin/sh echo DEPLOYING ENV ALL -cp -r $script_dir/env/. "$DEV_ENV" -[ -d "$script_dir/env_private/env/" ] && cp -r $script_dir/env_private/env/. "$DEV_ENV" +cp -r "$script_dir/env/." "$DEV_ENV" +[ -d "$script_dir/env_private/env/" ] && cp -r "$script_dir/env_private/env/." "$DEV_ENV" if [ ! -f "/etc/profile" ]; then @@ -9,17 +9,17 @@ if [ ! -f "/etc/profile" ]; then echo SKIPPING SETTING \$PATH else export PATH="" - source /etc/profile + . /etc/profile paths="$PATH" - path_dirs="$(find $DEV_ENV/.local/bin/scripts -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/ -name theme-setter -type d) $(find ~/.local/bin/blender* -maxdepth 0 -type d) -$(find $script_dir/keep/scripts -type d) -$(find $script_dir/env_private/keep/scripts -type d)" +$(find "$script_dir/keep/scripts" -type d) +$(find "$script_dir/env_private/keep/scripts" -type d)" for s in $path_dirs; do echo "adding $s to path" -- cgit v1.3