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.scrollBar: false | |
| urxvt.font: xft:inconsolata:size=11 | |
| urxvt.boldFont: xft:inconsolata:size=11 | |
| urxvt.cursorColor: #7F7F7F | |
| Xft.hintstyle: hintfull | |
| Xft.hinting: true | |
| Xft.antialias: true | |
| Xft.rgba: rgb |
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
| dirtyFrameHack = function() { | |
| $("a").unbind("click"); | |
| return $("a").click(function(e) { | |
| var href; | |
| href = $(this).attr("href"); | |
| if (!~href.indexOf("#")) { | |
| window.open(href); | |
| return false; | |
| } | |
| }); |
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
| from libqtile.manager import Key, Screen, Drag, Group | |
| from libqtile.command import lazy | |
| from libqtile import layout, bar, widget, hook | |
| mod = "mod1" | |
| win = "mod4" | |
| # Keybinds: Key([modifiers], "key", action()) | |
| keys = [ | |
| Key([mod], "space", lazy.nextlayout()), |
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
| -- | |
| -- File : ~/.xmonad/xmonad.hs (for Xmonad >= 0.9) | |
| -- Adapted by: Bob Reynders | |
| -- Author : Thayer Williams | |
| -- Website : http://cinderwick.ca/ | |
| -- Desc : A simple, mouse-friendly xmonad config geared towards | |
| -- netbooks and other low-resolution devices. | |
| -- | |
| -- dzen is used for statusbar rendering, with optional mouse | |
| -- integration provided by xdotool: |
NewerOlder