diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 2617d95..7f5e189 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -34,11 +34,11 @@ bindsym $mod+Return exec i3-sensible-terminal bindsym $mod+Shift+q kill # start rofi (a program launcher) -bindsym $mod+Shift+d exec rofi -show run +bindsym $mod+Shift+d exec --no-startup-id rofi -show run -width 100 -disable-history -theme my_dmenu # There also is the (new) i3-dmenu-desktop which only displays applications # shipping a .desktop file. It is a wrapper around dmenu, so you need that # installed. -bindsym $mod+d exec --no-startup-id i3-dmenu-desktop +bindsym $mod+d exec --no-startup-id rofi -show drun -width 100 -disable-history -theme my_dmenu # change focus bindsym $mod+h focus left diff --git a/rofi/.config/rofi/my_dmenu.rasi b/rofi/.config/rofi/my_dmenu.rasi new file mode 100644 index 0000000..f6ed221 --- /dev/null +++ b/rofi/.config/rofi/my_dmenu.rasi @@ -0,0 +1,43 @@ +/** + * ROFI Color theme + * Derived from the official dmenu theme + * Original Copyright to Dave Davenport + */ +* { + background-color: Black; + border-color: White; + text-color: White; + font: "Mono Sans 9"; +} + +#window { + anchor: north; + location: north; + width: 100%; + padding: 4px; + children: [ horibox ]; +} + +#horibox { + orientation: horizontal; + children: [ prompt, entry, listview ]; +} + +#listview { + layout: horizontal; + spacing: 5px; + lines: 100; +} + +#entry { + expand: false; + width: 10em; +} + +#element { + padding: 0px 2px; +} +#element selected { + background-color: SteelBlue; +} +