This file contains 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
################################ | |
#### Gruvbox Material Light #### | |
################################ | |
set $bg #fbf1c7 | |
set $fg #654735 | |
set $red #c14a4a | |
set $orange #c35e0a | |
set $green #6c782e | |
set $blue #45707a | |
set $purple #945e80 |
This file contains 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
#zenburn | |
set $bg #2c2c2e | |
set $fg #9f9f9f | |
set $hi #efef8f | |
set $ac #a0afa0 | |
set $tx #040404 | |
set $ia #8f8f8f | |
set $be #8faf9f | |
set $yw #ccdc90 | |
set $gn #88b090 |
This file contains 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 os | |
import shlex | |
import subprocess | |
sink = open('/dev/null', 'w') | |
def convert_book(input, output): | |
subprocess.call("ebook-convert" + " " + input + " " + output, shell=True, stdout=sink, stderr=sink) | |
This file contains 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 | |
xrandr.sh | |
sxhkd & | |
xcompmgr & | |
$HOME/bin/panel & | |
bspc monitor LVDS-1 -d 1 2 3 4 5 | |
bspc monitor HDMI-2 -d 6 7 8 9 0 |