This file contains hidden or 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
" Vim global plugin for automatin response to swapfiles (from autoswap_mac.vim from Damian Conway) | |
" Last Change: 2013 Dec 25 | |
" Maintainer: Constantin Runge <[email protected]> | |
" License: other | |
if exists("loaded_autoswap") | |
finish | |
endif | |
let loaded_autoswap = 1 |
This file contains hidden or 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 | |
mcdir="$HOME/.minecraft" | |
downloader="wget --no-check-certificate -q -O" | |
os="linux" | |
natives="libjinput-linux libjinput-linux64 liblwjgl liblwjgl64 libopenal libopenal64" | |
echo "Determining installed LWJGL version..." | |
installed="$(unzip -p $mcdir/bin/lwjgl.jar | strings | grep '^[0-9]*\.[0-9]*\.[0-9]*')" | |
echo "LWJGL $installed installed" |