1
0
This commit is contained in:
dtb 2022-01-06 22:50:50 -05:00
parent e3e92a2884
commit 3f14cee31f

11
dotfiles-old/bin/autotranslate Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
[ -n "$dmenu" ] || dmenu=dmenu
lang="$LANG"
# lots of potentially wrong assumptions here
printf "%s\n" "$lang" | grep "_" >/dev/null 2>&1 \
&& lang="$(printf "%s\n" "$lang" | cut -d '_' -f 1)" \
|| lang=en
printf "%s\n" "$(xclip -o)" | translate auto $lang | "$($dmenu -p "Press Enter to dismiss.")"