scripts

Various scripts for UNIX-like systems
git clone https://git.tronto.net/scripts
Download | Log | Files | Refs | README

status (211B)


      1 #!/bin/sh
      2 
      3 # Calls one of the system-specific status scripts to display
      4 # a line of text with some status information (battery, date...)
      5 
      6 case "$(uname)" in
      7 OpenBSD)
      8 	status-openbsd
      9 	;;
     10 *)
     11 	status-void
     12 	;;
     13 esac