- Floating glass pill navbar matching homepage/jellyfin header style - Full black page background - Custom head_navbar template: logo links to bocken.org, home button for logged-in users, icons on all nav items, remove Help/Explore - Icon-only nav on mobile, hide dropdown triangles, round avatar - Deploy script to rsync theme + template to server
8 lines
344 B
Bash
Executable File
8 lines
344 B
Bash
Executable File
#!/bin/sh
|
|
CSS_DEST=/var/lib/gitea/custom/public/assets/css/theme-homepage.css
|
|
TMPL_DEST=/var/lib/gitea/custom/templates/base/head_navbar.tmpl
|
|
|
|
rsync -av static/other/gitea.css "root@bocken.org:$CSS_DEST"
|
|
rsync -av static/other/gitea_head_navbar.tmpl "root@bocken.org:$TMPL_DEST"
|
|
ssh root@bocken.org "chown gitea:gitea '$CSS_DEST' '$TMPL_DEST'"
|