diff --git a/config/hypr/hyprland/binds/group-launch.lua b/config/hypr/hyprland/binds/group-launch.lua index 66ec844..dc81262 100644 --- a/config/hypr/hyprland/binds/group-launch.lua +++ b/config/hypr/hyprland/binds/group-launch.lua @@ -14,12 +14,26 @@ hl.define_submap("groupedlaunch", function() hl.bind("s", function() hl.exec_cmd("kitty ~/projects/eth/eth-summaries/", { workspace = 1 }) - hl.exec_cmd("kitty ~/NextCloud/Documents/ETH/Semester4/", { workspace = 3 }) + hl.exec_cmd("kitty ~/NextCloud/Documents/ETH/Semester5/", { workspace = 3 }) exit_submap() end, { description = "Launch programs to write ETH summaries" }) + hl.bind("m", function() + hl.exec_cmd("kitty ~/projects/github/MusicPlayer/", { workspace = 1 }) + hl.exec_cmd("kitty ~/projects/github/MusicPlayer/backend/go", { workspace = 9 }) + hl.exec_cmd("kitty ~/projects/github/MusicPlayer/web/", { workspace = 10 }) + exit_submap() + end, { description = "Launch programs for MusicPlayer development" }) + + hl.bind("v", function() + hl.exec_cmd("kitty ~/projects/system/vps-docker/", { workspace = 1 }) + hl.exec_cmd("alacritty", { workspace = 3 }) + hl.exec_cmd("librewolf", { workspace = 11 }) + exit_submap() + end, { description = "Launch programs for VPS management" }) + hl.bind("b", function() - hl.exec_cmd("alvr_dashboard", { workspace = 1 }) + hl.exec_cmd("wivrn-dashboard", { workspace = 1 }) hl.exec_cmd("/opt/BSManager/bs-manager", { workspace = 2 }) hl.exec_cmd("steam", { workspace = 3 }) exit_submap() diff --git a/config/hypr/hyprland/binds/launch.lua b/config/hypr/hyprland/binds/launch.lua index 3f0c3ea..1d49d72 100644 --- a/config/hypr/hyprland/binds/launch.lua +++ b/config/hypr/hyprland/binds/launch.lua @@ -40,8 +40,8 @@ hl.define_submap("launch", function() -- bsmanager hl.bind("b", launcher("/opt/BSManager/bs-manager"), { description = "Launch BSManager" }) - -- ALVR - hl.bind("p", launcher("alvr_dashboard"), { description = "Launch ALVR" }) + -- WiVRN + hl.bind("p", launcher("wivrn-dashboard"), { description = "Launch WiVRN" }) -- Qalculate hl.bind("c", launcher("qalculate-qt"), { description = "Launch Qalculate!" })