summaryrefslogtreecommitdiff
path: root/rofi/iconic.rasi
blob: a2c8388f070d454356969c795de9f65ad07386bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
configuration {
	display-drun: "";
	display-run: "";
	display-window: "";
	drun-display-format: "{name}";
	icon-theme: "Papirus";
	fixed-num-lines: true;
	font: "FiraSans Regular 14";
}

@import "colors"

window {
	width: 20em;
	spacing: 0;
	transparency: "real";
	background-color: @bg;
	padding: 0em;
	border: 0;
	border-color: @transparent;
	border-radius: 2;
}

mainbox {
	background-color: @transparent;
}

inputbar {
	background-color: @bg;
	text-color: @fg;
	border-color: @border;
	children: [prompt, entry];
	padding: 0;
	border: 0;
	margin: 0 0 0em 0;
	border-radius: 2;
}

prompt {
	background-color: inherit;
	text-color: @fg;
	padding: 1em 0.75em;
	border-radius: 2;
}

entry {
	background-color: inherit;
	text-color: @fg;
	placeholder: "Search...";
	padding: 1em 0 1em 0;
	width: 10%;
	horizontal-align: 0.013;
	vertical-align: 0;
	border: 0;
	border-radius: 2;
}

listview {
	background-color: @transparent;
	text-color: @fg;
	cycle: false;
	dynamic: true;
	border: 0;
	border-radius: 2;
	layout: vertical;
	spacing: 0.1em;
	lines: 6;
	columns: 1;
}

element {
	background-color: @bg;
	text-color: @fg;
	border: 0;
	border-radius: 0;
	orientation: horizontal;
}

element-icon {
	background-color: @transparent;
	border: 0;
	border-radius: 0;
	size: 28px;
	padding: 0.25em 0.5em;
	horizontal-align:               0.5;
	vertical-align:                 0.5;
}

element-text {
	background-color: @transparent;
	text-color: @fg;
	text-size: 6;
	border: 0;
	border-radius: 0;
	padding: 0.2em 0.2em 0.2em 0;
	horizontal-align:               0;
	vertical-align:                 0.5;
}

element selected {
	background-color: @bg2;
	text-color: @fg2;
	border-color: @bg2;
	border: 1;
	border-radius: 0;
}

element-text selected {
	background-color: @bg2;
	text-color: @fg2;
	border-color: @bg2;
	border: 0;
}
element-icon selected {
	background-color: @bg2;
	text-color: @fg2;
	border-color: @bg2;
	border: 0;
}