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 | |
| URxvt*buffered: true | |
| URxvt*cursorBlink: true | |
| URxvt*underlineColor: yellow | |
| URxvt*font: xft:inconsolata:size=10:antialias=true | |
| URxvt*depth: 32 | |
| URxvt*borderless: 1 | |
| URxvt*scrollBar: false | |
| URxvt*loginShell: true | |
| Urxvt*secondaryScroll: true # Enable Shift-PageUp/Down in screen | 
  
    
      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
    
  
  
    
  | ssh ubuntu@54.201.196.9 | 
  
    
      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
    
  
  
    
  | import XMonad | |
| import XMonad.Layout.NoBorders | |
| import XMonad.Hooks.DynamicLog | |
| import XMonad.Hooks.ManageDocks | |
| import XMonad.Util.Run(spawnPipe) | |
| import XMonad.Util.EZConfig(additionalKeys) | |
| import System.IO | |
| main = do | |
| xmonad $ defaultConfig { | 
  
    
      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
    
  
  
    
  | !------------------------------------------------------------------------------- | |
| ! Xft settings | |
| !------------------------------------------------------------------------------- | |
| Xft.autohint: 0 | |
| Xft.dpi: 96 | |
| Xft.antialias: 1 | |
| Xft.rgba: rgb | |
| Xft.hinting: true | |
| Xft.hintstyle: hintslight | 
  
    
      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
    
  
  
    
  | Config { font = "-misc-fixed-*-*-*-*-10-*-*-*-*-*-*-*" | |
| , borderColor = "black" | |
| , border = TopB | |
| , bgColor = "black" | |
| , fgColor = "grey" | |
| , position = Top | |
| , lowerOnStart = True | |
| , pickBroadest = False | |
| , persistent = False | |
| , hideOnStart = 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
    
  
  
    
  | import XMonad | |
| import XMonad.Layout.NoBorders | |
| import XMonad.Hooks.DynamicLog | |
| import XMonad.Hooks.ManageDocks | |
| import XMonad.Util.Run(spawnPipe) | |
| import XMonad.Util.EZConfig(additionalKeys) | |
| import System.IO | |
| main = do | |
| xmonad $ defaultConfig { | 
  
    
      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
    
  
  
    
  | Config { | |
| font = "xft:inconsolata:size=12:antialias=true", | |
| -- used to make the bar appear correctly after Mod-q in older xmonad implementations (0.9.x) | |
| -- doesn't seem to do anything anymore (0.10, darcs) | |
| -- lowerOnStart = False, | |
| commands = [ | |
| -- Addison, TX | |
| Run Cpu ["-L","3","-H","50","--normal","green","--high","red"] 10, | |
| Run Memory ["-t","Mem: <usedratio>%"] 10, | |
| Run Swap [] 10, | 
  
    
      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
    
  
  
    
  | Config { font = "-misc-fixed-*-*-*-*-10-*-*-*-*-*-*-*" | |
| , borderColor = "black" | |
| , border = TopB | |
| , bgColor = "black" | |
| , fgColor = "grey" | |
| , position = Top | |
| , lowerOnStart = True | |
| , persistent = False | |
| , hideOnStart = False | |
| , commands = [ Run Network "enp5s0" [] 10 | 
  
    
      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
    
  
  
    
  | (package-initialize) | |
| ;; hide welcome screen | |
| (setq inhibit-splash-screen t) | |
| ;; IDO-mode | |
| (require 'ido) | |
| (ido-mode t) | |
| ;; ;; Flx-ido mode | 
  
    
      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
    
  
  
    
  | clear control | |
| clear mod4 | |
| add control = Control_L Control_R | |
| keycode 134 = Control_R | |
| keycode 133 = Super_R | 
OlderNewer