1.1.0 Added dotfiles from my old PC

This commit is contained in:
2020-10-02 22:43:43 +02:00
parent 1d0d2bdd53
commit 49f2ea379d
102 changed files with 10692 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
configuration {
modi: "drun";
me-select-entry: "MouseSecondary";
me-accept-entry: "MousePrimary";
scroll-method: 1;
display-windowcd: "Window: ";
show-icons: true;
window-format: "{c} - {t}";
}
* {
background: #292f34FF;
background-color: #00000000;
foreground: #F6F9FFFF;
selected: #1ABB9BFF;
active-background: #3A464BFF;
urgent-background: #800000FF;
urgent-foreground: @foreground;
selected-urgent-background: @urgent-foreground;
selected-urgent-foreground: @urgent-background;
font: "Terminus 18px";
text-color: @foreground;
border: 0px;
padding: 0px;
spacing: 0px;
}
window {
location: northwest;
width: 200px;
background-color: @background;
padding: 4px;
y-offset: 25px;
}
listview {
lines: 17;
fixed-height: false;
spacing: 2px;
scrollbar: false;
}
element.normal.active,
element.alternate.active {
background-color: @active-background;
}
element.selected {
background-color: @selected;
}
element.normal.urgent,
element.alternate.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}

View File

@@ -0,0 +1,58 @@
configuration {
modi: "windowcd";
me-select-entry: "MouseSecondary";
me-accept-entry: "MousePrimary";
scroll-method: 1;
display-windowcd: "Window: ";
show-icons: true;
window-format: "{c} - {t}";
}
* {
background: #292f34FF;
background-color: #00000000;
foreground: #F6F9FFFF;
selected: #1ABB9BFF;
active-background: #3A464BFF;
urgent-background: #800000FF;
urgent-foreground: @foreground;
selected-urgent-background: @urgent-foreground;
selected-urgent-foreground: @urgent-background;
font: "Terminus 22px";
text-color: @foreground;
border: 0px;
padding: 0px;
spacing: 0px;
}
window {
location: north;
y-offset: 25px;
width: 33%;
background-color: @background;
padding: 4px;
}
listview {
lines: 17;
fixed-height: false;
spacing: 2px;
scrollbar: false;
}
element.normal.active,
element.alternate.active {
background-color: @active-background;
}
element.selected {
background-color: @selected;
}
element.normal.urgent,
element.alternate.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}

View File

@@ -0,0 +1,197 @@
/**
* ROFI Color theme
* User: Qball
* Copyright: Dave Davenport
*/
configuration {
modi: "combi";
//combi-modi: "window,drun,\/:rofind,run";
combi-modi: "window,drun,run";
me-select-entry: "MouseSecondary";
me-accept-entry: "MousePrimary";
scroll-method: 1;
// The display name of this browser
display-ssh: "ssh";
// The display name of this browser
display-run: "#! ";
// The display name of this browser
display-drun: "";
// The display name of this browser
display-window: "";
display-combi: "Exec -> ";
show-icons: true;
}
/**
* User: Qball
* Copyright: Dave Davenport
*/
* {
foreground: #ffeedd;
backlight: #ccffeedd;
background-color: transparent;
dark: #1c1c1c;
// Black
black: #2f343f;
lightblack: #554444;
tlightblack: #554444cc;
//
// Red
red: #cd5c5c;
lightred: #cc5533;
//
// Green
green: #86af80;
lightgreen: #88cc22;
//
// Yellow
yellow: #e8ae5b;
lightyellow: #ffa75d;
//
// Blue
blue: #6495ed;
lightblue: #87ceeb;
//
// Magenta
magenta: #deb887;
lightmagenta: #996600;
//
// Cyan
cyan: #1ABB9B;
tcyan: #ccb0c4de;
lightcyan: #b0c4de;
//
// White
white: #bbaa99;
lightwhite: #ddccbb;
//
// Bold, Italic, Underline
highlight: underline bold #ffffff;
transparent: rgba(0,0,0,0);
font: "Terminus 18";
}
#window {
location: center;
anchor: center;
transparency: "screenshot";
padding: 10px;
border: 0px;
border-radius: 10px;
color: @magenta;
background-color: @transparent;
spacing: 0;
children: [vertb, mainbox];
orientation: horizontal;
}
#mainbox {
spacing: 0;
children: [ inputbar, message, listview ];
}
#message {
border-color: @foreground;
border: 0px 2px 2px 2px;
// border-radius: 10px;
padding: 5;
background-color: @tcyan;
}
#message {
font: "Noto Sans Mono Medium 12";
color: @black;
}
#inputbar {
color: @cyan;
padding: 11px;
background-color: @black;
border: 2px 2px 2px 2px;
border-radius: 30px 30px 0px 0px;
border-color: @foreground;
font: "NotoSansMono Nerd Font 18";
}
#entry,prompt,case-indicator {
text-font: inherit;
text-color:inherit;
}
#listview {
padding: 8px;
border-radius: 0px 0px 30px 30px;
border-color: @foreground;
border: 0px 2px 2px 2px;
background-color: #1c1c1ccc;
dynamic: false;
lines: 15;
}
#element {
padding: 3px;
vertical-align: 0.5;
// border: 2px;
border-radius: 4px;
background-color: transparent;
color: @foreground;
font:inherit;
}
#element selected.normal {
background-color: @cyan;
}
#element normal active {
foreground: @lightblue;
}
#element normal urgent {
foreground: @lightred;
}
#element alternate normal {
}
#element alternate active {
foreground: @lightblue;
}
#element alternate urgent {
foreground: @lightred;
}
#element selected active {
background-color: @cyan;
foreground: @dark;
}
#element selected urgent {
background-color: @lightred;
foreground: @dark;
}
#element normal normal {
}
#vertb {
expand: false;
children: [ dummy0, sidebar, dummy1 ];
}
#dummy0, dummy1 {
expand: true;
}
#sidebar {
expand: false;
orientation: vertical;
spacing: 0px;
border: 0px 0px 0px 0px;
}
#button {
font: "FontAwesome 26";
padding: 6px;
border: 2px 0px 2px 2px;
border-radius: 4px 0px 0px 4px;
background-color: @tlightblack;
border-color: @foreground;
color: @foreground;
horizontal-align: 0.5;
}
#button selected normal {
color: @dark;
border: 2px 0px 2px 2px;
background-color: @backlight;
border-color: @foreground;
}

