feat: switch to wivrn

This commit is contained in:
2026-09-20 10:13:02 +02:00
parent 92753f810a
commit d4b74e0002
2 changed files with 18 additions and 4 deletions
+16 -2
View File
@@ -14,12 +14,26 @@ hl.define_submap("groupedlaunch", function()
hl.bind("s", function() hl.bind("s", function()
hl.exec_cmd("kitty ~/projects/eth/eth-summaries/", { workspace = 1 }) 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() exit_submap()
end, { description = "Launch programs to write ETH summaries" }) 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.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("/opt/BSManager/bs-manager", { workspace = 2 })
hl.exec_cmd("steam", { workspace = 3 }) hl.exec_cmd("steam", { workspace = 3 })
exit_submap() exit_submap()
+2 -2
View File
@@ -40,8 +40,8 @@ hl.define_submap("launch", function()
-- bsmanager -- bsmanager
hl.bind("b", launcher("/opt/BSManager/bs-manager"), { description = "Launch BSManager" }) hl.bind("b", launcher("/opt/BSManager/bs-manager"), { description = "Launch BSManager" })
-- ALVR -- WiVRN
hl.bind("p", launcher("alvr_dashboard"), { description = "Launch ALVR" }) hl.bind("p", launcher("wivrn-dashboard"), { description = "Launch WiVRN" })
-- Qalculate -- Qalculate
hl.bind("c", launcher("qalculate-qt"), { description = "Launch Qalculate!" }) hl.bind("c", launcher("qalculate-qt"), { description = "Launch Qalculate!" })