"initial" commit :D

This commit is contained in:
Thomas Ruoff
2018-04-03 23:17:34 +02:00
commit ed3d2e04b9
15 changed files with 484 additions and 0 deletions

19
settings.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
#font="-*-fixed-medium-*-*-*-12-*-*-*-*-*-*-*"
font="DejaVu Sans Mono for Powerline:pixelsize=11"
# default
fgcolor="#eee8d5"
bgcolor="#002b36"
active="#b58900"
activeOnMontior="2aa198"
notempty="#fdf6e3"
notused="#657b83"
urgent="#dc322f"
function uniq_linebuffered() {
awk -W interactive '$0 != l { print ; l=$0 ; fflush(); }' "$@"
}