This commit is contained in:
Patrick Alvin Alcala 2026-03-18 10:52:26 +08:00
parent 5e976fc22e
commit 4a8e118d23
3 changed files with 25 additions and 5 deletions

View file

@ -53,7 +53,7 @@ graph_symbol_net = "default"
graph_symbol_proc = "default" graph_symbol_proc = "default"
#* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace. #* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace.
shown_boxes = "cpu mem net proc" shown_boxes = "mem net proc cpu"
#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
update_ms = 2000 update_ms = 2000

View file

@ -99,7 +99,7 @@ services:
- name: "OpenWeb UI" - name: "OpenWeb UI"
logo: "assets/tools/openwebui.png" logo: "assets/tools/openwebui.png"
subtitle: "Ollama frontend for local AI chat" subtitle: "Ollama frontend for local AI chat"
url: "http://localhost:5003" url: "http://localhost:8080"
target: "_blank" target: "_blank"
#- name: "Tube Archivist" #- name: "Tube Archivist"
@ -155,7 +155,7 @@ services:
- name: "YTS" - name: "YTS"
logo: "assets/tools/yts.png" logo: "assets/tools/yts.png"
subtitle: "Torrent download for movies" subtitle: "Torrent download for movies"
url: "https://en.yts-official.org" url: "https://yts.bz/"
target: "_blank" target: "_blank"

24
.zshrc
View file

@ -6,6 +6,7 @@ export ZSH="$HOME/.oh-my-zsh/oh-my-zsh.sh"
if [[ -o interactive ]]; then if [[ -o interactive ]]; then
fastfetch -c ~/.config/fastfetch/fastfetch.jsonc fastfetch -c ~/.config/fastfetch/fastfetch.jsonc
hyprctl hyprpaper wallpaper "HDMI-A-1,/home/patrick/.config/hypr/wallpapers/ocbo.png"
fi fi
export PATH=$PATH:/home/patrick/.local/bin export PATH=$PATH:/home/patrick/.local/bin
@ -169,7 +170,8 @@ alias tarx="tar -zxvf"
alias sshp="ssh patrick@patalcala.com -p 919" alias sshp="ssh patrick@patalcala.com -p 919"
alias sshpi="ssh patrick@65.108.82.60 -p 919" alias sshpi="ssh patrick@65.108.82.60 -p 919"
alias sshi="ssh iipsadmin@192.168.7.163" alias sshi="ssh ocboappadmin@192.168.7.183"
alias sshdb="ssh ocbodbadmin@192.168.7.184"
ytf() { ytf() {
yt-dlp --list-formats 'https://youtube.com/'$1 --cookies-from-browser firefox --cookies /home/patrick/Documents/cookies.txt --js-runtimes node yt-dlp --list-formats 'https://youtube.com/'$1 --cookies-from-browser firefox --cookies /home/patrick/Documents/cookies.txt --js-runtimes node
@ -242,7 +244,11 @@ fwtr() {
} }
fwtbbg() { fwtbbg() {
go mod tidy && GOOS=linux GOARCH=amd64 GOAMD64=v1 go build -pgo=auto -ldflags="-s -w" -o bin/$1 main.go go mod tidy && GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -pgo=auto -ldflags="-s -w" -o bin/$1 main.go
}
fwtbbgw() {
go mod tidy && GOOS=windows GOARCH=amd64 go build -pgo=auto -ldflags="-s -w" -o bin/$1.exe main.go
} }
dasig() { dasig() {
@ -294,6 +300,20 @@ alias fvma="fvm flutter pub add"
alias fvmr="fvm flutter pub remove" alias fvmr="fvm flutter pub remove"
alias fvmu="fvm flutter pub upgrade" alias fvmu="fvm flutter pub upgrade"
alias podc="podman container ls"
alias podca="podman container ls -a"
alias podcr="podman container rm -f"
alias podi="podman image ls"
alias podia="podman image ls -a"
alias podir="podman image rm -f"
alias podup="podman-compose up -d"
alias poddown="podman-compose down"
alias sshconf="sudo vim /etc/ssh/sshd_config"
alias sshr="sudo systemctl restart sshd"
alias sepls="sudo semanage port -l"
homerlogo() { homerlogo() {
sudo rsync -avhP $1 ~/dotfiles/.config/homer/tools/$1 sudo rsync -avhP $1 ~/dotfiles/.config/homer/tools/$1
} }