blob: 069d3e92f5d8f15a7eca426633c6df0c503db994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
echo ">>> It is recommended to first read:"
echo "https://docs.interstice.cloud/"
echo
echo ">>> Enable the plugin:"
echo "Settings -> Configure Krita -> Python Plugin Manager -> AI Image Diffusion"
echo "(Krita needs to be restarted now)"
echo ">>> To show the plugin docker:"
echo "Settings -> Dockers -> AI Image Generation"
}
post_upgrade() {
post_install
}
post_remove() {
echo ">>> If you want to delete leftover data files, please check:"
echo "\$HOME/.local/share/krita/ai_diffusion"
}
|