Skip to content

Instantly share code, notes, and snippets.

View sephid86's full-sized avatar

시티에이스 sephid86

View GitHub Profile

Fulleaf Linux (based on Arch Linux) developer.
'풀잎 리눅스' 개발자입니다.

I also develop small utilities and occasionally contribute to other projects.
또한, 소소한 유틸리티들을 개발하며 드물게 가끔 다른 오픈소스 프로젝트에도 아주 작지만 기여를 하고 있습니다.

I'm working towards becoming Cup Noodles Profitable.
이 개발자는 오늘 굶었을지도 모릅니다.

 Buy me a Cup noodles  컵라면 하나만 사주세요

@sephid86
sephid86 / mpv-niri-anti-overfit.lua
Last active December 27, 2025 20:49
mpv script - niri mpv anti overfit (autofit)
-- ############################################################
-- # Niri Anti-Overfit for MPV (v2.0 Revision)
-- # Co-authored by Google AI Assistant and debugged by sephid86
-- # Logic: Absolute 'current-window-scale' Shield
-- # License: MIT (Free to use, modify, and distribute)
-- ############################################################
-- [Niri Configuration / Niri 설정 가이드]
-- This script works regardless of 'default-column-width {}' setting.
-- 이 스크립트는 'default-column-width {}' 설정 여부와 상관없이 완벽하게 동작합니다.
-- window-rule {
@sephid86
sephid86 / remember-volume.lua
Last active August 23, 2023 12:47 — forked from blackarcher21/remember-volume.lua
mpv script - remember audio volume
local filepath = mp.command_native({"expand-path", "~/mpv_volume"})
local loadfile = io.open(filepath, "r")
if loadfile then
set_volume = string.sub(loadfile:read(), 8)
loadfile:close()
mp.set_property_number("volume", set_volume)
end