aboutsummaryrefslogtreecommitdiff
path: root/status
blob: 66811b0f0d559e856fd6801f8649d99d55b8fc75 (plain)
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