diff --git a/README.md b/README.md index 9a275ae..74e379d 100644 --- a/README.md +++ b/README.md @@ -7,18 +7,22 @@ decolorize --- Strips ANSI color codes out of a stream -hours ---- -Reports what hours I was at the computer, based on my bash history. On linux, I instead use [keystroked](https://github.com/vanceza/keystroked). - google --- Searches for something on google, opening the results page in the default browser. +hours +--- +Reports what hours I was at the computer, based on my bash history. On linux, I instead use [keystroked](https://github.com/vanceza/keystroked). + last --- Prints the last line from bash's history +lwjgl-fix +--- +On Arch Linux, fix lwjgl.jar in minecraft + owns? --- Checks which Arch Linux package owns a command diff --git a/lwjgl-fix b/lwjgl-fix new file mode 100755 index 0000000..37a84b3 --- /dev/null +++ b/lwjgl-fix @@ -0,0 +1,5 @@ +#!/bin/bash +cd /usr/share/lwjgl +cp jar/jinput.jar jar/lwjgl_util.jar jar/lwjgl.jar ~/.minecraft/bin +cp native/linux/* ~/.minecraft/bin/natives +cd ~