Remove comments

This commit is contained in:
Santiago Lo Coco 2023-11-22 18:56:48 -03:00
parent 24f2f9620f
commit d5314ec0f6
1 changed files with 0 additions and 21 deletions

View File

@ -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"