From 8c2074e7f071469a0eba899582df76d7449b2d62 Mon Sep 17 00:00:00 2001 From: BluishHumility Date: Mon, 8 Apr 2024 22:25:31 -0400 Subject: [PATCH] feat(pacseek): use -R instead of -Rns for pacman remove Use -R instead of -Rns for Pacman remove. Leaving the "s" out of it seems like a more prudent option, which I think we should opt for if users are going to be using this tool to remove packages. The advanced users who prefer the more aggressive behavior can change the config on their own. The "n" option shouldn't be part if it either way; I feel like a lot of people do not understand what this flag actually is. --- etc/skel/.config/pacseek/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/skel/.config/pacseek/config.json b/etc/skel/.config/pacseek/config.json index f6698d5..752e56e 100644 --- a/etc/skel/.config/pacseek/config.json +++ b/etc/skel/.config/pacseek/config.json @@ -10,7 +10,7 @@ "PacmanDbPath": "/var/lib/pacman/", "PacmanConfigPath": "/etc/pacman.conf", "InstallCommand": "paru -S", - "UninstallCommand": "paru -Rs", + "UninstallCommand": "paru -R", "SysUpgradeCommand": "paru", "SearchMode": "Contains", "SearchBy": "Name",