From d5314ec0f687e6ab51e2cf5a47e89949a805e1ad Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 22 Nov 2023 18:56:48 -0300 Subject: [PATCH] Remove comments --- launcher.sh | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/launcher.sh b/launcher.sh index 0cf4169..ceaf173 100755 --- a/launcher.sh +++ b/launcher.sh @@ -1,8 +1,5 @@ #!/usr/bin/env bash -#find /System/Library/CoreServices /System/Applications /Applications /System/Applications/Utilities -maxdepth 1 -name "*.app" | fzf | xargs -I {} open "{}" -#find /System/Applications /Applications /System/Applications/Utilities -maxdepth 1 -name "*.app" | fzf | xargs -I {} open "{}" - cacheDir=${XDG_CACHE_HOME:-"$HOME/.cache"} configDir=${XDG_CONFIG_HOME:-"$HOME/.config"}/clauncher @@ -10,14 +7,6 @@ cache="$cacheDir/launcher_opts" historyFile="$cacheDir/launcher_opts_history" if ! [ -f "$cache" ]; then - #gfind /System/Applications /Applications /System/Applications/Utilities /System/Library/CoreServices /System/Volumes/Data/Users/slococo/Applications /System/Volumes/Data/Users/slococo/Library/Application\ Support/JetBrains/Toolbox/scripts -maxdepth 1 -name "*.app" -printf "%f\n" | sort -u > "$cache" - #/Users/slococo/.local/bin/capture.zsh 'open -a ' | sed "s/open -a //" | grep -v -f /Users/slococo/.open_ignore | sed "s/\\\//g" | sed -e "s/\r//g" | sort -u > "$cache" - # Hack to remove 'open -a': - #/Users/slococo/.local/bin/capture.zsh 'open -a' | awk -F'-a' '{print $2}' | grep -v -f /Users/slococo/.open_ignore | sed "s/\\\//g" | sed -e "s/\r//g" | sort -u > "$cache" - #/Users/slococo/.local/bin/capture.zsh 'open -a' | sed 's/.*-a//' | grep -v -f /Users/slococo/.open_ignore | sed "s/\\\//g" | sed -e "s/\r//g" | sort -u > "$cache" - #/Users/slococo/.local/bin/capture.zsh 'open -a' | sed -e 's/.*-a//' -e "s/\\\//g" -e "s/\r//g" | grep -v -f /Users/slococo/.open_ignore | (echo "Finder"; cat -) | sort -u > "$cache" - #/Users/slococo/.local/bin/capture.zsh 'open -a' | sed -e 's/.*-a//' -e "s/\\\//g" -e "s/\r//g" | grep -v -f /Users/slococo/.open_ignore | (cat /Users/slococo/.open_add; cat -) | sort -u > "$cache" - #/Users/slococo/.local/bin/capture.zsh 'open -a' | gsed -e 's/.*-a//' -e "s/\\\//g" -e "s/\r//g" -e '$aFinder' | grep -v -f /Users/slococo/.open_ignore | sort -u > "$cache" $configDir/capture.zsh 'open -a' | sed -e 's/.*-a//' -e "s/\\\//g" -e "s/\r//g" | grep -v -f $configDir/.open_ignore | (cat $configDir/.open_add; cat -) | sort -u > "$cache" fi @@ -54,13 +43,3 @@ gawk -v histfile=$historyFile ' } ' \ | xargs -I {} open -a "{}" - -# | awk -F "/" '{ print $NF }' - - -#OLD_PATH="$PATH" -#PATH="$PATH:/System/Applications:/Applications:/System/Applications/Utilities" -#echo "$PATH" -#PATH="$OLD_PATH" -#echo "$PATH" -