11 lines
160 B
Bash
11 lines
160 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "configure" ]; then
|
|
if [ -x /usr/sbin/saikyo-kde-rebrand ]; then
|
|
/usr/sbin/saikyo-kde-rebrand apply || true
|
|
fi
|
|
fi
|
|
|
|
exit 0
|