first commit
This commit is contained in:
commit
eb1f7478dc
3 changed files with 81 additions and 0 deletions
16
README.md
Normal file
16
README.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|

|
||||||
|
|
||||||
|
## 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)
|
BIN
fox.png
Normal file
BIN
fox.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 531 KiB |
65
fox.rasi
Normal file
65
fox.rasi
Normal file
|
@ -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;
|
||||||
|
}
|
Reference in a new issue