blob: ca4eea4bfbd1bcce79ce4edfab0094904e0a564c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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 you can find them"
echo "in the theme folder as bars_background.png, circles_background.png"
echo "and traces_background.png"
}
post_upgrade() {
post_install
}
|