diff options
Diffstat (limited to 'misc/etc/initcpio')
-rw-r--r-- | misc/etc/initcpio/hooks/vtcol | 21 | ||||
-rw-r--r-- | misc/etc/initcpio/install/vtcol | 29 |
2 files changed, 0 insertions, 50 deletions
diff --git a/misc/etc/initcpio/hooks/vtcol b/misc/etc/initcpio/hooks/vtcol deleted file mode 100644 index 42170b4..0000000 --- a/misc/etc/initcpio/hooks/vtcol +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/ash -############################################################################### -# Copyright 2015--2017 Philipp Gesang -# Example mkinitcpio hook invoking vtcol in the initramfs environment -############################################################################### -# -# See mkinitcpio(8) for details. -# - -run_hook () -{ - binary=/usr/bin/vtcol - scheme=solarized - schemedir=/usr/share/vtcol/schemes - - if [ -f "${schemedir}/${scheme}" ] && [ -x "${binary}" ]; then - "${binary}" --scheme "${schemedir}/${scheme}" - fi -} - -# vim:ft=sh:sw=4:et diff --git a/misc/etc/initcpio/install/vtcol b/misc/etc/initcpio/install/vtcol deleted file mode 100644 index 400ec07..0000000 --- a/misc/etc/initcpio/install/vtcol +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -############################################################################### -# Copyright 2015--2017 Philipp Gesang -# Example mkinitcpio build hook invoking vtcol in the initramfs environment -############################################################################### -# -# See mkinitcpio(8) for details. -# -# This does nothing besides invoking ``add_runscript`` to add the vtcol -# initcpio hook and displaying some basic info. - -build () { - add_runscript -} - -help () { - cat <<ENOUGH -------------------------------------------------------------------------------- - vtcol -------------------------------------------------------------------------------- - - Set the frambuffer console color scheme - during early boot. - -------------------------------------------------------------------------------- -ENOUGH -} - -# vim:ft=sh:sw=4:et |