From 22688828c25a348e2bcb2cc0d559754da2b5b8d7 Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Fri, 4 Jul 2025 10:36:53 -0400 Subject: Add a note about rusticl --- distro/devuan.sh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'distro/devuan.sh') 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)" -- cgit v1.2.3