Advertisement
Guest User

randCol

a guest
Feb 24th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.29 KB | None | 0 0
  1. #!/bin/sh
  2. # randCol
  3. red=$(( ( RANDOM % 255 ) + 0 ))
  4. green=$(( ( RANDOM % 255 ) + 0 ))
  5. blue=$(( ( RANDOM % 255 ) + 0 ))
  6.  
  7. color=$(color_decoder $red $green $blue)
  8.  
  9. cp ~/.config/i3/config_raw ~/.config/i3/config
  10. echo "client.focused    $color $color #440000 #000000" >> ~/.config/i3/config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement