vitorpy's Dotfiles

Add wofi config with zenburn theme colors

vitorpy 45da07eb a9f954bc

+71
+15
private_dot_config/wofi/config
···
··· 1 + width=600 2 + height=400 3 + location=center 4 + show=drun 5 + prompt=Launch 6 + filter_rate=100 7 + allow_markup=true 8 + no_actions=true 9 + halign=fill 10 + orientation=vertical 11 + content_halign=fill 12 + insensitive=true 13 + allow_images=true 14 + image_size=40 15 + gtk_dark=true
+56
private_dot_config/wofi/style.css
···
··· 1 + /* Zenburn theme for wofi */ 2 + 3 + window { 4 + margin: 0px; 5 + border: 2px solid #8faf9f; 6 + background-color: #3f3f3f; 7 + border-radius: 10px; 8 + } 9 + 10 + #input { 11 + margin: 5px; 12 + padding: 8px; 13 + border: none; 14 + border-radius: 5px; 15 + color: #dcdccc; 16 + background-color: #2b2b2b; 17 + font-size: 14px; 18 + } 19 + 20 + #inner-box { 21 + margin: 5px; 22 + border: none; 23 + background-color: #3f3f3f; 24 + } 25 + 26 + #outer-box { 27 + margin: 5px; 28 + border: none; 29 + background-color: #3f3f3f; 30 + } 31 + 32 + #scroll { 33 + margin: 0px; 34 + border: none; 35 + } 36 + 37 + #text { 38 + margin: 5px; 39 + border: none; 40 + color: #dcdccc; 41 + } 42 + 43 + #entry:selected { 44 + background-color: #5f7f5f; 45 + border-radius: 5px; 46 + } 47 + 48 + #entry:selected #text { 49 + color: #ffffff; 50 + font-weight: bold; 51 + } 52 + 53 + #entry:hover { 54 + background-color: #506070; 55 + border-radius: 5px; 56 + }