9 lines
168 B
Bash
Executable File
9 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
|
|
svkbd-mobile-intl &
|
|
choice=$(ls ~/annex/music/works | tmenu)
|
|
kill %1
|
|
if [ -n "$choice" ]; then
|
|
find "$HOME/annex/music/works/$choice/" -type f | sxiv -i
|
|
fi
|