diff options
Diffstat (limited to 'distro/devuan.sh')
| -rw-r--r-- | distro/devuan.sh | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/distro/devuan.sh b/distro/devuan.sh index eb5a951..8e32dbb 100644 --- a/distro/devuan.sh +++ b/distro/devuan.sh @@ -41,6 +41,9 @@ OKSH="${OKSH:-yes}" PACKAGES="${PACKAGES:-yes}" FONTS="${FONTS:-yes}" DWM="${DWM:-no}" +RUSTICL="${RUSTICL:-yes}" + + if [ "$PACKAGES" = yes ] ; then # Get rid of the CDROM source, lol @@ -73,8 +76,19 @@ sudo apt install -y git curl \ xclip \ restic \ tree \ + feh \ + +fi +if [ "$RUSTICL" = "yes" ] ; then + sudo apt install -y \ + mesa-opencl-icd + printf "\033[1;32m" + echo "Note, for GPU accelerated darktable with RustiCL you may need to:" + echo "export RUSTICL_ENABLE=radeonsi; darktable -d opencl" + echo "or similar, for intel change radeonsi to 'iris'" + printf "\033[0m" fi if [ "$NVIM" = yes ] ; then @@ -84,7 +98,7 @@ if [ "$NVIM" = yes ] ; then git clone https://github.com/neovim/neovim "$nvimdir" fi cd "$nvimdir" - git fetch --tags + git fetch --force --tags git checkout v0.11.2 rm -rf build || echo "" make CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$HOME/.local" -j"$(nproc)" |
