Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
Created September 22, 2013 19:05
Show Gist options
  • Save cirrusUK/6662782 to your computer and use it in GitHub Desktop.
Save cirrusUK/6662782 to your computer and use it in GitHub Desktop.
bash script for changing colours in dmenu
#!/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