blob: 35d283fab8e273e34d96f8e1e3818c69cb132c22 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
xdg-icon-resource install --size 256 --novendor /usr/share/pixmaps/arduino.png
echo "Don't forget to add yourself to the uucp group: gpasswd -a <user> uucp"
}
pre_remove() {
xdg-icon-resource uninstall --size 256 arduino
}
# vim:set ts=2 sw=2 et:
|