blob: 08600b30feff4b125648715831b589c5f3eef615 (
plain) (
blame)
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
|
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* Rofi Config for Google Search) */
@import "~/.config/rofi/config.rasi"
/* ---- Window ---- */
window {
width: 40%;
height: inherit;
background-color: black/25%;
y-offset: 10px;
location: north;
children: [ "entry" ];
border: 2px;
border-color: white/25%;
border-radius: 20px;
}
/* ---- Entry ---- */
entry {
placeholder: " 🔎 Google Search via web browser";
padding: 15px;
border: 0px;
text-color: white;
}
|