Compare commits
3 commits
71f5fd5333
...
859efab6b7
| Author | SHA1 | Date | |
|---|---|---|---|
| 859efab6b7 | |||
| 71efa3d135 | |||
| d49bbb559e |
3 changed files with 19 additions and 1 deletions
BIN
modules/linux/nixos/rose-pine.png
Normal file
BIN
modules/linux/nixos/rose-pine.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 406 KiB |
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue