Files
aglab.dotfiles/bin/.fuzzel-vscode
SilverAg.L a1a0c2bdb6 重写 startb;补点中文注释;删减多余的定时模板
为啥又中文了?英文太长,中英夹杂键起来别扭。

不会真有人用我原始人般的配置吧?
2026-03-24 03:08:10 +08:00

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"