blob: 3e84aad2bfb518a6a75234898a2bbd2abe862f56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
## arg 1: the new package version
post_install() {
echo "
Please install a symlink into your SteamVR drivers directory as the user you're
running Steam with, e.g.:
$ ln -s /usr/lib/steamvr/apriltagtrackers/ ~/.steam/steam/steamapps/common/SteamVR/drivers/apriltagtrackers
"
}
## arg 1: the old package version
post_remove() {
echo "
If you installed a symlink into your StwamVR drivers directory, do not forget
to remove it as your Steam user:
$ unlink ~/.steam/steam/steamapps/common/SteamVR/drivers/apriltagtrackers
"
}
|