diff options
Diffstat (limited to 'trayfreq')
-rwxr-xr-x | trayfreq | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/trayfreq b/trayfreq new file mode 100755 index 0000000..8686b41 --- /dev/null +++ b/trayfreq @@ -0,0 +1,9 @@ +#!/usr/bin/bash + +lang=$(locale | grep LANGUAGE | cut -d= -f2 | cut -d_ -f1) + +if [ lang = "fr" ]; then + trayfreq-fr $@ +else + trayfreq-en $@ +fi |