Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thatonecalculator/misskey-patches
Patches for my Misskey instance
https://github.com/thatonecalculator/misskey-patches
misskey misskey-client
Last synced: 25 days ago
JSON representation
Patches for my Misskey instance
- Host: GitHub
- URL: https://github.com/thatonecalculator/misskey-patches
- Owner: ThatOneCalculator
- License: mit
- Created: 2022-02-15T03:37:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-11T09:26:27.000Z (almost 2 years ago)
- Last Synced: 2024-04-21T00:10:36.552Z (7 months ago)
- Topics: misskey, misskey-client
- Language: HTML
- Homepage: https://stop.voring.me
- Size: 2.38 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# misskey-patches
The patches used on https://stop.voring.me- Favicon/icon
- Default menu items
- Default emojis
- Turn off new note sound
- Search syntax URL
- Images (error/info/unknown user)
- Signup screen message
- Custom error screen
- MOTD (Thank you [PikaDude!](https://github.com/PikaDude))
- Star is like (Made by [Johann150](https://github.com/Johann150))
- Random icon on loading screen### Usage:
```
cd misskey
git clone https://github.com/ThatOneCalculator/misskey-patches/ patches
ln -s ./patches/make.sh ./make.sh
./make.sh
```#### Custom error screen
If you're using the default Misskey nginx config, place this ***before*** `location /`:
```
error_page 502 /502.html;
location = /502.html {
root /home/misskey/misskey/patches; # Path to patches folder
internal;
}
```
###### Thank you Sandafied#2973 for the help with this 💚