This commit is contained in:
2026-02-03 10:23:20 -08:00
parent 5b9cbbba99
commit 75a9cc360c
8 changed files with 14 additions and 140 deletions

View File

@@ -1 +0,0 @@
settings.json##os.Linux

View File

@@ -1,123 +0,0 @@
{
"subtitlePosition": {
"yPercent": 15.376111685625649
},
"keybindings": [
{
"key": "Space",
"command": [
"cycle",
"pause"
]
},
{
"key": "ArrowRight",
"command": [
"seek",
5
]
},
{
"key": "ArrowLeft",
"command": [
"seek",
-5
]
},
{
"key": "Ctrl+Shift+KeyN",
"command": [
"script-binding",
"mpvacious-export-note"
]
},
{
"key": "Ctrl+KeyC",
"command": [
"script-binding",
"mpvacious-copy-primary-sub-to-clipboard"
]
},
{
"key": "Ctrl+Shift+KeyV",
"command": [
"script-binding",
"mpvacious-secondary-sid-toggle"
]
},
{
"key": "Shift+KeyL",
"command": [
"script-binding",
"mpvacious-sub-seek-forward"
]
},
{
"key": "Shift+KeyH",
"command": [
"script-binding",
"mpvacious-sub-seek-back"
]
},
{
"key": "Ctrl+Shift+KeyH",
"command": [
"script-binding",
"mpvacious-sub-replay"
]
},
{
"key": "Ctrl+Shift+KeyL",
"command": [
"script-binding",
"mpvacious-sub-play-up-to-next"
]
},
{
"key": "Ctrl+KeyV",
"command": [
"script-binding",
"animecards/update-anki-card"
]
},
{
"key": "KeyQ",
"command": [
"quit"
]
},
{
"key": "Ctrl+KeyW",
"command": [
"quit"
]
}
],
"texthooker": {
"openBrowser": false
},
"websocket": {
"enabled": "auto",
"port": 6677
},
"ankiConnect": {
"enabled": true,
"url": "http://127.0.0.1:8765",
"deck": "Minecraft",
"pollingRate": 200,
"audioField": "ExpressionAudio",
"imageField": "Picture",
"sentenceField": "Sentence",
"generateAudio": true,
"generateImage": true,
"imageType": "avif",
"imageFormat": "webp",
"miscInfoPattern": "[mpv-yomitan] %f (%t)",
"overwriteAudio": true,
"overwriteImage": true,
"highlightWord": true,
"showNotificationOnUpdate": true,
"audioPadding": 0.5,
"fallbackDuration": 3
}
}

View File

@@ -155,7 +155,7 @@ profile-cond=width >= 1920 and filename:match("mkv$|mp4$")
glsl-shaders="" glsl-shaders=""
scale=ewa_lanczos scale=ewa_lanczos
target-peak=800 target-peak=800
hdr-tone-mapping=bt.2390 # hdr-tone-mapping=bt.2390
# HDR profile # HDR profile
[hdr] [hdr]

View File

@@ -1 +0,0 @@
../../submodules/mpv-anilist-updater/anilistUpdater/anilistUpdater.py

View File

@@ -1 +0,0 @@
../../submodules/mpv-anilist-updater/anilistUpdater/main.lua

View File

@@ -1 +1 @@
../../../projects/lua/mpv-youtube-queue/mpv-youtube-queue.lua /Users/sudacode/.config/mpv-modules/mpv-youtube-queue/mpv-youtube-queue.lua

View File

@@ -1,17 +1,17 @@
-- Bootstrap lazy.nvim -- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git" local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath }) local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
if vim.v.shell_error ~= 0 then if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({ vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" }, { "Failed to clone lazy.nvim:\n", "ErrorMsg" },
{ out, "WarningMsg" }, { out, "WarningMsg" },
{ "\nPress any key to exit..." }, { "\nPress any key to exit..." },
}, true, {}) }, true, {})
vim.fn.getchar() vim.fn.getchar()
os.exit(1) os.exit(1)
end end
end end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)