From 01a03cfb65c03e2b469dc2af77effa093d90238d Mon Sep 17 00:00:00 2001 From: odweta Date: Sun, 7 Jun 2026 11:49:08 +0200 Subject: [PATCH] update: change the file manager from lf to thunar --- dwm/config/rules.h | 2 +- dwm/config/scratchpads.h | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/dwm/config/rules.h b/dwm/config/rules.h index 2eab07c..2e12e52 100644 --- a/dwm/config/rules.h +++ b/dwm/config/rules.h @@ -7,7 +7,7 @@ static const Rule rules[] = { */ /* class instance title tags mask isfloating monitor */ { NULL, "spterm", NULL, SPTAG(0), 1, -1 }, - { NULL, "spfm", NULL, SPTAG(1), 1, -1 }, + { NULL, "thunar", NULL, SPTAG(1), 1, -1 }, { NULL, "keepassxc", NULL, SPTAG(2), 1, -1 }, { NULL, "spnmtui", NULL, SPTAG(3), 1, -1 }, { NULL, "spmusic", NULL, SPTAG(4), 1, -1 }, diff --git a/dwm/config/scratchpads.h b/dwm/config/scratchpads.h index f93ce0f..f600080 100644 --- a/dwm/config/scratchpads.h +++ b/dwm/config/scratchpads.h @@ -6,7 +6,8 @@ typedef struct { } Sp; const char *spcmd0[] = {"st", "-n", "spterm", "-g", "120x34", NULL }; -const char *spcmd1[] = {"st", "-n", "spfm", "-g", "144x41", "-e", "lf", NULL }; +//const char *spcmd1[] = {"st", "-n", "spfm", "-g", "144x41", "-e", "lf", NULL }; +const char *spcmd1[] = {"thunar", NULL }; const char *spcmd2[] = {"keepassxc", NULL }; const char *spcmd3[] = {"st", "-n", "spnmtui", "-g", "140x30", "-e", "nmtui", NULL }; const char *spcmd4[] = {"st", "-n", "spmusic", "-g", "140x30", "-e", "ncmpcpp", NULL }; @@ -15,7 +16,7 @@ const char *spcmd5[] = {"signal-desktop", NULL }; static Sp scratchpads[] = { /* name cmd */ {"spterm", spcmd0}, - {"spranger", spcmd1}, + {"spfm", spcmd1}, {"spkeepassxc", spcmd2}, {"spnmtui", spcmd3}, {"spmusic", spcmd4},