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