Compare commits

...

3 commits

3 changed files with 19 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 KiB

View file

@ -12,7 +12,7 @@
# Enable sytling using stylix
stylix.enable = true;
stylix.autoEnable = true;
stylix.image = ./tokyonight.png;
stylix.image = ./rose-pine.png;
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
# Change Cursor

View file

@ -19,3 +19,21 @@ if echo "$files" | grep -i ".php" >> /dev/null; then
fi
done
fi
# Delete all shell scripts that make direct mention of my upfast instance
if echo "$files" | grep -i ".sh" >> /dev/null; then
for file in $(echo "$files" | grep -i ".sh"); do
if curl -s "$instance/files/$file" | grep -i "upfast.cronyakatsuki.xyz/files" >> /dev/null; then
echo "Found payload, deleting file $file"
curl -X DELETE "$instance/files/$file"
fi
done
fi
# Delete kernel object files
if echo "$files" | grep -iE ".*.ko" >> /dev/null; then
for file in $(echo "$files" | grep -iE ".*.ko"); do
echo "Deleting file $file"
curl -X DELETE "$instance/files/$file"
done
fi