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
# ~/.kde/share/apps/color-schemes/Solarized.colors | |
[ColorEffects:Disabled] | |
Color=56,56,56 | |
ColorAmount=0 | |
ColorEffect=0 | |
ContrastAmount=0.65 | |
ContrastEffect=1 | |
IntensityAmount=0.1 | |
IntensityEffect=2 |
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
# these settings make the trackpoint scroll horizontally and vertically when the middle button is pressed | |
/usr/bin/xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation" 1 | |
/usr/bin/xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Button" 2 | |
/usr/bin/xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Axes" 6 7 4 5 | |
/usr/bin/xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Timeout" 150 | |
/usr/bin/xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Middle Button Timeout" 50 |
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/ksh | |
## configuration | |
CHROOT=$HOME/sid-debootstrap | |
USER=rsdy | |
USER_HOME=/home/$USER | |
WORKDIR=$USER_HOME/build | |
TERM=rxvt-unicode | |
PATH_EXTEND='$HOME/.cabal/bin' | |
BIND_LIST="/dev /proc /sys" |
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
{{{ | |
╻ ╻╻ ╻╻ ╻ | |
┃╻┃┣━┫┗┳┛ | |
┗┻┛╹ ╹ ╹ | |
┏━┓╻ ╻╺┳╸╻ ╻┏━┓┏┓╻ | |
┣━┛┗┳┛ ┃ ┣━┫┃ ┃┃┗┫ | |
╹ ╹ ╹ ╹ ╹┗━┛╹ ╹ | |
┏━┓╻ ╻┏━╸╻┏ ┏━┓ | |
┗━┓┃ ┃┃ ┣┻┓┗━┓ | |
┗━┛┗━┛┗━╸╹ ╹┗━┛ |
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
au! BufRead,BufNewFile *.prez setfiletype prez |
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
URxvt*termName: rxvt-256color | |
URxvt.font: xft:Envy Code R:size=8 | |
URxvt*scrollBar: false | |
URxvt*urllauncher: /usr/bin/firefox | |
URxvt*urlLauncher: /usr/bin/firefox | |
URxvt*matcher.button: 3 | |
URxvt*saveLines: 8192 | |
URxvt.perl-ext-common:default,matcher | |
URxvt*cursorColor: #d8d8d8 |
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
[Midnight-Commander] | |
skin=nicedark | |
[Colors] | |
base_color=brightgreen,black:normal=brightred,default:selected=black,brightred:markselect=white,gray:bbarhotkey=brightred,black:menusel=brighred,default:menuhot=magenta,default: |
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
#!/usr/bin/env python | |
# | |
# Example output: | |
# | |
# > testing mapped version | |
# 0.015753 usec/pass | |
# > waiting 1.0s | |
# > testing rebound version | |
# 0.025296 usec/pass | |
# |
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 | |
LOG=/tmp/mac | |
WIRELESS=wlan0 | |
WIRED=eth0 | |
mac_map() { | |
case "x$1" in | |
xfixed) mac='11:22:33:44:55:66' | |
;; |