summaryrefslogtreecommitdiff
path: root/.config/login.d/00_quota.sh
blob: 2befc019a3fa27a6e78561ce4fd7411a24c47c60 (plain)
1
2
3
4
5
6
7
8
9
#!/hint/sh
if [ "$(uname)" == SunOS ]; then
	quota -v
	cat -s /etc/motd
else
	if { ! quota -s; } && [ -n "$DISPLAY" ]; then
		xmessage -center "$(quota -s)" &
	fi
fi