View pizza
This file contains 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
#!/bin/bash | |
sleep 10m && notify-send -i ~/.icons/warning.svg "⚠⚠⚠ Pizza Is Done ⚠⚠⚠" "Move yer Arse" && echo -e "\a" & |
View age.sh
This file contains 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
#!/bin/bash | |
AGE=$(sudo dumpe2fs $(mount | grep 'on \/ ' | awk '{print $1}') | grep 'Filesystem created:') | |
notify-send -i ~/.icons/info.svg "$AGE" |
View forecast.sh
This file contains 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
#!/bin/bash | |
RAIN=$(~/weatherman -x "Glasgow, United Kingdom") | |
notify-send -i ~/.icons/weather.svg "$RAIN" |
View dmenhue.sh
This file contains 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
#!/bin/sh | |
font=-'-*-envy code r-medium-r-normal-*-12-*-*-*-*-*-*-*' | |
background='#000000' | |
foreground='#497BF7' | |
selectedBackground='#497BF7' | |
selectedForeground='#FFFFFF' | |
$(dmenu_path | dmenu_run -b -fn $font -nb $background -nf $foreground -sb $selectedBackground -sf $selectedForeground) |
View mpdosd.sh
This file contains 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
#!/bin/bash | |
OSD=$(mpc current) | |
notify-send -i ~/.icons/top.png "$OSD" |
View blame.sh
This file contains 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
#!/bin/bash | |
BOOT=$(systemd-analyze) | |
notify-send -i ~/.icons/info.svg "$BOOT" |
View .conkyrc
This file contains 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
# Conky settings # | |
background yes | |
update_interval 0.5 | |
cpu_avg_samples 2 | |
net_avg_samples 2 | |
override_utf8_locale yes | |
double_buffer yes |
View hosts
This file contains 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
# | |
# /etc/hosts: static lookup table for host names | |
# | |
#<ip-address> <hostname.domain.org> <hostname> | |
127.0.0.1 localhost.localdomain localhost | |
::1 localhost.localdomain localhost | |
#Credits .. msmvps.com & someonewhocares.org | |
#**********************************************************# | |
# ---------------- Updated: Sept-16-2013 ---------------- # |
View tv.sh
This file contains 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
#!/bin/bash | |
clear | |
ua="BlackBerry9000/4.6.0.167 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102" | |
username="username from http://tvcatchup.com" #before using this script you will need an acc at http://tvcatchup.com | |
password="password from http://tvcatchup.com" #before using this script you will need an acc at http://tvcatchup.com | |
player="mpv" #can edit to prefered player | |
dati=`wget -U "$ua" --no-check-certificate --save-cookies=cookie.txt -q --keep-session-cookies "http://m.tvcatchup.com" -O-` | |
hash=`echo "$dati" | grep -o "&hash=[^&]*" | cut -d"=" -f2` | |
list=`echo "$dati" | grep -o '<a href="#" onclick="javascript:loadChannel([^)]*' | cut -d'(' -f2 | sed "s#, '#) #g" | sed "s#'##g"` | |
check=`wget -U "$ua" --save-cookies=cookie.txt --load-cookies=cookie.txt --keep-session-cookies --no-check-certificate --header "Content-Type: application/x-www-form-urlencoded; charset=UTF-8" --header "X-Requested-With: XMLHttpRequest" --header "Referer: http://m.tvcatchup.com/" --post-data="username=${username}&hash=${ha |
View tint2rc
This file contains 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
--------------------------------------------- | |
# TINT2 CONFIG FILE | |
#--------------------------------------------- | |
#--------------------------------------------- | |
# BACKGROUND AND BORDER | |
#--------------------------------------------- | |
#panels | |
rounded = 5 | |
border_width = 1 | |
background_color = #1A1A1A 50 |
OlderNewer