mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
This allows all users to install keyboards and only the user that installed one to uninstall it more setup instructions in README.md
13 lines
299 B
Bash
13 lines
299 B
Bash
#!/bin/sh -e
|
|
|
|
# Source debconf library.
|
|
. /usr/share/debconf/confmodule
|
|
|
|
#DEBHELPER#
|
|
|
|
db_get python3-keyman-config/keymandir
|
|
if [ "$RET" = "true" ]; then
|
|
chmod 00777 /usr/local/share/keyman
|
|
chmod 00777 /usr/local/share/doc/keyman
|
|
chmod 00777 /usr/local/share/fonts/keyman
|
|
fi
|