aboutsummaryrefslogtreecommitdiff
path: root/distro/devuan.sh
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2025-07-04 10:36:53 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2025-07-04 10:36:53 -0400
commit22688828c25a348e2bcb2cc0d559754da2b5b8d7 (patch)
tree34d4e1fb6edb1d31e93dbb870321ea4871278a50 /distro/devuan.sh
parentf8d380472d95099e67c37f72d2d8c7590546a536 (diff)
downloaddotfiles-22688828c25a348e2bcb2cc0d559754da2b5b8d7.tar.gz
dotfiles-22688828c25a348e2bcb2cc0d559754da2b5b8d7.tar.xz
Add a note about rusticl
Diffstat (limited to 'distro/devuan.sh')
-rw-r--r--distro/devuan.sh16
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)"