-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
920030c
commit e3450ff
Showing
4 changed files
with
104 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
@import "theme" | ||
|
||
configuration { | ||
show-icons: true; | ||
drun-display-format: "{name}"; | ||
window-format: "{w}{t}"; | ||
font: "JetBrainsMono Nerd Font 10"; | ||
icon-theme: "Tela-circle-dracula"; | ||
show-icons: true; | ||
} | ||
|
||
window { | ||
height: 33em; | ||
width: 63em; | ||
transparency: "real"; | ||
fullscreen: false; | ||
enabled: true; | ||
cursor: "default"; | ||
spacing: 0em; | ||
padding: 0em; | ||
border: 3px solid; | ||
border-radius: 15px; | ||
border-color: @main-br; | ||
background-color: @main-bg; | ||
} | ||
|
||
mainbox { | ||
spacing: 0; | ||
children: [ inputbar, listview ]; | ||
} | ||
|
||
inputbar { | ||
enabled: true; | ||
children: [ prompt, entry ]; | ||
spacing: 0em; | ||
padding: 0em; | ||
cursor: pointer; | ||
background-color: @main-bg; | ||
text-color: @main-fg; | ||
border: 0px 0px 2px 0px solid; | ||
border-color: @main-br; | ||
} | ||
|
||
prompt { | ||
enabled: true; | ||
padding: 0.5em 1em 0.5em 1em; | ||
text-align: center; | ||
cursor: default; | ||
background-color: transparent; | ||
text-color: @select-fg; | ||
background-color: @main-br; | ||
} | ||
|
||
entry { | ||
enabled: true; | ||
padding: 0.5em 0.5em 0.5em 0.5em; | ||
cursor: text; | ||
background-color: transparent; | ||
text-color: @main-fg; | ||
background-color: transparent; | ||
} | ||
|
||
listview { | ||
columns: 13; | ||
lines: 7; | ||
spacing: 0em; | ||
padding: 0.3em 0 0 0.3em; | ||
cycle: true; | ||
dynamic: true; | ||
layout: vertical; | ||
flow: horizontal; | ||
reverse: false; | ||
fixed-height: true; | ||
fixed-columns: true; | ||
cursor: "default"; | ||
background-color: @main-bg; | ||
text-color: @main-fg; | ||
} | ||
|
||
element { | ||
background-color: transparent; | ||
border-radius: 10px; | ||
} | ||
|
||
element selected.normal { | ||
background-color: @select-bg; | ||
} | ||
|
||
element-icon { | ||
size: 0; | ||
background-color: transparent; | ||
} | ||
|
||
element-text { | ||
cursor: pointer; | ||
vertical-align: 0.5; | ||
horizontal-align: 0.5; | ||
font: "FiraCode Nerd Font 24"; | ||
background-color: transparent; | ||
color: @main-bg; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rofimoji --selector-args="-theme ~/.config/rofi/emoji.rasi -kb-row-left Left -kb-row-right Right -kb-move-char-back Control+b -kb-move-char-forward Control+f" --hidden-descriptions --action copy --max-recent 0 |