This commit is contained in:
Patrick Alvin Alcala 2025-09-04 08:08:27 +08:00
parent 633c2545d6
commit 57142e8fdd
8 changed files with 55 additions and 10 deletions

View file

@ -43,7 +43,7 @@ colors:
background-image: "../assets/wallpaper.jpeg"
services:
- name: "Self-Hosted Media"
- name: "Self-Hosted Local Media"
#icon: "fas fa-brands fa-docker"
items:
- name: "Movies"
@ -64,8 +64,20 @@ services:
url: "http://localhost:5004/web/#/music.html?topParentId=7e64e319657a9516ec78490da03edccb&collectionType=music"
target: "_blank"
- name: "Self-Hosted Apps"
- name: "Self-Hosted Local"
items:
- name: "Portainer"
logo: "assets/tools/portainer.png"
subtitle: "Manage docker containers and images"
url: "https://localhost:9443"
target: "_blank"
- name: "Dockge"
logo: "assets/tools/dockge.png"
subtitle: "Manage docker-compose"
url: "http://localhost:5012"
target: "_blank"
- name: "Invidious"
logo: "assets/tools/youtube.png"
subtitle: "Youtube Alternative"
@ -79,18 +91,36 @@ services:
target: "_blank"
- name: "Admin"
- name: "VPS"
#icon: "fas fa-reddit"
items:
- name: "Portainer"
logo: "assets/tools/portainer.png"
subtitle: "Manage docker containers and images"
url: "https://localhost:9443"
url: "https://port.patalcala.com"
target: "_blank"
- name: "Dockge"
logo: "assets/tools/dockge.png"
subtitle: "Manage docker-compose images"
url: "http://localhost:5012"
subtitle: "Manage docker-compose"
url: "https://dockge.patalcala.com"
target: "_blank"
- name: "Nextcloud"
logo: "assets/tools/nextcloud.png"
subtitle: "Files cloud server"
url: "https://nextcloud.patalcala.com"
target: "_blank"
- name: "Git"
logo: "assets/tools/forgejo.png"
subtitle: "Source code server"
url: "https://git.patalcala.com"
target: "_blank"
- name: "Share"
logo: "assets/tools/pingvin-share.png"
subtitle: "File sharing server"
url: "https://share.patalcala.com"
target: "_blank"

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View file

@ -26,3 +26,4 @@ windowrule = idleinhibit fullscreen,class:([window]) # Available modes: none, al
windowrulev2 = opacity 0.85 0.5 ignorealpha 1, class:^(thunar)$
windowrulev2 = opacity 1, class:^(mpv)$
windowrulev2 = plugin:invertwindow, class:(org.kde.dolphin)
windowrulev2 = float, title:^(Network Manager)$

View file

@ -1 +1 @@
return {recents={[1]="/home/patrick/Downloads",[2]="/run/media/patrick/PATRICK/Fonts/Montserrat/woff2",[3]="/run/media/patrick/PATRICK",[4]="/home/patrick",[5]="/home/patrick/Nextcloud"}, window={[1]=930,[2]=1009,[3]=0,[4]=0,["n"]=4}, window_mode="maximized", previous_find={[1]="app.zen_browser.zen.desktop",[2]="brave-browser",[3]="browser",[4]="JVB_COLIBRI_PORT",[5]="8080",[6]="host",[7]="tray",[8]="runCommand",[9]="encrypt",[10]="sass",[11]="_ownername"}, previous_replace={[1]="zen.desktop"}}
return {recents={[1]="/home/patrick/Downloads",[2]="/run/media/patrick/PATRICK/Fonts/Montserrat/woff2",[3]="/run/media/patrick/PATRICK",[4]="/home/patrick",[5]="/home/patrick/Nextcloud"}, window={[1]=930,[2]=492,[3]=0,[4]=0,["n"]=4}, window_mode="maximized", previous_find={[1]="app.zen_browser.zen.desktop",[2]="brave-browser",[3]="browser",[4]="JVB_COLIBRI_PORT",[5]="8080",[6]="host",[7]="tray",[8]="runCommand",[9]="encrypt",[10]="sass",[11]="_ownername"}, previous_replace={[1]="zen.desktop"}}

View file

@ -96,7 +96,7 @@
"interval": 10,
"tooltip": true,
"tooltip-format": "Network: {essid}\nSignal strength: {signaldBm}dBm ({signalStrength}%)\nFrequency: {frequency}MHz\nInterface: {ifname}",
//"on-click": "nmtui"
"on-click": "nmgui"
},
"custom/gpu-usage": {
"exec": "nvidia-smi --query-gpu=utilization.gpu --format=csv,noheader,nounits",

18
.zshrc
View file

@ -159,6 +159,7 @@ alias gitd="git diff"
alias gitr="git remote -v"
alias gitrr="git remote remove origin"
alias gitra="git remote add origin"
alias giti="git init && git branch -m master main"
alias tarc="tar -zcvf"
alias tarx="tar -zxvf"
@ -206,13 +207,25 @@ dlf() {
}
fwt() {
git clone --depth 1 https://git.patalcala.com/patalcala9/fwt $1 && cd $1 && rm -rf .git && git init && git branch -m master main
git clone --depth 1 https://git.patalcala.com/patalcala9/fwt /home/patrick/Documents/WebApps/$1 && cd /home/patrick/Documents/WebApps/$1 && rm -rf .git README.md && git init && git branch -m master main && touch README.md && echo '#' $1 > README.md && pnpm install && pnpm dev
}
fwtd() {
pnpm dev
}
fwtt() {
pnpm test
}
fwtb() {
pnpm build && http-server dist
}
alias rmf="sudo rm -rf"
copy() {
sudo rsync -avhP $1 $2
sudo rsync -avhP $1 $2
}
move() {
@ -248,3 +261,4 @@ alias sdt="shutdown 20:00"
# FVM
export PATH="/home/patrick/.fvm_flutter/bin:$PATH"