fix: .local/bin -> bin to avoid user pkg managers
This commit is contained in:
parent
87549c183f
commit
8f364ce723
8 changed files with 1 additions and 1 deletions
19
bin/ttydestroyer
Executable file
19
bin/ttydestroyer
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/bin/bash
|
||||
|
||||
usage() {
|
||||
echo "Usage: $0 /dev/pts/{tty_nb}"
|
||||
exit 0
|
||||
}
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
set "$(tty)"
|
||||
elif ! [ -w "$1" ]; then
|
||||
usage
|
||||
fi
|
||||
|
||||
(set -e
|
||||
|
||||
asciiquarium &
|
||||
cmatrix -ab &
|
||||
while true; do sl; done &
|
||||
) | lolcat > "$1"
|
Loading…
Add table
Add a link
Reference in a new issue