diff options
| -rw-r--r-- | emacs/README.md | 5 | ||||
| -rw-r--r-- | personal_infra/puppet/modules/nextcloud/manifests/init.pp | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/emacs/README.md b/emacs/README.md index fb18bf94..c7709d2e 100644 --- a/emacs/README.md +++ b/emacs/README.md @@ -26,3 +26,8 @@ Perhaps when you read this, my current config will be much bigger.. But I'm definitely happy today with my 120-line config. Check [emacs.bash](https://github.com/alexpdp7/alexpdp7/blob/master/emacs/emacs.bash) for something you can source in your bash to keep Emacs running and prevent slow startup. + +## Newcomers presets + +Emacs 31.1 includes a `newcomers-presets` *theme* with friendlier defaults. +Refer to [this article](https://sachachua.com/blog/2026/04/what-s-in-the-emacs-newcomers-presets-theme/ "What's in the Emacs newcomers-presets theme?") or to [the source code](https://github.com/emacs-mirror/emacs/blob/master/etc/themes/newcomers-presets-theme.el) to find more inspiration. diff --git a/personal_infra/puppet/modules/nextcloud/manifests/init.pp b/personal_infra/puppet/modules/nextcloud/manifests/init.pp index 93fe625d..b4f3f6eb 100644 --- a/personal_infra/puppet/modules/nextcloud/manifests/init.pp +++ b/personal_infra/puppet/modules/nextcloud/manifests/init.pp @@ -44,7 +44,9 @@ class nextcloud( } cron {"nextcloud-previews": - command => "cd /tmp/ ; sudo -u apache php -d memory_limit=512M /usr/share/nextcloud/occ preview:generate-all -q", + # https://github.com/nextcloud/previewgenerator/issues/673 + command => "true", + # command => "cd /tmp/ ; sudo -u apache php -d memory_limit=512M /usr/share/nextcloud/occ preview:generate-all -q", minute => "41", } } |
