From 5d24039b49ad796cd11bbb60a5f527fc89f99035 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Thu, 27 Mar 2025 18:50:59 +0100 Subject: [PATCH] feat: dmenu-wl -> mew --- home/modules/ruther/home/dwl/config.h | 2 +- home/modules/ruther/home/dwl/wm.scm | 3 +++ home/modules/ruther/home/passwords.scm | 8 ++++---- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/home/modules/ruther/home/dwl/config.h b/home/modules/ruther/home/dwl/config.h index 8bff2af..c8c2c6c 100644 --- a/home/modules/ruther/home/dwl/config.h +++ b/home/modules/ruther/home/dwl/config.h @@ -149,7 +149,7 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA /* commands */ static const char *termcmd[] = { "foot", NULL }; static const char *runcmd[] = { "foot", "--app-id", "foot-run", NULL }; -static const char *menucmd[] = { "rofi", "-show", "drun", NULL }; +static const char *menucmd[] = { "mew-run", NULL }; /* named scratchpads - First arg only serves to match against key in rules*/ static const char *scratchpadcmd_spotify[] = { diff --git a/home/modules/ruther/home/dwl/wm.scm b/home/modules/ruther/home/dwl/wm.scm index e53cf4f..9485c1f 100644 --- a/home/modules/ruther/home/dwl/wm.scm +++ b/home/modules/ruther/home/dwl/wm.scm @@ -129,6 +129,9 @@ (substitute* "config.h" (("\"foot\"") (string-append "\"" #$foot "/bin/foot\"")) (("\"rofi\"") (string-append "\"" #$rofi-wayland "/bin/rofi\"")) + (("\"mew\"") (string-append "\"" #$mew "/bin/mew\"")) + (("\"mew-run\"") (string-append "\"" #$mew "/bin/mew-run\"")) + (("\"dmenu-wl\"") (string-append "\"" #$dmenu-wl "/bin/dmenu-wl\"")) (("\"passmenu\"") (string-append "\"" #$password-store-wl "/bin/passmenu\"")) (("\"passmenu-totp\"") (string-append "\"" #$password-store-passmenus "/bin/passmenu-totp\"")) (("\"passmenu-multi\"") (string-append "\"" #$password-store-passmenus "/bin/passmenu-multi\"")) diff --git a/home/modules/ruther/home/passwords.scm b/home/modules/ruther/home/passwords.scm index 3241684..baf79e8 100644 --- a/home/modules/ruther/home/passwords.scm +++ b/home/modules/ruther/home/passwords.scm @@ -12,7 +12,7 @@ (package/inherit password-store (name "password-store-wl") (inputs (modify-inputs (package-inputs password-store) - (append dmenu-wl ydotool))) + (append mew ydotool))) (arguments (substitute-keyword-arguments (package-arguments password-store) ((#:phases original-phases) @@ -22,7 +22,7 @@ (substitute* "contrib/dmenu/passmenu" (("dmenu=dmenu-wl\n") (string-append "dmenu=" - (search-input-file inputs "/bin/dmenu-wl") + (search-input-file inputs "/bin/mew") "\n")) (("xdotool=\"ydotool") (string-append "xdotool=\"" @@ -36,7 +36,7 @@ (inputs (list password-store-wl - dmenu-wl + mew ydotool libnotify wl-clipboard)) @@ -53,7 +53,7 @@ (substitute* path (("dmenu=dmenu-wl\n") (string-append "dmenu=" - (search-input-file %build-inputs "/bin/dmenu-wl") + (search-input-file %build-inputs "/bin/mew") "\n")) (("xdotool=\"ydotool") (string-append "xdotool=\"" -- 2.48.1