commit eb1f7478dc4cb8b249cb770a68f5138650fcb765 Author: Pedro Araujo Date: Wed Apr 15 16:06:05 2020 -0300 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..152fd36 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +![alt text](https://raw.githubusercontent.com/Murzchnvok/fox-rofi-theme/master/fox.png) + +## Font (SourceCodePro) +- [Nerd Fonts GitHub](https://github.com/ryanoasis/nerd-fonts) + +## Polybar Theme +- [Polybar Fox](https://github.com/Murzchnvok/polybar-fox) + +## Wallpaper +- [wallpapersden](https://wallpapersden.com/adventures-lonely-night-out-wallpaper/) + +## Icon Pack +- [Papirus](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme) + +## Others Rofi Themes +- [Official rofi-themes repository](https://github.com/davatorium/rofi-themes) diff --git a/fox.png b/fox.png new file mode 100644 index 0000000..9e6fdef Binary files /dev/null and b/fox.png differ diff --git a/fox.rasi b/fox.rasi new file mode 100644 index 0000000..eddfdca --- /dev/null +++ b/fox.rasi @@ -0,0 +1,65 @@ +configuration { + show-icons: true; + //icon-theme: "Papirus"; + font: "SauceCodePro Nerd Font Regular 10"; + drun-display-format: "{icon} {name}"; + display-run: " "; + display-drun: " "; + display-window: " "; +} + +* { + bg: #142D4C; + bg-alt: #000; + fg: #D8DEE9; + fg-alt: #FFF; + background-color: #142D4C22; + border: 0; + padding: 0; + margin: 0; + spacing: 0; +} + +window { + height: 601px; + width: 400px; + location: southwest; + anchor: southwest; + y-offset: -28; + transparency: "real"; +} + +mainbox { + children: [listview, inputbar]; +} + +listview { + columns: 1; +} + +element { + orientation: vertical; + padding: 12; + text-color: @fg; +} + +element selected { + background-color: @bg; + text-color: @fg-alt; +} + +inputbar { + background-color: @background; + children: [prompt, entry]; +} + +prompt { + enabled: true; + text-color: @fg; + padding: 12 0 0 12; +} + +entry { + text-color: @fg; + padding: 12; +}