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
#extension GL_OES_standard_derivatives : enable | |
precision highp float; | |
uniform float time; | |
uniform vec2 mouse; | |
uniform vec2 resolution; | |
void main( void ) { |
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
echo "Written by Nathaniel J Stenzel (https://github.com/nathanielstenzel) on November 14, 2022." | |
chmod +x $1 | |
./$1 --appimage-extract *.desktop | |
sed -i "s/Exec=.*/Exec=$1 %f/g" squashfs-root/*.desktop | |
mv squashfs-root/*.desktop /usr/share/applications | |
grep "Exec=" squashfs-root/*.desktop | |
rm squashfs-root -R | |
mv $1 /usr/local/bin | |
echo "Notice: The Exec line may need to be changed!" | |
echo "Look for the .desktop file that was just mentioned in /usr/share/applications." |
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
#Written by Nathaniel J Stenzel on February 4, 2020 | |
#The purpose of this is to scale up gcode after it is already sliced | |
#You can find a copy of this script at https://gist.github.com/nathanielstenzel/2400c1a1f9cd7b137281b7a68c31f08f | |
import sys | |
xscale = yscale = zscale = escale = 100.0 | |
params = {} | |
for param in ["xscale","yscale","zscale","escale"]: | |
params[param] = locals()[param] |