clean up, remove worthless scripts

This commit is contained in:
opfez 2021-06-18 20:24:53 +02:00
parent 6d6fa42a2e
commit 0de81c34d8
4 changed files with 5 additions and 11 deletions

5
addpkg
View File

@ -1,5 +0,0 @@
#!/bin/sh
for arg; do
echo $arg >> /etc/pkglst/pkgs.txt
done

6
chr
View File

@ -1,6 +0,0 @@
#!/bin/sh
# chromium launcher
# chromium clears my bitmap font from my font cache, so i just reload it
chromium ; fc-cache -fv

View File

@ -1,5 +1,7 @@
#!/bin/sh
# syncs files located in ~/sync with those located in the ~/sync on SERVER
SERVER=10.0.1.36
local_files=$(mktemp)
remote_files=$(mktemp)

View File

@ -1,5 +1,8 @@
#!/bin/sh
# loads the lisp project of the current working directory in a repl and allows for
# connecting to the repl via sly.
if [ `ls | grep *.asd` ]; then
sbcl --eval '(push (truename ".") asdf:*central-registry*)' \
--eval "(ql:quickload :$(basename `pwd`))" \