notable changes: - rename `bt-connect` to `bt_connect` - rename `music` to `media` and make it generic instead of checking Spotify - make separate script to set background to a preset black image - make all shebangs "#!/usr/bin/env sh"
6 lines
204 B
Bash
Executable File
6 lines
204 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
response=$(cat $HOME/.local/share/emoticons.txt | dmenu -F -i)
|
|
emoticon=$(echo $response | sed 's/\w+//gi' | awk '{print $1}')
|
|
echo $emoticon | tr -d '\n' | xclip -selection clipboard;
|