Last active
May 4, 2023 04:04
-
-
Save marounmelhem/42c7fe492925a3d9ecebfce5df6699c1 to your computer and use it in GitHub Desktop.
A Bitbar plugin to add various timezones to the macOS top bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "๐บ๐ธ (LA) $(TZ=America/Los_Angeles date +'%H:%M:%S')" # Visible timezone. | |
echo '---' # Timezones shown in dropdown menu. | |
echo "๐บ๐ธ (NY) $(TZ=America/New_York date +'%H:%M:%S')" | |
echo "๐ฑ๐ง (BEY) $(TZ=Asia/Beirut date +'%H:%M:%S')" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment