mirror of
https://github.com/ksyasuda/dotfiles.git
synced 2026-02-04 06:36:35 -08:00
update
This commit is contained in:
@@ -1 +0,0 @@
|
||||
settings.json##os.Linux
|
||||
Submodule .config/mpv-modules/ModernZ updated: fadaf74b08...d917f6e253
@@ -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
|
||||
}
|
||||
}
|
||||
@@ -155,7 +155,7 @@ profile-cond=width >= 1920 and filename:match("mkv$|mp4$")
|
||||
glsl-shaders=""
|
||||
scale=ewa_lanczos
|
||||
target-peak=800
|
||||
hdr-tone-mapping=bt.2390
|
||||
# hdr-tone-mapping=bt.2390
|
||||
|
||||
# HDR profile
|
||||
[hdr]
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
../../submodules/mpv-anilist-updater/anilistUpdater/anilistUpdater.py
|
||||
@@ -1 +0,0 @@
|
||||
../../submodules/mpv-anilist-updater/anilistUpdater/main.lua
|
||||
@@ -1 +1 @@
|
||||
../../../projects/lua/mpv-youtube-queue/mpv-youtube-queue.lua
|
||||
/Users/sudacode/.config/mpv-modules/mpv-youtube-queue/mpv-youtube-queue.lua
|
||||
@@ -1,17 +1,17 @@
|
||||
-- Bootstrap lazy.nvim
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
||||
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||
{ out, "WarningMsg" },
|
||||
{ "\nPress any key to exit..." },
|
||||
}, true, {})
|
||||
vim.fn.getchar()
|
||||
os.exit(1)
|
||||
end
|
||||
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
||||
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||
{ out, "WarningMsg" },
|
||||
{ "\nPress any key to exit..." },
|
||||
}, true, {})
|
||||
vim.fn.getchar()
|
||||
os.exit(1)
|
||||
end
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user