a1a0c2bdb6
为啥又中文了?英文太长,中英夹杂键起来别扭。 不会真有人用我原始人般的配置吧?
19 lines
410 B
Bash
Executable File
19 lines
410 B
Bash
Executable File
#!/bin/bash
|
|
|
|
desktop="$HOME/Desktop"
|
|
|
|
options=""
|
|
for item in $(ls $desktop); do
|
|
if [[ "$item" == *.desktop && -f "$desktop/$item" ]]; then
|
|
continue
|
|
fi
|
|
options+=$item
|
|
if [[ -d "$desktop/$item" ]]; then
|
|
options+='/'
|
|
fi
|
|
options+="\n"
|
|
done
|
|
|
|
fsarg=$(echo -en "$options" | fuzzel --dmenu --prompt="Open with VSCode: Desktop/")
|
|
[ -z "$fsarg" ] || startb code "$desktop/$fsarg"
|