Add first pages

This commit is contained in:
Agatha Lovelace 2021-06-29 19:30:42 +03:00
parent 4a30e950d0
commit 2a987334be
No known key found for this signature in database
GPG Key ID: 2DB18BA2E0A80BC3
3 changed files with 137 additions and 0 deletions

25
main/pages/Links.md Normal file
View File

@ -0,0 +1,25 @@
---
title: Links
layout: page.njk
eleventyNavigation:
key: Links
order: -1
---
# Contact
Feel free to DM me anytime. I'm more likely to respond if we've interacted before!
[Telegram](https://t.me/lunarw1tch)
[Matrix](http://matrix.to/#/@AgathaSorceress:lu.gl)
[Discord:]() @aghatt#1312
[Xmpp:]() lunarw1tch@trashserver.net
# My other pages
[Mastodon](https://eldritch.cafe/@AgathaSorceress)
[Not Mastodon](https://twitter.com/Agahat_)
[Bandcamp](https://lunarwitch.bandcamp.com/)
[Steam](https://steamcommunity.com/id/aghatt/)
[Gitea](https://git.lain.faith/sorceress)
[GitHub](https://github.com/AgathaSorceress)
[GitLab](https://gitlab.com/agathasorceress)
[Gemini](gemini://sapphic.pw)

View File

@ -0,0 +1,46 @@
---
title: Violet Meadow
layout: page.njk
---
# Rules
1. Absolutely no racism, xenophobia, classism, queerphobia, transmedicalism, pluralphobia, ableism, sexism or any other kind of discrimination. Especially, slurs.
2. Be mindful of people's triggers and trauma. Use spoilers and content warnings for common triggers or on request. This includes voice/video channels.
3. Lewd jokes and some vague mentions of lewd things are allowed but please don't do anything otherwise lewd here.
4. Please be nice. Nobody likes additional stress, especially in a safe space.
5. No cops or feds allowed. Don't be a bootlicker either.
# Information
## Roles
Roles can be managed [here](https://roleypoly.com/s/844290936942755900)
You can pick multiple roles and you are free to use *any* of them! If you would like to have a pronoun/label role added, feel free to ask me!
The `quietroom` role gives you access to a quieter channel, if the others get too overwhelming!
## Channels
Please keep spammy bot commands to `#beepy-robots`!
To use the music bot, put the song name or link in the `#music-requests` channel while connected to `🔊 illegally copied tapes` and it should start playing!
Most other channels have their topic set to a *(hopefully)* helpful description! Feel free to ask for help anyway!
## Relays
Messages in this server are relayed by Relay Kitten to a Telegram channel and vice versa! Unfortunately, it's only possible to relay the `#main` channel.
In future, there may also be a Matrix relay. Ask me if you would like an invite to the Telegram channel!
## Name Colors
You can use the `s!change #a88fac` command to change your username's color! Replace the *hex color code* with any color you would like to use!
If you would like to reset your username color, use the `s!remove` command. Other commands can be found with `s!help`!
## Pluralkit
This server has PluralKit, which should carry over your existing settings if you've used it before! You can use the `pk;help` command to set up a plural system!
The official [documentation page](https://pluralkit.me/start/) may be helpful!
## Starboard
If you really like a message and think it should be remembered, react with 📌 to copy it to the `#impawtant` channel! The current requirement is 3 📌 reactions.
Feel free to remove the reactions to automatically unpin it!

View File

@ -0,0 +1,66 @@
---
title: Setting up JACK with PulseAudio on ArchLinux
layout: page.njk
eleventyNavigation:
key: Setting up JACK with PulseAudio on ArchLinux
---
Add user to required groups:
```bash
sudo usermod -aG realtime,audio,disk agatha # you might not be agatha
```
Add this to `/etc/security/limits.conf`:
```
@audio - rtprio 95
@audio - memlock unlimited
```
Log out and back in
Install required packages:
```bash
yay -S mpg123 lib32-mpg cadence-git jack2 pulseaudio-jack
```
Build and install wineasio separately
```bash
cd /tmp
git clone https://aur.archlinux.org/wineasio.git
cd wineasio/
makepkg -si
```
Copy the .dll's into the right places. Paths might slightly differ depending on distro and wine version:
```bash
cd src/wineasio-1.0.0/
sudo cp build32/wineasio.dll.so /usr/lib32/wine/i386-unix/wineasio.dll.so
sudo cp build64/wineasio.dll.so /usr/lib/wine/x86_64-unix/wineasio.dll.so
```
Register the .dll for wine32 and wine64:
```bash
regsvr32 /usr/lib32/wine/i386-unix/wineasio.dll.so
wine64 regsvr32 /usr/lib/wine/x86_64-unix/wineasio.dll.so
```
(If you're using FLStudio with wine32 or a different wineprefix, adjust the paths accordingly. Some DAWs might not require this.)
```bash
cp build64/wineasio.dll.so .wine/drive_c/windows/system32/wineasio.dll
cp build64/wineasio.dll.so .wine/drive_c/windows/system32/wineasio.dll.so
```
In Cadence;
* Configure jack settings similar to this
* In main menu, set ALSA Bridge Type to `ALSA → PulseAudio → JACK (Plugin)`
![Engine settings tab: Realtime is checked, Realtime priority is 95. Everything else is default.](https://i.imgur.com/dDAdm1m.png)
![Driver settings tab: ALSA driver selected, with duplex mode on. The input device is the audio interface and the output device is the default audio output. Input and Output channels are both at 0. Sample rate is 44100 and buffer size is 2048. Periods per Buffer are set to 2.](https://i.imgur.com/22O1Lne.png)
Sample rate and buffer size values might need to be adjusted.
In FL Studio audio settings, select WineASIO.
Before starting any DAW that uses WineASIO, remember to start the JACK server through Cadence and don't forget to switch your system audio output to the JACK sink.
![Jack sink (PulseAudio JACK Sink) is selected as audio output in gnome settings.](https://i.imgur.com/E3KwJOs.png)