一坨更新

新装了 bun(换部落格主题了)
给 chrome 撑宽一点(终于支持垂直标签页了,但记不住宽度)
对调了两块屏幕(可以`niri msg outputs`直接看逻辑坐标)
This commit is contained in:
2026-04-16 01:40:47 +08:00
parent 800074e1d2
commit a11e1e4f6a
3 changed files with 15 additions and 2 deletions

View File

@@ -21,6 +21,11 @@ window-rule {
open-on-output "eDP-1"
}
window-rule {
match app-id="google-chrome"
default-column-width { proportion 0.6; }
}
window-rule {
match app-id="Electron" title="Test" // frg2089.BiliLive.Observer
match app-id="Electron" title="Blivechat-Openlive" // blivechat

View File

@@ -48,11 +48,12 @@ input {
output "eDP-1" {
scale 1.25
position x=1920 y=0
}
output "HDMI-A-1" {
mode "1920x1080@180.000"
//position x=1920 y=0
position x=0 y=0
focus-at-startup
}

9
.zshrc
View File

@@ -149,8 +149,15 @@ export GPG_TTY=$TTY
alias uvenv='source .venv/bin/activate'
alias noproxy='env -u http_proxy -u https_proxy'
alias savebg='cp ~/.local/share/.wallpaper ~/Pictures/img.webp'
alias savebg='cp -v ~/.cache/wallpaper ~/Pictures/img.webp'
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# bun completions
[ -s "/home/agxcoy/.bun/_bun" ] && source "/home/agxcoy/.bun/_bun"
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"