I hereby claim:
- I am mmueller on github.
- I am mmueller (https://keybase.io/mmueller) on keybase.
- I have a public key ASDWvGmsEouJwKrSYBEb6yQc_E38VfPppQ6155E6AkzcOQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # | |
| # This script wraps git, so install it somewhere such as ~/bin where | |
| # it will be found by your shell before the actual git executable. | |
| set -e | |
| # Extract the command from a git command line | |
| function get_command { | |
| while [[ "$1" =~ ^- ]]; do |
| #!/usr/bin/env python | |
| import os | |
| import time | |
| BACKLIGHT = 'nvidia_backlight' | |
| DELAY = 0.2 | |
| def get_value(name): | |
| path = os.path.join('/sys/class/backlight', BACKLIGHT, name) |
| #!/usr/bin/env python | |
| # | |
| # Copyright 2009 Empeeric LTD. All Rights Reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # |