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