Last active
October 15, 2025 17:12
-
-
Save renegarcia/66bcb3c6d9c76d4673745b4fdf9874a2 to your computer and use it in GitHub Desktop.
Prints status information to X's root window. This is suitable for dwm and similar tiling window managers.
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
| #!/usr/bin/fish | |
| # | |
| # dwm-status-bar | |
| # | |
| # Prints status information to X's root window. | |
| # This is suitable for dwm and similar tiling window managers. | |
| set DATE_FORMAT "+%a %d %b %Y %H:%M %Z" | |
| while true | |
| sleep 2 | |
| xsetroot -name (date $DATE_FORMAT ) | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment