Install fbterm via your favorite package manager
pacman -S fbterm| #!/usr/bin/env bash | |
| ### build_shibbolethsp --- compile ShibbolethSP plugin on Solaris | |
| ## Copyright (c) 2013 New York University | |
| ## | |
| ## Authors: Zachary Elliott <zach@nyu.edu> | |
| ## URL: https://gist.github.com/zellio/5886730 | |
| ## Version: 1.0.5 |
| ;============================================================================= | |
| ; CMake - Cross Platform Makefile Generator | |
| ; Copyright 2000-2009 Kitware, Inc., Insight Software Consortium | |
| ; | |
| ; Distributed under the OSI-approved BSD License (the "License"); | |
| ; see accompanying file Copyright.txt for details. | |
| ; | |
| ; This software is distributed WITHOUT ANY WARRANTY; without even the | |
| ; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
| ; See the License for more information. |
| ;;; go-mode.el --- Major mode for the Go programming language | |
| ;; Copyright 2013 The Go Authors. All rights reserved. | |
| ;; Use of this source code is governed by a BSD-style | |
| ;; license that can be found in the LICENSE file. | |
| (require 'cl) | |
| (require 'ffap) | |
| (require 'url) |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| ### orjf --- Oracle Java RPM Fixer | |
| ## Copyright (c) 2014 Zachary Elliott | |
| ## | |
| ## Authors: Zachary Elliott <zach@nyu.edu> | |
| ## URL: | |
| ## Version: 0.1.0 |
| #!/usr/bin/env bash | |
| bl_dir='/sys/class/backlight/intel_backlight/' | |
| bl_dev="$bl_dir/brightness" | |
| bl_index='/var/acpi/backlight/index' | |
| max_brightness="$(<"${bl_dir}/max_brightness")" | |
| min_brightness=82 | |
| min_index=0 |
| LoadModule actions_module modules/mod_actions.so | |
| LoadModule fastcgi_module modules/mod_fastcgi.so | |
| LoadModule rewrite_module modules/mod_rewrite.so | |
| FastCgiIpcDir /var/run/php-fpm/ipc | |
| FastCgiExternalServer /var/run/php-fpm/fcgi -appConnTimeout 3 -user apache \ | |
| -group apache -idle-timeout 10 -pass-header Authorization \ | |
| -socket /var/run/php-fpm/socket |
| #!/usr/bin/env sh | |
| set -f | |
| function error { | |
| echo -en "\e[1;31m>>> ERROR: " | |
| echo -en $1 | |
| echo -e "\e[0m " | |
| } | |
| # Maintainer: Alan Brault <extrarius.aur@incruentatus.net> | |
| # Contributor: Thomas Dziedzic < gostrc at gmail > | |
| pkgname=yum-utils | |
| pkgver=1.1.31 | |
| pkgrel=2 | |
| pkgdesc="A collection of utilities and plugins extending and supplementing yum in different ways." | |
| arch=('any') | |
| license=('GPLv2') | |
| url="http://yum.baseurl.org/wiki/YumUtils" |