View File

@@ -0,0 +1,115 @@
configuration {
me-select-entry: "MouseSecondary";
me-accept-entry: "MousePrimary";
scroll-method: 1;
show-icons: true;
sidebar-mode: true;
kb-custom-1: "";
kb-custom-2: "";
kb-custom-3: "";
kb-custom-4: "";
kb-custom-5: "";
kb-custom-6: "";
kb-custom-7: "";
kb-custom-8: "";
kb-custom-9: "";
kb-custom-10: "";
kb-select-1: "Alt+1";
kb-select-2: "Alt+2";
kb-select-3: "Alt+3";
kb-select-4: "Alt+4";
kb-select-5: "Alt+5";
kb-select-6: "Alt+6";
kb-select-7: "Alt+7";
kb-select-8: "Alt+8";
kb-select-9: "Alt+9";
kb-select-10: "Alt+0";
}
* {
background: #292f34FF;
background-color: #00000000;
foreground: #F6F9FFFF;
selected: #1ABB9BFF;
selected-foreground: #FFFFFFFF;
active-background: #00BCD420;
urgent-background: #800000FF;
urgent-foreground: @selected-normal-foreground;
selected-urgent-background: @urgent-foreground;
selected-urgent-foreground: @urgent-background;
font: "NotoSansMono Nerd Font 20px";
text-color: @foreground;
margin: 0px;
border: 0px;
padding: 0px;
spacing: 0px;
addpadding: 2px 1ch;
}
element.normal.active,
element.alternate.active {
background-color: @active-background;
text-color: @selected-foreground;
}
element.selected,
button.selected {
background-color: @selected;
text-color: @selected-foreground;
}
element.normal.urgent,
element.alternate.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
window {
location: northwest;
anchor: northwest;
x-offset: 0;
y-offset: 24;
width: 60ch;
}
mainbox {
orientation: horizontal;
children: [ sidebar, vertibox ];
}
vertibox {
orientation: vertical;
children: [ inputbar, listview ];
background-color: @background;
}
inputbar {
children: [ entry, ci ];
}
entry {
padding: @addpadding;
}
listview {
lines: 20;
fixed-height: false;
dynamic: false;
scrollbar: true;
}
scrollbar {
width: 1ch;
handle-color: @selected;
}
element {
padding: @addpadding;
}
sidebar {
orientation: vertical;
}
button {
horizontal-align: 0;
expand: false;
padding: @addpadding;
width: 18ch;
background-color: @background;
}