mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-23 07:21:58 +01:00
added wofi style
This commit is contained in:
parent
1fd9a089b9
commit
74f16fe971
43
roles/wofi/files/style.css
Normal file
43
roles/wofi/files/style.css
Normal file
@ -0,0 +1,43 @@
|
||||
@define-color grey rgba(32, 32, 32, 0.7);
|
||||
@define-color yellow rgba(243, 249, 157, 1);
|
||||
@define-color transparent rgba(0, 0, 0, 0);
|
||||
|
||||
window {
|
||||
border: 10px solid @grey;
|
||||
background-color: @grey;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
#input {
|
||||
border-bottom: 2px solid @yellow;
|
||||
border-radius: 0px;
|
||||
background-color: @transparent;
|
||||
}
|
||||
|
||||
#inner-box {
|
||||
border-top: 2px solid @transparent;
|
||||
color: white;
|
||||
background-color: @transparent;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
margin: 10px;
|
||||
border: 0px solid @transparent;
|
||||
background-color: @transparent;
|
||||
}
|
||||
|
||||
#entry{
|
||||
padding: 2px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
#img{
|
||||
|
||||
}
|
||||
|
||||
#entry:selected{
|
||||
background-color: @yellow;
|
||||
outline: 0px;
|
||||
color: @grey;
|
||||
border-radius: 0px;
|
||||
}
|
10
roles/wofi/tasks/main.yml
Normal file
10
roles/wofi/tasks/main.yml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
- name: create wofi config dir
|
||||
file:
|
||||
path: ~/.config/wofi
|
||||
state: directory
|
||||
|
||||
- name: copy wofi style
|
||||
copy:
|
||||
src: styles.css
|
||||
dest: ~/.config/wofi/
|
Loading…
Reference in New Issue
Block a user