-
Notifications
You must be signed in to change notification settings - Fork 0
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
6895f52
commit 1dd1dd0
Showing
2 changed files
with
90 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
configuration { | ||
modi: "drun,run,window"; | ||
terminal: "rofi-sensible-terminal"; | ||
show-icons: true; | ||
sort: true; | ||
fixed-num-lines: false; | ||
click-to-exit: true; | ||
yoffset: -120; | ||
|
||
display-drun: "Start >"; | ||
display-run: "Run >"; | ||
display-window: "Focus >"; | ||
display-ssh: "Connect >"; | ||
display-filebrowser: "Browse >"; | ||
|
||
filebrowser { | ||
directory: "~/"; | ||
sorting-method: "name"; | ||
directories-first: true; | ||
} | ||
|
||
timeout { | ||
delay: 10; | ||
action: "kb-cancel"; | ||
} | ||
} | ||
|
||
@theme "awesome" |
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,62 @@ | ||
* { | ||
fg: #d4d4d4ff; | ||
bg: #3c3c3cff; | ||
focus: #729fcfff; | ||
background-color: @bg; | ||
text-color: @fg; | ||
margin: 0; | ||
padding: 0; | ||
spacing: 0; | ||
} | ||
|
||
window { | ||
width: 320px; | ||
font: "Bitstream Vera Sans 10.0"; | ||
border-radius: 2; | ||
} | ||
|
||
mainbox { | ||
children: [inputbar, listview]; | ||
} | ||
|
||
inputbar { | ||
children: [prompt, entry]; | ||
} | ||
|
||
entry { | ||
background-color: inherit; | ||
padding: 4px 0px; | ||
} | ||
|
||
prompt { | ||
background-color: inherit; | ||
padding: 4px; | ||
} | ||
|
||
listview { | ||
lines: 8; | ||
} | ||
|
||
element { | ||
children: [element-icon, element-text]; | ||
} | ||
|
||
element-icon { | ||
padding: 4px 4px; | ||
} | ||
|
||
element-icon selected { | ||
padding: 10px 10px; | ||
background-color: @focus; | ||
} | ||
|
||
element-text { | ||
padding: 4px 0; | ||
text-color: inherit; | ||
} | ||
|
||
element-text selected { | ||
text-color: @bg; | ||
background-color: @focus; | ||
} | ||
|