diff options
Diffstat (limited to 'hooks/consolefont')
-rw-r--r-- | hooks/consolefont | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/hooks/consolefont b/hooks/consolefont index 07cbd71..118a10d 100644 --- a/hooks/consolefont +++ b/hooks/consolefont @@ -1,12 +1,11 @@ -# vim: set ft=sh: +#!/usr/bin/ash -run_hook () -{ +run_hook() { if [ -e /consolefont.psfu ]; then msg -n ":: Loading console font..." setfont -C /dev/console /consolefont.psfu msg "done." - elif [ -e /consolefont.psf ]; then + elif [ -e /consolefont.psf ]; then msg -n ":: Loading console font..." setfont -C /dev/console /consolefont.psf msg "done." @@ -14,3 +13,5 @@ run_hook () msg "No consolefont found despite added hook." fi } + +# vim: set ft=sh ts=4 sw=4 et: |