From 39e208b6436a38bc5e4a800c4b446a5395797eb1 Mon Sep 17 00:00:00 2001 From: Jakub Date: Fri, 26 Sep 2025 22:24:17 +0800 Subject: [PATCH] I have no idea if these will work on android, so im disabling them for now --- userland/dired-custom.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/userland/dired-custom.el b/userland/dired-custom.el index 6b91725..3dc1b77 100644 --- a/userland/dired-custom.el +++ b/userland/dired-custom.el @@ -63,14 +63,14 @@ :group 'theurgy-compat) ;; Multimedia and PDF viewing -(when (or (not (equal system-type 'windows-nt)) theurgy-enable-ready-player-windows) +(when (or (equal system-type 'gnu/linux) theurgy-enable-ready-player-windows) (use-package ready-player :ensure t :config (setq ready-player-autoplay nil) (ready-player-mode 1))) -(when (or (not (equal system-type 'windows-nt)) theurgy-enable-pdf-tools-windows) +(when (or (equal system-type 'gnu/linux) theurgy-enable-pdf-tools-windows) (use-package pdf-tools :config (pdf-loader-install)))