diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-08-20 18:59:29 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-08-20 18:59:29 (EDT) |
commit | 0c5f0aa7d64ff44e13b14a3900844c8f0c0984e7 (patch) | |
tree | 2c34726939510ee7a294ebdb79ee6ca21a10e17b /hosts/alsvid3 | |
parent | 1981b8b2d3aae9f74df089d05d52893b3c9616ec (diff) | |
download | pc-inst-0c5f0aa7d64ff44e13b14a3900844c8f0c0984e7.zip pc-inst-0c5f0aa7d64ff44e13b14a3900844c8f0c0984e7.tar.gz pc-inst-0c5f0aa7d64ff44e13b14a3900844c8f0c0984e7.tar.bz2 |
alsvid3: Install Vertex themes system-wide
Diffstat (limited to 'hosts/alsvid3')
-rw-r--r-- | hosts/alsvid3/postinst | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/hosts/alsvid3/postinst b/hosts/alsvid3/postinst index 31ac58b..209a3fc 100644 --- a/hosts/alsvid3/postinst +++ b/hosts/alsvid3/postinst @@ -71,9 +71,14 @@ in_target sudo -u pj sh <<-EOF git clone https://github.com/horst3180/vertex-theme \ /home/pj/src/vertex-theme/ cd /home/pj/src/vertex-theme/ - ./autogen.sh --prefix=/home/pj/.local + ./autogen.sh + ln -s /usr/local/share/themes/ /home/pj/.themes + EOF +[ ${?} -ne 0 ] && return 1 +in_target sh <<-EOF + cd /home/pj/src/vertex-theme/ + set -e make install - ln -s .local/share/themes/ /home/pj/.themes EOF [ ${?} -ne 0 ] && return 1 |