From bf4c18dc71f8738be0a0d51a3e65dc6c888005b1 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Fri, 6 Feb 2026 12:42:37 +0100 Subject: added wrapper for dmenu --- modules/home/i3wm/nord-blue/dmenu.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 modules/home/i3wm/nord-blue/dmenu.nix (limited to 'modules/home/i3wm/nord-blue/dmenu.nix') diff --git a/modules/home/i3wm/nord-blue/dmenu.nix b/modules/home/i3wm/nord-blue/dmenu.nix new file mode 100644 index 0000000..175b3d1 --- /dev/null +++ b/modules/home/i3wm/nord-blue/dmenu.nix @@ -0,0 +1,13 @@ +{ pkgs }: + + +# Wrapper for dmenu since dmenu itself doesnt have native Home-Manager config nor a config file +{ + dmenu = pkgs.writeShellScriptBin "dmenu" '' + #!/usr/bin/env sh + exec ${pkgs.dmenu}/bin/dmenu_run \ + -fn 'JetBrains Mono-12' \ + -nb '#222222' -nf '#cccccc' \ + -sb '#285577' -sf '#ffffff' + ''; +} \ No newline at end of file -- cgit v1.2.3