- remove powershell deps
- rewrite readme
- fully use YukiLauncher
This commit is contained in:
2025-10-14 15:04:30 +08:00
parent d6d65118bf
commit 5fffcbcd53
13 changed files with 69 additions and 85 deletions

15
bin/fuzzel-vsc-entries.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
desktop="$HOME/Desktop"
options=""
for item in $(ls $desktop); do
options+=$item
if [[ -d "$desktop/$item" ]]; then
options+='/'
fi
options+="\n"
done
fsarg=$(echo -en "$options" | fuzzel --dmenu --prompt="Open Project with VSCode:")
[ -z "$fsarg" ] || ykrun code "$desktop/$fsarg"