blob: ce6b6a2084f156e8cbcdf01e7796da43a6e64af7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
post_install() {
echo "To use this theme, add the following lines to /etc/sddm.conf:"
echo
echo "[Theme]"
echo "Current=solarized-sddm-theme"
echo
echo "To change the font used in this theme, add the following"
echo "lines to /usr/share/sddm/themes/solarized-sddm-theme/theme.conf:"
echo
echo "[General]"
echo "displayFont='YourFont'"
echo
echo "Version 0.1.8 brings a new background image"
echo "If you want the former backgrounds, add the following"
echo "lines to /usr/share/sddm/themes/solarized-sddm-theme/theme.conf:"
echo
echo "[General]"
echo "background='bars_background.png'"
echo "background='circles_background.png'"
echo "background='traces_background.png'"
echo
}
post_upgrade() {
post_install
}
|