grub-ownership/README.md

48 lines
719 B
Markdown
Raw Normal View History

2019-08-10 23:24:27 +00:00
# grub-ownership
2019-08-14 20:05:33 +00:00
Show an owner when grub is booting up.
2019-08-14 20:09:07 +00:00
It is looking like this:
2019-08-14 20:05:33 +00:00
```
2019-08-14 20:09:07 +00:00
##########################
# Owner: #
# Alex Alexsen <a@a.tld> #
##########################
```
## Installation
```bash
2019-08-14 20:05:33 +00:00
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
```
## Uninstall
2019-08-14 20:09:07 +00:00
```bash
2019-08-14 20:05:33 +00:00
sudo make uninstall
# OR with an autotools like PREFIX:
sudo PREFIX=/another/root make uninstall
```