Created
September 12, 2024 06:47
-
-
Save Bryan2333/a212c9460ec8e8dd3b3296ad43da6939 to your computer and use it in GitHub Desktop.
mpv控制KDE夜间颜色脚本
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- mpv script to manage the state of night color | |
-- Based On following gist | |
-- https://gist.github.com/Zharkan/5f65ff9b1da85b2a2c79b777ed9e6199 | |
-- Global variable to store the initial state of night color | |
local night_color_was_enabled = false | |
-- Function to execute shell commands and capture output | |
function execute_command(cmd) | |
local handle = io.popen(cmd) | |
local result = handle:read("*a") | |
handle:close() | |
return result | |
end | |
-- Function to check the current state of night color | |
function is_night_color_enabled() | |
local cmd_get_state = "qdbus6 org.kde.KWin /org/kde/KWin/NightLight org.kde.KWin.NightLight.running" | |
local state = execute_command(cmd_get_state):gsub("%s+", "") -- Remove any extra whitespace | |
mp.osd_message("Night color is " .. state) | |
return state == "true" | |
end | |
-- Function to toggle night color state | |
function toggle_night_color() | |
local cmd_toggle = | |
'qdbus6 org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut "Toggle Night Color"' | |
os.execute(cmd_toggle) | |
end | |
-- Check and manage night color state when mpv starts | |
function manage_night_color_on_start() | |
if is_night_color_enabled() then | |
night_color_was_enabled = true | |
toggle_night_color() | |
mp.osd_message("Night color disabled") | |
else | |
night_color_was_enabled = false | |
end | |
end | |
-- Restore night color state when mpv ends | |
function restore_night_color_on_end() | |
if night_color_was_enabled then | |
toggle_night_color() | |
mp.osd_message("Night color enabled") | |
end | |
end | |
-- Bind functions to appropriate mpv events | |
mp.register_event("start-file", manage_night_color_on_start) | |
mp.register_event("end-file", restore_night_color_on_end) | |
mp.register_event("idle", restore_night_color_on_end) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment