summarylogtreecommitdiffstats
path: root/xournalpp.install
blob: d2b75d77ff5a89468a08f4046ecb7d69afa3806b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
post_install() {
	:
}

post_upgrade() {
	configs=$(find /home/ /root/ -maxdepth 2 -name ".xournalpp" 2> /dev/null)
	if ! [ -z "$configs" ]; then
		cat << EOF

WARNING: Default config folder moved from \$HOME/.xournalpp to \$HOME/\$XDG_CONFIG_HOME/xournalpp (default .config)
Found following config paths:
EOF
		echo "$configs"
		echo
	fi
}

post_remove() {
	:
}