aboutsummaryrefslogtreecommitdiff
path: root/rofi/applauncher.rasi
blob: 68173a52c6f91e03a1adcd366da7a7fbf0ca5350 (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
@theme	"/dev/null"
@import	"macchiato.rasi"

configuration {
	show-icons: true;
	icon-theme: "Papirus";
        display-drun: "";
        terminal: "footclient -o pad=0x0";
}

* {
	background-color: @mantle;
}

window {
	children: [ inputbar, listview ];
	
	border: 1;
	border-radius: 10;
	border-color: @surface0;

	padding: 15;
}

inputbar {
	children: [ prompt,  entry ];
	spacing: 10;
}
prompt {
	font: "Symbols Nerd Font Mono 12.5";
	vertical-align: 0.5;
	text-color: @sky;
}
entry {
	font: "Hack Nerd Font 12.5";
	placeholder-color: @overlay0;
	text-color: @text;
	placeholder: "...";
}

listview {
	padding: 10;
	spacing: 5;
	lines: 8;
}
element {
	children: [ element-icon, element-text ];
	spacing: 5;
	text-color: @overlay0;
}
element-text {
	font: "Hack Nerd Font 12.5";
	text-color: inherit;
	vertical-align: 0.5;
}
element selected {
	text-color: @text;
}