mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 07:19:29 -05:00
5 lines
186 B
Fish
Executable File
5 lines
186 B
Fish
Executable File
#!/bin/fish
|
|
|
|
set -l chosen_item (cat (dirname (status filename))/data/emojis.txt | fuzzel --dmenu)
|
|
test -n "$chosen_item" && echo "$chosen_item" | cut -d ' ' -f 1 | tr -d '\n' | wl-copy
|