This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for phy in $(find /sys/kernel -name 'phy[0-9]'); do | |
(cd $phy | |
l=2500 | |
h=5000 | |
echo 0 $l $h > "$phy/aql_txq_limit" | |
echo 1 $l $h > "$phy/aql_txq_limit" | |
echo 2 $l $h > "$phy/aql_txq_limit" | |
echo 3 $l $h > "$phy/aql_txq_limit" | |
echo 8000 > "$phy/aql_threshold" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## setup auto-unlock LUKS2 encrypted root on Fedora/Silverblue/maybe others | |
## This is a backup version from Universal Blue | |
set -eou pipefail | |
[ "$UID" -eq 0 ] || { echo "This script must be run as root."; exit 1;} | |
echo "WARNING: Do NOT use this if your CPU is vulnerable to faulTPM!" | |
echo "All AMD Zen2 and Zen3 Processors are known to be affected!" | |
echo "All AMD Zen1 processors are also likely affected, with Zen4 unknown!" |
Used bazzite-arch
image
To be able to use gamescope, use the options suggested in 89luca89/distrobox#451 (comment)
distrobox create -n bazzite -i ghcr.io/ublue-os/bazzite-arch:latest --init-hooks "install -o 1000 -g 1000 -d /tmp/.X11-unix-new; mount --bind /tmp/.X11-unix-new /tmp/.X11-unix"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Tension X,Y,Z axis: https://www.youtube.com/watch?v=MV-rbU5Fpfc | |
* Check that the extruder screw has the right tension: https://www.youtube.com/watch?v=8bACUeH6WDs | |
* Check that all screws are tightened | |
* Level the X axis, use two glue sticks on both sides of print bed to determine if the X axis is leveled: https://www.youtube.com/watch?v=Cmwq9r5tePk | |
* Use the "paper test" to set the Z offset (run G1 Z0 F300 on the printer to position the hotend to the lowest position on the print bed) | |
* Use fine tuning to find the right Z offset | |
* Print the modified spool holder for added stability: https://www.thingiverse.com/thing:6631744 | |
* Print the Z axis gantry support for added stability: https://www.thingiverse.com/thing:6516352 | |
* Lubricate X,Y,Z axis with lithium grease | |
* Print first layer test. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
config, | |
pkgs, | |
options, | |
... | |
}: let | |
hostname = "oatman-pc"; # to alllow per-machine config | |
in { | |
networking.hostName = hostname; |
Currently Marlin Version - 2.1.2.2
Warning
Marlin binaries are created from official Marlin pre configuration repository, use at your own risk. Review compilation badge for succesfully build!!!
Suggested to take the config files and compile yourself, compilation guide.
Tip
From the next list of brand/printers/configurations:
- the first part shows the complilation process status, if you see passing the compilation was ok... if you see failing the compilation had issues
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cura V3KE Thumbnail creator | |
# Kolio ([email protected]) | |
# | |
# This only works with Cura 5.0+ | |
import base64 | |
from UM.Logger import Logger | |
from cura.Snapshot import Snapshot | |
from PyQt6.QtCore import QByteArray, QIODevice, QBuffer |
NewerOlder