Created
September 22, 2013 19:05
-
-
Save cirrusUK/6662782 to your computer and use it in GitHub Desktop.
bash script for changing colours in dmenu
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 | |
font=-'-*-envy code r-medium-r-normal-*-12-*-*-*-*-*-*-*' | |
background='#000000' | |
foreground='#497BF7' | |
selectedBackground='#497BF7' | |
selectedForeground='#FFFFFF' | |
$(dmenu_path | dmenu_run -b -fn $font -nb $background -nf $foreground -sb $selectedBackground -sf $selectedForeground) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment