mirror of
https://git.dodsorf.as/Dandellion/dotfiles.git
synced 2024-12-22 15:17:28 +01:00
10 lines
312 B
Bash
Executable File
10 lines
312 B
Bash
Executable File
#!/bin/sh
|
|
# Give dmenu list of all unicode characters to copy.
|
|
# Shows the selected character in dunst if running.
|
|
|
|
chosen=$(cd $HOME/Soundboard && find -printf '%P\n'| dmenu -i -l 20 -fn Monospace-14)
|
|
|
|
[ "$chosen" != "" ] || exit
|
|
|
|
mpv --no-video --audio-device=pulse/SendToVirtualMic "$HOME/Soundboard/$chosen"
|