Compare commits

..

No commits in common. "6d0f7e97623283628c8863ad5ebaef11a59e24f2" and "1cdffa967eea30a7947fea23e665fc1e68ffbf58" have entirely different histories.

19 changed files with 3 additions and 12 deletions

View File

@ -1,6 +0,0 @@
#!/bin/sh
[ -d dist ] && rm -r dist
mkdir dist
shblg -i site -o dist

View File

@ -13,8 +13,7 @@ If you do not trust this guide or need any clarification, feel free to follow st
## Prerequisites
Make sure that your motherboard:
Make sure that your motherboard is:
- supports hardware virtualisation
- supports IOMMU
@ -232,9 +231,7 @@ In `/etc/security/limits.d/99-memlock.conf` write:
@kvm hard memlock 8100452
@kvm soft memlock 8100452
You may need to re-login for these changes to take effect, especially ones relating to udev rules.
*Busybox doesn't support these configurations for its /bin/login, so use shadow's /bin/login (on alpine you need the package `shadow-login`)*
You may need to reboot for these changes to take effect, especially ones relating to udev rules.
### Using ddcutil to switch between monitor inputs

View File

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

2
new.sh
View File

@ -5,7 +5,7 @@ TEMPFILE=/tmp/blog_entry.md
$EDITOR $TEMPFILE
NAME=site/entries/$(head -1 $TEMPFILE | cut -d" " -f2- | tr " " "-" | tr "[:upper:]" "[:lower:]").html
NAME=entries/$(head -1 $TEMPFILE | cut -d" " -f2-).html
cp $TEMPFILE "$NAME"
rm $TEMPFILE