14 lines
307 B
Bash
14 lines
307 B
Bash
#!/bin/sh
|
|
|
|
post_install() {
|
|
echo " "
|
|
echo " See the demonstration video and try out the commands to get a sense of how it works"
|
|
echo " http://dl.suckless.org/slcon/2019/slcon-2019-04-mattias_andree-blind_demonstration.webm"
|
|
echo " "
|
|
echo " "
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|