1

Compare commits

..

3 Commits

3 changed files with 13 additions and 8 deletions

View File

@ -78,8 +78,9 @@ rec {
"$mainMod, T" = ["exec, kitty"]; "$mainMod, T" = ["exec, kitty"];
"$mainMod, E" = ["exec, kitty"]; "$mainMod, E" = ["exec, kitty"];
"$mainMod, N" = ["exec, neovide"]; "$mainMod, N" = ["exec, neovide"];
"$mainMod, R" = ["exec, kitty --class=rmpc --title=Rmpc rmpc"];
"$mainMod CTRL, N" = ["exec, kitty --class=navi --title=Navi navi"];
"$mainMod SHIFT, N" = ["exec, neovide ${config.paths.dotfiles}/navi/christoph.cheat"]; "$mainMod SHIFT, N" = ["exec, neovide ${config.paths.dotfiles}/navi/christoph.cheat"];
"$mainMod CTRL, N" = ["exec, kitty navi"];
"$mainMod SHIFT, F" = ["exec, neovide ${config.paths.dotfiles}/flake.nix"]; "$mainMod SHIFT, F" = ["exec, neovide ${config.paths.dotfiles}/flake.nix"];
"$mainMod, P" = ["exec, hyprpicker --autocopy --format=hex"]; "$mainMod, P" = ["exec, hyprpicker --autocopy --format=hex"];
@ -163,6 +164,7 @@ rec {
]; ];
"8" = [ "8" = [
"Spotify" "Spotify"
"rmpc"
]; ];
"9" = [ "9" = [
"discord" "discord"

View File

@ -45,6 +45,7 @@ in {
}; };
}; };
# TODO: Expose this as a module option: applicationIcons = {kitty = "󰄛"; ...};
"bar.workspaces.applicationIconMap" = { "bar.workspaces.applicationIconMap" = {
"class:^(kitty)$" = "󰄛"; "class:^(kitty)$" = "󰄛";
"class:^(org\.keepassxc\.KeePassXC)$" = "󰟵"; "class:^(org\.keepassxc\.KeePassXC)$" = "󰟵";
@ -65,9 +66,11 @@ in {
"class:^(steam_app_)(.+)$" = ""; "class:^(steam_app_)(.+)$" = "";
"class:^(signal)$" = "󱋊"; "class:^(signal)$" = "󱋊";
"class:^(Spotify)$" = ""; "class:^(Spotify)$" = "";
"class:^(rmpc)$" = "󰝚";
"class:^(discord)$" = ""; "class:^(discord)$" = "";
"class:^(Zotero)$" = ""; "class:^(Zotero)$" = "";
"class:^(org.zealdocs.zeal)$" = "󰞋"; "class:^(org.zealdocs.zeal)$" = "󰞋";
"class:^(navi)$" = "";
}; };
# https://github.com/Jas-SinghFSU/HyprPanel/blob/master/src/configuration/modules/theme/bar/index.ts # https://github.com/Jas-SinghFSU/HyprPanel/blob/master/src/configuration/modules/theme/bar/index.ts

View File

@ -148,12 +148,12 @@ in {
name: "Playlists (5)", name: "Playlists (5)",
pane: Pane(Playlists), pane: Pane(Playlists),
), ),
// (
// name: "Directories (6)",
// pane: Pane(Directories),
// ),
( (
name: "Directories (6)", name: "Search (6)",
pane: Pane(Directories),
),
(
name: "Search (7)",
pane: Pane(Search), pane: Pane(Search),
), ),
// ( // (
@ -206,8 +206,8 @@ in {
"3": SwitchToTab("Album Artists (3)"), "3": SwitchToTab("Album Artists (3)"),
"4": SwitchToTab("Artists (4)"), "4": SwitchToTab("Artists (4)"),
"5": SwitchToTab("Playlists (5)"), "5": SwitchToTab("Playlists (5)"),
"6": SwitchToTab("Directories (6)"), // "6": SwitchToTab("Directories (6)"),
"7": SwitchToTab("Search (7)"), "6": SwitchToTab("Search (6)"),
// "8": SwitchToTab("Visualizer (8)"), // "8": SwitchToTab("Visualizer (8)"),
"f": SeekForward, "f": SeekForward,