mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
10 lines
171 B
Bash
10 lines
171 B
Bash
#!/bin/bash
|
|
|
|
# open top on vt9
|
|
setterm -blank 0 2>/dev/null
|
|
|
|
usepg=open
|
|
[ -e `which openvt` ] && usepg=openvt
|
|
|
|
( TERM=linux $usepg -f -c 9 -s -w -- /usr/bin/top -d 15 ) &
|