diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2025-07-04 10:36:53 -0400 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2025-07-04 10:36:53 -0400 |
| commit | 22688828c25a348e2bcb2cc0d559754da2b5b8d7 (patch) | |
| tree | 34d4e1fb6edb1d31e93dbb870321ea4871278a50 /distro | |
| parent | f8d380472d95099e67c37f72d2d8c7590546a536 (diff) | |
| download | dotfiles-22688828c25a348e2bcb2cc0d559754da2b5b8d7.tar.gz dotfiles-22688828c25a348e2bcb2cc0d559754da2b5b8d7.tar.xz | |
Add a note about rusticl
Diffstat (limited to 'distro')
| -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)" |
