Switch to gnu stow and add emacs pdf-tools

This commit is contained in:
Marco Thomas
2022-01-24 09:23:32 +01:00
parent 8632359365
commit 888c9819e9
35 changed files with 714 additions and 87 deletions

View File

@@ -0,0 +1,10 @@
* {
background: #222222;
background-alt: #222222;
foreground: #ffffff;
accent: #A6CC70;
border: #222222;
border-alt: #222222;
selected: @accent;
urgent: #ff3333;
}

View File

@@ -0,0 +1,32 @@
/* Confirm Dialog */
colors {
background: #425775ff;
background-alt: #475C7Bff;
foreground: #ffffffcc;
border: #FDBB6Dff;
border-alt: #DA717Fff;
selected: #685E79ff;
urgent: #DA4453FF;
}
* {
background-color: @background;
text-color: @foreground;
font: "JuliaMono 11";
}
window {
width: 225px;
padding: 25px;
border: 1px;
border-radius: 0px;
border-color: @border;
location: center;
y-offset: -2em;
}
entry {
expand: true;
text-color: @border;
}

View File

@@ -0,0 +1,86 @@
configuration {
show-icons: true;
display-drun: "🔎";
location: 0;
fake-transparency: false;
hide-scrollbar: true;
bw: 0;
terminal: "alacritty";
sidebar-mode: false;
}
@import "~/.config/rofi/colors.rasi"
* {
background-color: rgba(0, 0, 0, 0);
font: "Roboto 20";
}
window {
background-color: @background;
padding: 30;
width: 30%;
height: 30%;
transparency: "real";
}
mainbox {
children: [ inputbar, listview];
border-radius: 12;
border-color: #ffffff0A;
}
listview {
columns: 3;
lines: 1;
padding: 8;
spacing: 0;
cycle: false;
dynamic: true;
layout: vertical;
}
element {
border: 1;
orientation: vertical;
padding: 15 15 15 15;
border-radius: 6;
text-color: @foreground;
}
element selected {
background-color: @accent;
border-color: #ffffff0A;
text-color: @foreground;
transition: 20;
}
element-icon {
size: 4%;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element-text {
horizontal-align: 0.5;
vertical-align: 0.5;
text-color: inherit;
}
inputbar {
children: [ prompt, entry ];
background-color: #ffffff00;
}
prompt {
enabled: true;
padding: 0.5% 1% 0% 1%;
}
entry {
padding: 8 12 8 12;
margin: 0% 0% 0% 0%;
placeholder: "Search";
placeholder-color: #eeeeee;
text-color: @foreground;
}

View File

@@ -0,0 +1,32 @@
/* Message Dialog */
colors {
background: #425775ff;
background-alt: #475C7Bff;
foreground: #ffffffcc;
border: #FDBB6Dff;
border-alt: #DA717Fff;
selected: #685E79ff;
urgent: #DA4453FF;
}
* {
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
window {
width: 360px;
padding: 25px;
border: 1px;
border-radius: 0px;
border-color: @border;
location: center;
y-offset: -2em;
}
entry {
expand: true;
text-color: @border;
}

View File

@@ -0,0 +1,112 @@
configuration {
font: "Roboto 20";
show-icons: false;
icon-theme: "Papirus";
drun-display-format: "{name}";
disable-history: false;
sidebar-mode: false;
}
@import "~/.config/rofi/colors.rasi"
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border-radius: 0px;
height: 30%;
width: 15%;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.5% 0.5% 0.5% 0%;
background-color: @background-alt;
text-color: @foreground;
}
textbox-prompt-colon {
expand: false;
str: "Powermenu";
background-color: @background-alt;
text-color: @foreground;
padding: 0.5% 0.5% 0.5% 0%;
}
inputbar {
children: [ textbox-prompt-colon, prompt ];
background-color: @background-alt;
text-color: @foreground;
expand: false;
border: 0% 0% 0% 0.2%;
border-radius: 0% 0% 0% 0%;
border-color: @border;
padding: 0.5%;
position: center;
}
listview {
background-color: @background;
margin: 0% 0% 0% 0%;
spacing: 1%;
cycle: true;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
children: [ inputbar, listview ];
padding: 1% 1% 1% 1%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
}
element-text {
background-color: #00000000;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
margin: 1% 1% 1% 1%;
}
element normal.urgent,
element alternate.urgent {
background-color: @urgent;
text-color: @foreground;
border-radius: 0.2%;
}
element normal.active,
element alternate.active {
background-color: @background-alt;
text-color: @foreground;
}
element selected {
background-color: @selected;
text-color: @foreground;
border: 0% 0% 0% 0.2%;
border-radius: 0%;
border-color: @border;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}