/usr/bin/ghcal-he is in hdate-applet 0.15.11-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #! /bin/bash
# get the first he locale you find
he_locale=`locale -a | grep he | head -n1`
# check for he locale
if [ x"$he_locale" = x ]; then
echo "sorry no hebrew locale found on your system."
echo "use locale -a to get a list of your installed locales."
echo ""
fi
# run the program
LANGUAGE=$he_locale LANG=$he_locale ghcal
|