This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Use Xvfb to open a xonotic client and take 9 screenshots | |
# [email protected] | |
export DISPLAY=:1.0 | |
# Customize | |
DIMENSIONS=1920x1080 | |
XONOTIC_DIR=~/.xonotic/ | |
XONOTIC_GAME=data_dl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# name: gource.sh | |
# version: 0.2.0 | |
# A convenience wrapper for visualizing Xonotic's git commits via gource. | |
# Copyright 2018 Tyler "-z-" Mulligan ([email protected]), MIT License | |
# Requires gource: https://github.com/acaudwell/Gource and GNU's sed | |
# [!] This script expects to live in xonotic's misc/tools directory | |
set -e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Updates for Blender 2.6X by Derek McPherson | |
# Credits: https://forums.duke4.net/topic/5358-blender-27-md3-export-script/ | |
bl_info = { | |
"name": "MD3 (+shaders)", | |
"author": "Derek McPherson, Xembie, PhaethonH, Bob Holcomb, Damien McGinnes, Robert (Tr3B) Beckebans", | |
"version": (1,6),# March the twenty first, twenty twelve. | |
"blender": (2, 6, 2), | |
"api": 36991, | |
"location": "File > Export > Quake Model 3 (.md3)", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# name: encode-demos.sh | |
# version: 0.6.2 | |
# author: Tyler "-z-" Mulligan <[email protected]> | |
# license: GPL & MIT | |
# date: 26-02-2017 | |
# description: headless encoding of demo files to HD video concurrently with Xfvb and parallel | |
# | |
# The encoding is done with a full Xonotic client inside Xfvb. | |
# parallel is acting as a job queue. |