From e44bc987c14a904b371718f9c1562135fc02c966 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 8 Apr 2012 21:03:27 -0400 Subject: hooks: use consistent shebang, modeline, function style Signed-off-by: Dave Reisner --- hooks/consolefont | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'hooks/consolefont') 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: -- cgit v1.2.3-24-g4f1b