added some keybinds for screen tools and updated calculator plugin

This commit is contained in:
venus
2026-06-08 23:56:53 -05:00
parent 68224c1308
commit bff9e48dfe
4 changed files with 47 additions and 7 deletions

View File

@@ -3,4 +3,20 @@ local C = {}
function C.startTimer()
-- TODO implement custom timer logic here
end
function C.MoveToDarkSpot()
local targetMonitor = "DP-9"
hl.dispatch(hl.dsp.window.move({monitor = targetMonitor, x = 0, y = 0}))
hl.exec_cmd("notify-send 'moved to " .. targetMonitor .. "'")
end
local function phoneSocket()
-- Determine phone socket connection
-- Determine wired or wireless state
-- If wired connect over cable and set phone socket
-- If wireless connect over socker
-- If not on network notify
end
function C.RemoteToPhone()
end
return C