mirror of
https://github.com/arnaucube/configs.git
synced 2026-02-10 04:26:41 +01:00
12 lines
255 B
Bash
Executable File
12 lines
255 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# script to generate unicode from LaTeX code, and copy it into the
|
|
# clipboard
|
|
#
|
|
# needs unicodeit installed:
|
|
# > pip install unicodeit
|
|
|
|
CODE=$1
|
|
python -m unicodeit.cli $CODE
|
|
python -m unicodeit.cli $CODE | xclip -selection clipboard
|