summarylogtreecommitdiffstats
path: root/.INSTALL
blob: 98195baa4ef6222d3af6624e7cf62a87b40ab5b1 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

post_install() {
    [[ ! -d $HOME/.local/state/odot ]] && mkdir -p "$HOME/.local/state/odot"
}

post_remove() {
    [[ -d $HOME/.local/state/odot ]] && rm -rf "$HOME/.local/state/odot"
}