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
bl_info = { | |
"name": "Load Shape Key Values", | |
"blender": (3, 0, 0), | |
"category": "Object", | |
"location": "Object Data Properties > Shape Key Specials", | |
"description": "Load, save and reset shape key values", | |
} | |
import bpy, json | |
from bpy_extras.io_utils import ImportHelper, ExportHelper |
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
bl_info = { | |
"name": "Remove Unused Shape Keys", | |
"blender": (2, 80, 0), | |
"category": "Object", | |
} | |
import bpy | |
import numpy as np | |
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 | |
# | |
# Usage: hibernate-vm NAME | |
# | |
# Hibernates the VM specified in NAME and waits for it to finish shutting down | |
# | |
if virsh dompmsuspend "$1" disk; then | |
echo "Waiting for domain to finish shutting down.." >&2 |
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/sh | |
# Based on https://gist.github.com/thrimbor/67d109004db28820bf918c8ac80f75d2 | |
# BEFORE RUNNING THIS, go into the game's properties in steam and set "Force the use of a specific Steam Play compatability tool" to "Proton 4.2-9". Other versions may work as well, but that's what worked for me. | |
# Also click "SET LAUNCH OPTIONS" and input: WINEDLLOVERRIDES="mscoree=n" %command% | |
# If you have been experimenting with other workarounds to get the game running you might also want to "VERIFY INTEGRITY OF GAME FILES" on the "LOCAL FILES" tab. | |
# Finally in this script change the following line to point to your steamapps directory if it dowsn't already: | |
steamappsDir="$HOME/.local/share/Steam/steamapps" |
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 | |
useColors=true | |
usePager=true | |
usage() { | |
echo "\ | |
Usage: $(basename $0) [OPTIONS] | |
Shows information about IOMMU groups relevant for working with PCI-passthrough |
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
pkgname=compton-mod | |
_gitname=compton | |
pkgver=0.1_beta2.85.ga37cb14 | |
pkgrel=1 | |
pkgdesc="X Compositor (a fork of xcompmgr-dana) (git-version)" | |
arch=(i686 x86_64) | |
url="https://github.com/Roliga/compton" | |
license=('MIT') | |
depends=('libgl' 'libdbus' 'libxcomposite' 'libxdamage' 'libxrandr' 'pcre' 'libconfig' 'libxinerama' 'hicolor-icon-theme') | |
makedepends=('git' 'asciidoc' 'mesa') |