blob: d834eff596ed181a20683bb18b73548fbc803c77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
print_header() {
echo ' >>> Run the script using `$ sudo tmk.sh` and follow the prompts.'
echo ' >>> To use one of the layouts until you turn off the computer, enter `$ sudo loadkeys tarmakX` (for any of tarmak1-4).'
echo ' >>> To set the layout in a persistent way, enter `$ sudo localectl set-keymap tarmakX`'
}
post_install() {
print_header
}
post_upgrade() {
print_header
}
|