diff --git a/src/.config/rofi/config.rasi b/src/.config/rofi/config.rasi new file mode 100644 index 0000000..096e80e --- /dev/null +++ b/src/.config/rofi/config.rasi @@ -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" diff --git a/src/.config/rofi/themes/awesome.rasi b/src/.config/rofi/themes/awesome.rasi new file mode 100644 index 0000000..bda3d4d --- /dev/null +++ b/src/.config/rofi/themes/awesome.rasi @@ -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; +} +