This file contains hidden or 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 python3 | |
#This is https://github.com/rushter 's python socks server | |
#Tweaked by https://github.com/cybiere to forward to a SSH server | |
#via Fabric https://github.com/fabric/fabric | |
#to act as ssh -D | |
import logging | |
import select | |
import socket | |
import struct |
This file contains hidden or 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.font: xft:DejaVu Sans Mono for Powerline:size=12 | |
URxvt.letterspace: -2 | |
URxvt.scrollBar: false | |
URxvt.utf8: true | |
URxvt.locale: true | |
URxvt.keysym.S-Home : \033[1;2H | |
URxvt.keysym.S-End : \033[1;2F | |
URxvt.keysym.M-Up : \033[1;3A | |
URxvt.keysym.M-Down : \033[1;3B |