summaryrefslogtreecommitdiffstats
path: root/system/vtcol/README.Slackware
diff options
context:
space:
mode:
Diffstat (limited to 'system/vtcol/README.Slackware')
-rw-r--r--system/vtcol/README.Slackware14
1 files changed, 14 insertions, 0 deletions
diff --git a/system/vtcol/README.Slackware b/system/vtcol/README.Slackware
new file mode 100644
index 0000000000..52164e358a
--- /dev/null
+++ b/system/vtcol/README.Slackware
@@ -0,0 +1,14 @@
+vtcol can be used in /etc/rc.d/rc.local to set the colour scheme at boot:
+
+vtcol --scheme solarized_light
+
+It is also possible to add it to your initrd to have the colour scheme set early in the boot process.
+
+Example:
+
+kernel=4.4.38
+mkinitrd -c -k "$kernel" -f ext4 -r /dev/disk/by-uuid/<some uuid> -m ext4:<more modules> -u -o /boot/initrd-"$kernel".gz -s
+/tmp/initrd-tree-"$kernel"
+install -m 755 /usr/bin/vtcol "/tmp/initrd-tree-$kernel/bin/vtcol"
+sed -i '159i \/bin\/vtcol --scheme solarized_dark' /tmp/initrd-tree-"$kernel"/init
+mkinitrd -k "$kernel" -f ext4 -r /dev/disk/by-uuid/<some uuid> -u -o /boot/initrd-"$kernel".gz -s /tmp/initrd-tree-"$kernel"