THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
#!/bin/bash | |
cd /home/minetest/.minetest/worlds/ | |
for j in $(ls); do | |
echo /home/minetest/.minetest/worlds/$j | |
cd /home/minetest/.minetest/worlds/$j | |
rm -rf players-tmp | |
mv players players-tmp | |
mkdir players |
# moved to https://github.com/jabbalaci/Linux-Voice-issues |
* { | |
font-size: 12pt; | |
font-family: monospace; | |
font-weight: normal; | |
font-style: normal; | |
text-decoration: none; | |
color: black; | |
cursor: default; | |
} |
#!/bin/bash | |
# Copyright (c) 2015 Calinou | |
# CC0 1.0 Universal | |
# <https://creativecommons.org/publicdomain/zero/1.0/> | |
update() { | |
for d in "$@"; do | |
test -d "$d" -a \! -L "$d" || continue | |
cd "$d" |
#!/bin/bash | |
# Copyright (c) 2015 Calinou | |
# CC0 1.0 Universal | |
# <https://creativecommons.org/publicdomain/zero/1.0/> | |
update() { | |
for d in "$@"; do | |
test -d "$d" -a \! -L "$d" || continue | |
cd "$d" |
#! /usr/bin/env python | |
from gimpfu import * | |
import commands | |
import glob | |
import os | |
import string | |
import subprocess | |
suffixes = (['diffuse', '_d'], ['specular', '_s'], ['normal', '_n'], ['height', '_h'], \ |
# GodotLogger by Spooner | |
# ====================== | |
# | |
# logger.gd is a simple logging system. It allows for more formatted logging, | |
# logging levels and logging to a file. | |
# | |
# Installation | |
# ------------ | |
# | |
# Place this file somewhere (for example, 'res://root/logger.gd') |
function transfer | |
if test (count $argv) -eq 0 | |
echo "No arguments specified. Usage:\necho transfer /tmp/test.md\ncat /tmp/test.md | transfer test.md" | |
return 1 | |
end | |
## get temporarily filename, output is written to this file show progress can be showed | |
set tmpfile ( mktemp -t transferXXX ) | |
## upload stdin or file |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
#!/bin/bash | |
###### Options ###### | |
MINETESTDIR=/home/username/minetest | |
GAMENAME=minetest_game | |
WORLDDIR=none | |
MEDIADIR=./media | |
LEGACY_SYMLINKS=0 | |
# When settings this up be aware that the Minetest client |