Skip to content

Commit

Permalink
Add rofi config
Browse files Browse the repository at this point in the history
  • Loading branch information
A committed Aug 3, 2023
1 parent 23c97b8 commit 425246d
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
19 changes: 19 additions & 0 deletions configs/rofi/config.rasi
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
configuration {
modi: "window,drun,combi,search:~/.bin/rofi-web-search.sh";
combi-modi: "drun,window,file-browser";

display-run: ":: ";
display-drun: ":: ";
display-window: ":: ";
display-calc: ":: ";
display-search: ":: ";
drun-display-format: "{name}";
font: "Iosevka Nerd Font Medium 16";
show-icons: false;

filebrowser {
directory: "~";
}
}

/* @theme "minimal" */
53 changes: 53 additions & 0 deletions configs/rofi/minimal.rasi
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
* {
bg: rgba(30, 30, 30, 0.6);
bg-alt: #414141;
fg: #ffffff;
fg-alt: #aaaaaa;

background-color: @bg;
border: 0;
margin: 0;
padding: 0;
spacing: 0;
}

element {
padding: 6;
orientation: vertical;
children: [element-text];
}

element-text {
text-color: @fg-alt;
}

element-text selected {
text-color: @fg;
}

entry {
padding: 12 0 12 3;
text-color: #ffffff;
}

inputbar {
children: [prompt, entry];
}

listview {
columns: 1;
lines: 10;
}

mainbox {
children: [inputbar, listview];
}

prompt {
padding: 12 0 0 12;
text-color: @fg;
}

window {
transparency: "real";
}

0 comments on commit 425246d

Please sign in to comment.