Show an owner when grub is booting up
Go to file
Bandie b4dd478303
How to apply configuration?
2019-08-15 00:52:28 +02:00
etc/grub.d It might look nicer with spaces. Also deleted some unnecessary test files. 2019-08-15 00:47:14 +02:00
tools Initial commit and first release~ 2019-08-14 22:05:33 +02:00
LICENSE Initial commit 2019-08-11 01:24:27 +02:00
Makefile Initial commit and first release~ 2019-08-14 22:05:33 +02:00
README.md How to apply configuration? 2019-08-15 00:52:28 +02:00

README.md

grub-ownership

Show an owner when grub is booting up.

It is looking like this:

    ##########################
    # Owner:                 #
    # Alex Alexsen <a@a.tld> #
    ##########################

Installation

sudo make install
# OR with an autotools like PREFIX:
sudo PREFIX=/another/root make install

Configuration

Edit the file /etc/default/grub.

This is an example config

# Name and mail address of owner
OWNER="Alex Alexsen <a@a.tld>"

# Amounts of seconds for how long the owner information is displayed. It is skippable via ESC.
OWNER_TIMEOUT=10

Apply configuration

To apply the configuration you need to regenerate the GRUB2 config.

grub-mkconfig -o /boot/grub/grub.cfg
# OR on Debian like systems
update-grub

Uninstall

sudo make uninstall
# OR with an autotools like PREFIX:
sudo PREFIX=/another/root make uninstall