mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 23:27:16 +08:00
19 lines
332 B
Plaintext
19 lines
332 B
Plaintext
post_install() {
|
|
cat <<-'EOF'
|
|
# GTK - Integration v1.4-1
|
|
#
|
|
# If you want GTK+ apps or bundles run with root privileges to be themed as well
|
|
# copy your `~/.gtkrc-2.0-kde4' file to `/root/gtkrc-2.0'
|
|
#
|
|
# sudo cp ~/.gtkrc-2.0-kde4 /root/.gtkrc-2.0
|
|
EOF
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|