Skip to content

Instantly share code, notes, and snippets.

@renegarcia
Last active October 15, 2025 17:12
Show Gist options
  • Select an option

  • Save renegarcia/66bcb3c6d9c76d4673745b4fdf9874a2 to your computer and use it in GitHub Desktop.

Select an option

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.
#!/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