diff options
Diffstat (limited to 'community/fbterm/fbterm.install')
-rw-r--r-- | community/fbterm/fbterm.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/fbterm/fbterm.install b/community/fbterm/fbterm.install new file mode 100644 index 000000000..9b4d7ebd1 --- /dev/null +++ b/community/fbterm/fbterm.install @@ -0,0 +1,22 @@ +post_install() { + cat <<EOF + +==> To run fbterm as a non-root user, do: + +sudo gpasswd -a YOUR_USERNAME video + + +==> To enable keyboard shortcuts for non-root users, do: + +sudo setcap 'cap_sys_tty_config+ep' /usr/bin/fbterm + +or + +sudo chmod u+s /usr/bin/fbterm + +EOF +} + +post_upgrade() { + post_install $1 +} |