You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
167B

  1. #!/bin/bash
  2. if [ -z $@ ]
  3. then
  4. cat ~/.config/rofi/emoji.tsv ~/.config/rofi/emoticons.tsv
  5. else
  6. IFS='';emoji=$@
  7. echo $emoji | cut -f 1 -z | xsel -b > /dev/null
  8. fi