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