I hereby claim:
- I am matmunn on github.
- I am matmunn (https://keybase.io/matmunn) on keybase.
- I have a public key whose fingerprint is 4CF3 ED16 DAB0 0008 4149 3102 6E21 6698 DCA5 5DCE
To claim this, I am signing this object:
#!/usr/bin/bash | |
OUTPUTDEV=`cat ~/.bin/sound_device` | |
INPUTS=($(pacmd list-sink-inputs | grep index | awk '{print $2}')) | |
if [ $OUTPUTDEV = "Speakers" ] | |
then | |
# Persist the changes in our file | |
OUTPUTDEV="Headset" | |
echo $OUTPUTDEV > ~/.bin/sound_device |
#!/bin/bash | |
## | |
# File: | |
# nginx_modsite | |
# Description: | |
# Provides a basic script to automate enabling and disabling websites found | |
# in the default configuration directories: | |
# /etc/nginx/sites-available and /etc/nginx/sites-enabled | |
# For easy access to this script, copy it into the directory: |
I hereby claim:
To claim this, I am signing this object:
conky.config = { | |
alignment='top_left', | |
background=true, | |
border_width=1, | |
cpu_avg_samples=2, | |
default_color='black', | |
default_outline_color='white', | |
default_shade_color='white', | |
double_buffer=true, | |
draw_borders=false, |
import re, string | |
global english, letters | |
letters = list(string.ascii_uppercase) | |
def without_nls(item): | |
for line in range(len(item)): | |
item[line] = item[line].rstrip('\n').upper() | |
return item |