mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 00:45:32 +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
16 lines
398 B
Bash
16 lines
398 B
Bash
#!/bin/sh -e
|
|
|
|
# Source debconf library.
|
|
. /usr/share/debconf/confmodule
|
|
|
|
db_input high python3-keyman-config/keymandir || true
|
|
db_go
|
|
|
|
db_get python3-keyman-config/keymandir
|
|
if [ "$RET" = "true" ]; then
|
|
if [ -e /usr/local/share/keyman ]; then
|
|
chmod --quiet 00777 /usr/local/share/keyman
|
|
chmod --quiet 00777 /usr/local/share/doc/keyman
|
|
chmod --quiet 00777 /usr/local/share/fonts/keyman
|
|
fi
|
|
fi
|