Replaced set-lockscreen by the new version of set-wallpaper (modified), and many more but not that significant changes

This commit is contained in:
Gu://em_ 2025-02-09 21:07:10 +01:00
parent 3a293cf0f3
commit 6e4c3bb974
14 changed files with 70 additions and 18 deletions

13
.local/bin/rust-quick-run.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
# Compiles and run a single rust file while keeping a clean directory
if [ ! -e "$1" ]; then
echo "'$1': No such file or directory"
else
rustc $1 -o a.out
if [ $? == 0 ]; then
./a.out
rm a.out
fi
fi