1
0
Fork 0
mirror of https://github.com/SunRed/theme-dark-arc-gitea.git synced 2024-10-22 15:06:13 +02:00

Update README.md

This commit is contained in:
Jake G 2022-06-16 11:21:27 -07:00 committed by GitHub
parent 885e86f33e
commit 186ffc0977
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,9 +72,11 @@ They are one and the same file.
### You can set `config` and `custom-path` values when running gitea as a service: ### You can set `config` and `custom-path` values when running gitea as a service:
sudo nano /etc/systemd/system/gitea.service ```shell
sudo nano /etc/systemd/system/gitea.service
ExecStart=/usr/local/bin/gitea web --custom-path /var/lib/gitea/custom --config /var/lib/gitea/custom/conf/app.ini ExecStart=/usr/local/bin/gitea web --custom-path /var/lib/gitea/custom --config /var/lib/gitea/custom/conf/app.ini
```
### Organizations: ### Organizations:
@ -84,6 +86,8 @@ I was promptly told to use css and my request was closed: https://github.com/go-
This theme hides Organizations using CSS, you can find it at the bottom of the theme: This theme hides Organizations using CSS, you can find it at the bottom of the theme:
#dashboard-repo-list > div > div:first-child { ```css
display: none !important; #dashboard-repo-list > div > div:first-child {
} display: none !important;
}
```