Add: braille functions
This commit is contained in:
parent
920a72556e
commit
c5f633e12a
3 changed files with 19 additions and 0 deletions
7
desktop/.config/fish/functions/brf_to_unicode.fish
Executable file
7
desktop/.config/fish/functions/brf_to_unicode.fish
Executable file
|
@ -0,0 +1,7 @@
|
|||
|
||||
#!/usr/bin/env fish
|
||||
#
|
||||
|
||||
function brf_to_unicode -d "convert music brf files to french encoding"
|
||||
sed -e "s/\\\\/\\\\\\\\/" $argv | lou_translate language:en dots:6
|
||||
end
|
6
desktop/.config/fish/functions/musicbrf_to_fr.fish
Executable file
6
desktop/.config/fish/functions/musicbrf_to_fr.fish
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env fish
|
||||
#
|
||||
|
||||
function musicbrf_to_fr -d "convert music brf files to french table"
|
||||
sed -e "s/\\\\/\\\\\\\\/" $argv | lou_translate language:en dots:6 | lou_translate fr-bfu-comp8.utb -b
|
||||
end
|
6
desktop/.config/fish/functions/txt_to_ubrl_fr.fish
Executable file
6
desktop/.config/fish/functions/txt_to_ubrl_fr.fish
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env fish
|
||||
#
|
||||
|
||||
function txt_to_ubrl_fr -d "convert text to unicode braille (french table)"
|
||||
lou_translate fr-bfu-comp8.utb < $argv
|
||||
end
|
Loading…
Reference in a new issue