summaryrefslogtreecommitdiff
path: root/attic
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2023-11-10 19:24:56 -0500
committerAndrew Opalach <andrew@akon.city> 2023-11-12 20:04:01 -0500
commitacd44bb898996ff4e36b39b10e870e40bcaf2634 (patch)
treefa452ee2e583566a4fd28a4ac204cf62a9a1a0bc /attic
parentf1a9751af6cc6aa0bac91e7f28fc43b1a4cb64fd (diff)
downloadmauri-acd44bb898996ff4e36b39b10e870e40bcaf2634.tar.gz
mauri-acd44bb898996ff4e36b39b10e870e40bcaf2634.tar.bz2
mauri-acd44bb898996ff4e36b39b10e870e40bcaf2634.zip
One last push
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'attic')
-rwxr-xr-xattic/line_count.sh2
-rwxr-xr-xattic/random.sh30
2 files changed, 0 insertions, 32 deletions
diff --git a/attic/line_count.sh b/attic/line_count.sh
deleted file mode 100755
index dbc74af..0000000
--- a/attic/line_count.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-find ./src -type f | xargs wc -l
diff --git a/attic/random.sh b/attic/random.sh
deleted file mode 100755
index f6cb285..0000000
--- a/attic/random.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-
-BUILD_DIR=build-release2
-WALLPAPERS_PATH=workshop_wallpapers_3-12-23
-
-export mesa_glthread=true
-
-if [[ $1 == "audio" ]]
-then
- while : ; do
- DIR=$(find $WALLPAPERS_PATH -maxdepth 1 -type d | shuf -n 1)
- RES=$(cat $DIR/project.json | jq '.["general"]["supportsaudioprocessing"]')
- [[ "$RES" == 'null' || "$RES" == 'false' ]] || break
- done
-elif [[ $1 == "safe" ]]
-then
- while : ; do
- DIR=$(find $WALLPAPERS_PATH -maxdepth 1 -type d | shuf -n 1)
- RES=$(cat $DIR/project.json | jq '.["contentrating"]')
- [[ "$RES" == 'null' || "$RES" != '"Everyone"' ]] || break
- done
-else
- DIR=$(find $WALLPAPERS_PATH -maxdepth 1 -type d | shuf -n 1)
-fi
-
-echo $DIR
-
-cd $BUILD_DIR
-./mauri ../$DIR/scene.pkg
-cd ..