feat: add walker and general launcher config

This commit is contained in:
2026-05-05 20:56:09 +02:00
parent fdf6ac5e08
commit c2082e942e
7 changed files with 105 additions and 73 deletions
+27
View File
@@ -5,13 +5,16 @@ in
{
flake.modules.homeManager.vicinae =
{
config,
pkgs,
inputs,
lib,
...
}:
let
repoTheme = repo.theme.kanagawa;
palette = repoTheme.palette;
launcherCommand = lib.getExe config.programs.vicinae.package;
in
{
programs.vicinae = {
@@ -70,5 +73,29 @@ in
ssh
];
};
meta.desktop.launcher = {
package = config.programs.vicinae.package;
commands = {
open = [
launcherCommand
"toggle"
];
files = [
launcherCommand
"deeplink"
"vicinae://extensions/sameoldlab/fuzzy-files/find"
];
dmenu = [
launcherCommand
"dmenu"
"--navigation-title"
"Clipboard"
"--placeholder"
"Search clipboard"
"--no-metadata"
];
};
};
};
}