Replaced set-lockscreen by the new version of set-wallpaper (modified), and many more but not that significant changes
This commit is contained in:
parent
3a293cf0f3
commit
6e4c3bb974
14 changed files with 70 additions and 18 deletions
13
.local/bin/rust-quick-run.sh
Executable file
13
.local/bin/rust-quick-run.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue