xset and mpv

This commit is contained in:
2024-03-01 15:57:29 +01:00
parent 2de537a3da
commit 7f4ad00566
5 changed files with 20 additions and 5 deletions

View File

@@ -58,11 +58,15 @@ xset fp rehash &
fc-cache -fv &
# powersaving options
xset s off &
xset s noblank &
xset s noexpose &
xset c on &
xset -dpms &
# xset s off &
# xset s noblank &
# xset s noexpose &
# xset s on &
# xset -dpms &
# xset s 900 &
xset +dpms &
xset dpms 1200 1800 2100 &
xset s on &
xset s 900 &
# auths

View File

@@ -0,0 +1,5 @@
l seek 5
h seek -5
j seek -60
k seek 60
S cycle sub

2
mpv/.config/mpv/mpv.conf Normal file
View File

@@ -0,0 +1,2 @@
audio-samplerate = 192000
audio-format = floatp

Submodule mpv/.config/mpv/script_modules/mpvSockets added at 3b3f430074

View File

@@ -0,0 +1,3 @@
local mpv_config_dir_path = require("mp").command_native({"expand-path", "~~/"})
function load(relative_path) dofile(mpv_config_dir_path .. "/script_modules/" .. relative_path) end
load("mpvSockets/mpvSockets.lua")