You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
391 B
25 lines
391 B
#!/usr/bin/env sh |
|
|
|
change() { |
|
echo "Changing timezone to $1" |
|
sudo setup-timezone -z "$1" |
|
echo 1 > /tmp/sxmo_bar |
|
echo Timezone changed ok |
|
read -r |
|
} |
|
|
|
menu() { |
|
T="$( |
|
find /usr/share/zoneinfo -type f | |
|
sed 's#^/usr/share/zoneinfo/##g' | |
|
sort | |
|
sxmo_dmenu_with_kb.sh -p Timezone -c -l 10 -fn Terminus-20 -i |
|
)" |
|
st -e "$0" change "$T" |
|
} |
|
|
|
if [ $# -gt 0 ]; then |
|
"$@" |
|
else |
|
menu |
|
fi
|
|
|