Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- # randCol
- red=$(( ( RANDOM % 255 ) + 0 ))
- green=$(( ( RANDOM % 255 ) + 0 ))
- blue=$(( ( RANDOM % 255 ) + 0 ))
- color=$(color_decoder $red $green $blue)
- cp ~/.config/i3/config_raw ~/.config/i3/config
- echo "client.focused $color $color #440000 #000000" >> ~/.config/i3/config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement