switched to river
This commit is contained in:
parent
cef35c17b9
commit
292301ce60
204 changed files with 3513 additions and 965 deletions
14
.local/bin/welcome
Executable file
14
.local/bin/welcome
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
data="$HOME/.local/share/misc/welcome/data"
|
||||
line=1
|
||||
|
||||
while true; do
|
||||
clear; sed -n "$line,+4p" "$data"
|
||||
printf "\n%s\n" "Press [ SHIFT ] + [ F1 ] to open the manual, Press [ CTRL ] + [ C ] to exit"
|
||||
|
||||
line=$((line+5))
|
||||
|
||||
[ "$(wc -l < "$data")" -lt "$line" ] && line=1
|
||||
sleep 5
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue