blob: 53b0086fda6b72944b757159c54b74f2985d52ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
cat <<EOM
In order to use automatic theme updates with automathemely the timer and autostart needs to be enabled
To enable the timer for your user run:
systemctl enable --user automathemely.timer
For autostart (globally) this command can be used:
sed 's/\(Exec=automathemely\)\ \-\-manage/\1/' \\
/usr/share/applications/automathemely.desktop >| \\
/etc/xdg/autostart/automathemely.desktop
EOM
}
|