add(binds): jellyfin

This commit is contained in:
kenji
2026-01-05 22:02:08 -06:00
parent 1f3c44afb7
commit 6f884ad114
+10
View File
@@ -13,14 +13,18 @@
"SUPER, W, Open Browser, exec, uwsm app -- firefox" "SUPER, W, Open Browser, exec, uwsm app -- firefox"
"SUPER, Y, Toggle YouTube, togglespecialworkspace, youtube" "SUPER, Y, Toggle YouTube, togglespecialworkspace, youtube"
"SUPER SHIFT, Y, Move to YouTube Special Workspace, movetoworkspace, special:youtube" "SUPER SHIFT, Y, Move to YouTube Special Workspace, movetoworkspace, special:youtube"
"SUPER, I, Toggle Jellyfin, togglespecialworkspace, jellyfin"
"SUPER SHIFT, I, Move to Jellyfin Special Workspace, movetoworkspace, special:jellyfin"
]; ];
workspace = [ workspace = [
"special:youtube, on-created-empty:uwsm app -- firefox -P YouTube --name youtube" "special:youtube, on-created-empty:uwsm app -- firefox -P YouTube --name youtube"
"special:jellyfin, on-created-empty:uwsm app -- firefox -P Jellyfin --name jellyfin"
]; ];
windowrulev2 = [ windowrulev2 = [
"workspace special:youtube, class:^(youtube)$" "workspace special:youtube, class:^(youtube)$"
"workspace special:jellyfin, class:^(jellyfin)$"
]; ];
}; };
imports = [ imports = [
@@ -58,6 +62,12 @@
name = "YouTube"; name = "YouTube";
url = "https://youtube.com"; url = "https://youtube.com";
}; };
jellyfin = import ./profiles/web-app.nix {
inherit pkgs myConfig;
id = 2;
name = "Jellyfin";
url = "https://watch.sakamoto.dev";
};
hakase = { hakase = {
search.force = true; search.force = true;
isDefault = true; isDefault = true;