7 lines
297 B
Bash
Executable File
7 lines
297 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
current_wid=$(xdo id)
|
|
selection=$(rofi -i -dmenu -theme-str 'listview{columns: 6; lines: 11;}' -theme-str 'window {fullscreen: true;}' $@ < $(dirname $0)/kaomoji.txt)
|
|
kaomoji=$(echo $selection | sed "s|$(echo -e "\ufeff").*||")
|
|
echo -n "$kaomoji" | xclip -selection clipboard
|