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
| <?xml version='1.0'?> | |
| <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
| <fontconfig> | |
| <match target="font" > | |
| <edit mode="assign" name="rgba" > | |
| <const>rgb</const> | |
| </edit> | |
| </match> | |
| <match target="font" > | |
| <edit mode="assign" name="hinting" > |
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 System.Exit | |
| import IO | |
| import qualified Data.Map as M | |
| import qualified XMonad.StackSet as W | |
| import XMonad.Hooks.DynamicLog | |
| import XMonad.Hooks.ManageDocks |
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
| set -g message-bg black | |
| set -g message-fg white | |
| set -g prefix ^a | |
| set -g status-left '#[fg=red]//' | |
| set -g status-right '#[fg=white]#(acpi -b | grep -o ...% | sed "s/ //g") #[fg=red][#[fg=white]%I:%M#[fg=red]] #[fg=white]#(acpi -t | grep -o "..... degrees C" | sed "s/ //g" | sed "s/degreesC/#[fg=red]°/g") #S' | |
| setw -g window-status-format "#W(#I#F)" | |
| setw -g window-status-current-format "#[fg=white]#W#[fg=red](#[fg=white]#I#F#[fg=red])" | |
| set -g status-bg black | |
| set -g status-fg red | |
| setw -g monitor-activity on |
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
| # | |
| # weechat.conf -- weechat v0.3.4-dev | |
| # | |
| [debug] | |
| [startup] | |
| command_after_plugins = "" | |
| command_before_plugins = "" | |
| display_logo = on |
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
| #!/bin/sh | |
| # Shell script to start Vim with less.vim. | |
| # Read stdin if no arguments were given. | |
| if test -t 1; then | |
| if test $# = 0; then | |
| vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' - | |
| else | |
| vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' "$@" | |
| fi |
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 System.Exit | |
| import IO | |
| import qualified Data.Map as M | |
| import qualified XMonad.StackSet as W | |
| import XMonad.Hooks.DynamicLog | |
| import XMonad.Hooks.ManageDocks |
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 python | |
| # vim : set filetypeencoding=utf8 | |
| fStrings=[] | |
| bStrings=[] | |
| def line(a, b, c): | |
| if c == 0: return ' '.join(fStrings[a:b]) | |
| elif c == 1: return ' '.join(bStrings[a:b]) |
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
| *foreground: #acacab | |
| *background: #1a1a1a | |
| *color1: #707070 | |
| *color2: #808080 | |
| !*color3: #949480 | |
| *color3: #eeeeee | |
| *color4: #a0a0a0 | |
| *color5: #b0b0b0 | |
| *color6: #c0c0c0 | |
| *color7: #d0d0d0 |
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
| *background: #1a1a1a | |
| !*foreground: #acacab | |
| !*color2: #b6e77d | |
| *color3: #dbbb4b | |
| *color5: #75507b | |
| *color7: #f2f2f2 | |
| *color10: #9ead72 | |
| !*color10: #8fdf69 | |
| !*color13: #ad7fa8 | |
| !*color13: #aa5aba |
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
| ################# | |
| # Ugly Ass Code # | |
| ################# | |
| autoload colors zsh/terminfo | |
| if [[ "$terminfo[colors]" -ge 8 ]]; then | |
| colors | |
| fi | |
| for color in red green yellow blue magenta cyan white; do | |
| eval col_$color='%{$terminfo[bold]$fg[${(L)color}]%}' | |
| eval col2_$color='%{$fg[${(L)color}]%}' |
NewerOlder