💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › openbsd › 1-system.sh.gm… captured on 2023-07-10 at 15:47:35. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

systemSetup

Log

Files

Refs

README

LICENSE

1-system.sh (607B)

     1 # setup package manager
     2 cp installurl /etc/installurl
     3 
     4 pkg_add -l pkglist
     5 
     6 cp ../dotfiles/webs.sh /usr/local/bin/
     7 
     8 # diff-so-fancy
     9 git clone https://github.com/so-fancy/diff-so-fancy.git
    10 cp diff-so-fancy/diff-so-fancy /usr/local/bin/
    11 mkdir /usr/local/bin/lib
    12 cp diff-so-fancy/lib/DiffHighlight.pm /usr/local/bin/lib/
    13 
    14 # sheepy
    15 git clone https://spartatek.se/git/sheepy.git
    16 cd sheepy
    17 ./install.sh
    18 spm -g install sheepyExamples
    19 
    20 # git-off
    21 git clone https://noulin.net/git/git-off.git
    22 cd git-off/c
    23 gcc -std=gnu99 -o git-off gitoff.c
    24 export OFF=`pwd`/git-off/c/git-off
    25 cd /usr/local/bin
    26 ln -s $OFF git-off
    27 cd -