Compare commits

...

4 Commits

Author SHA1 Message Date
880609c59e update 2026-02-18 02:05:21 -08:00
a3157dcf98 update 2026-02-18 01:52:27 -08:00
b8c317595a update 2026-02-17 20:44:06 -08:00
b9290bc985 update 2026-02-17 20:40:13 -08:00
6 changed files with 403 additions and 384 deletions

View File

@@ -6,6 +6,7 @@ tool_output_token_limit = 25000
# Formula: 273000 - (tool_output_token_limit + 15000) # Formula: 273000 - (tool_output_token_limit + 15000)
# With tool_output_token_limit=25000 ⇒ 273000 - (25000 + 15000) = 233000 # With tool_output_token_limit=25000 ⇒ 273000 - (25000 + 15000) = 233000
model_auto_compact_token_limit = 233000 model_auto_compact_token_limit = 233000
suppress_unstable_features_warning = true
[features] [features]
ghost_commit = false ghost_commit = false
unified_exec = true unified_exec = true
@@ -22,3 +23,12 @@ trust_level = "trusted"
[projects."/home/sudacode/projects/japanese/SubMiner"] [projects."/home/sudacode/projects/japanese/SubMiner"]
trust_level = "trusted" trust_level = "trusted"
[projects."/home/sudacode/.codex/skills"]
trust_level = "trusted"
[projects."/home/sudacode/projects/japanese/GameSentenceMiner"]
trust_level = "trusted"
[projects."/home/sudacode/.config/mpv/script-opts"]
trust_level = "trusted"

View File

@@ -98,7 +98,7 @@
"ffmpeg_path": null, "ffmpeg_path": null,
}, },
"subtitleStyle": { "subtitleStyle": {
"fontFamily": "M PLUS 1 Medium", "Noto Sans CJK JP Medium, Noto Sans CJK JP, Arial Unicode MS, Arial, sans-serif", "fontFamily": "M PLUS 1 Medium",
"fontSize": 35, "fontSize": 35,
"fontColor": "#cad3f5", "fontColor": "#cad3f5",
"fontWeight": "normal", "fontWeight": "normal",
@@ -143,13 +143,17 @@
"enabled": true, "enabled": true,
"serverUrl": "http://pve-main:8096", "serverUrl": "http://pve-main:8096",
"username": "sudacode", "username": "sudacode",
"accessToken": "9b5959bccec64164981c3cc2c970fd07", "accessToken": "",
"userId": "c5cf3703726c472ab5fff7d8480aa679", "userId": "",
"deviceId": "subminer", "deviceId": "subminer",
"clientName": "SubMiner", "clientName": "SubMiner",
"clientVersion": "0.1.0", "clientVersion": "0.1.0",
"defaultLibraryId": "", "defaultLibraryId": "",
"directPlayPreferred": true, "directPlayPreferred": true,
"remoteControlEnabled": true,
"remoteControlAutoConnect": true,
"autoAnnounce": false,
"remoteControlDeviceName": "SubMiner",
"directPlayContainers": ["mkv", "mp4", "webm", "mov", "flac", "mp3", "aac"], "directPlayContainers": ["mkv", "mp4", "webm", "mov", "flac", "mp3", "aac"],
"transcodeVideoCodec": "h265", "transcodeVideoCodec": "h265",
"pullPictures": true, "pullPictures": true,

View File

@@ -17,7 +17,8 @@ bind = $mainMod SHIFT, M, exec, uwsm stop
bind = $mainMod, E, exec, $fileManager bind = $mainMod, E, exec, $fileManager
bind = $mainMod, V, togglefloating, bind = $mainMod, V, togglefloating,
bind = $mainMod, d, exec, $menu bind = $mainMod, d, exec, $menu
bind = $mainMod, P, pseudo, # dwindle # bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod SHIFT, p, exec, "$HOME/.local/bin/hyprland-pin.sh"
bind = $mainMod, t, togglesplit, # dwindle bind = $mainMod, t, togglesplit, # dwindle
bind = $mainMod, f, fullscreen, bind = $mainMod, f, fullscreen,
bind = $mainMod, i, swapnext bind = $mainMod, i, swapnext

View File

@@ -94,7 +94,7 @@ windowcontrols_title=${media-title}
# Subtitle display settings # Subtitle display settings
# raise subtitles above the OSC when shown # raise subtitles above the OSC when shown
raise_subtitles=no raise_subtitles=yes
# amount by which subtitles are raised when the OSC is shown (in pixels) # amount by which subtitles are raised when the OSC is shown (in pixels)
raise_subtitle_amount=125 raise_subtitle_amount=125
@@ -174,8 +174,9 @@ zoom_in_max=4
zoom_out_min=-1 zoom_out_min=-1
# Colors and style # Colors and style
# Catppuccin Macchiato palette
# accent color of the OSC and title bar # accent color of the OSC and title bar
osc_color=#181926 osc_color=#24273A
# color of the title in borderless/fullscreen mode # color of the title in borderless/fullscreen mode
window_title_color=#A5ADCB window_title_color=#A5ADCB
# color of the window controls (close, minimize, maximize) in borderless/fullscreen mode # color of the window controls (close, minimize, maximize) in borderless/fullscreen mode
@@ -209,7 +210,7 @@ middle_buttons_color=#A5ADCB
# color of the play/pause button # color of the play/pause button
playpause_color=#A5ADCB playpause_color=#A5ADCB
# color of the element when held down (pressed) # color of the element when held down (pressed)
held_element_color=#999999 held_element_color=#939AB7
# color of a hovered button when hover_effect includes "color" # color of a hovered button when hover_effect includes "color"
hover_effect_color=#C6A0F6 hover_effect_color=#C6A0F6
# color of the border for thumbnails (with thumbfast) # color of the border for thumbnails (with thumbfast)

View File

@@ -14,10 +14,11 @@ return {
"cssls", "cssls",
"lua_ls", "lua_ls",
"eslint", "eslint",
"ts_ls", -- "ts_ls",
"angularls", "vtsls",
"ansiblels", "ansiblels",
"docker_compose_language_service", "docker_compose_language_service",
"docker_language_server",
"golangci_lint_ls", "golangci_lint_ls",
"gopls", "gopls",
"ruff", "ruff",

View File

@@ -11,6 +11,8 @@ return {
yaml = { "yamllint" }, yaml = { "yamllint" },
vim = { "vint" }, vim = { "vint" },
go = { "golangcilint" }, go = { "golangcilint" },
typescript = { "eslint" },
typescriptreact = { "eslint" },
} }
lint.linters.jsonlint.cmd = "vscode-json-language-server" lint.linters.jsonlint.cmd = "vscode-json-language-server"
lint.linters.shellcheck.args = { lint.linters.shellcheck.args = {