mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-03 13:50:38 -04:00
some updates
This commit is contained in:
parent
0384c2b07e
commit
9abbd1d6f3
30 changed files with 1538 additions and 31 deletions
203
.config/rofi/themes/clipboard.rasi
Normal file
203
.config/rofi/themes/clipboard.rasi
Normal file
|
@ -0,0 +1,203 @@
|
|||
/* config - Clipboard */
|
||||
|
||||
/* ---- Configuration ---- */
|
||||
configuration {
|
||||
modi: "drun";
|
||||
show-icons: false;
|
||||
drun-display-format: "{name}";
|
||||
hover-select: true;
|
||||
me-select-entry: "MouseSecondary";
|
||||
me-accept-entry: "MousePrimary";
|
||||
window-format: "{w} · {c} · {t}";
|
||||
dpi: 1;
|
||||
font: "JetBrainsMono Nerd Font 9";
|
||||
|
||||
}
|
||||
|
||||
/* ---- Load pywal colors ---- */
|
||||
@theme "~/.cache/wal/colors-rofi-dark.rasi"
|
||||
|
||||
/* ---- Global Properties ---- */
|
||||
* {
|
||||
|
||||
background-alt: @selected-active-background; // Buttons background
|
||||
selected: @selected-normal-background; // Button selected
|
||||
active: @selected-urgent-background; // Window activated
|
||||
urgent: @selected-normal-background; // When hovering the activated window (maybe more?)
|
||||
|
||||
text-selected: @background;
|
||||
text-color: @foreground;
|
||||
border-color: @selected;
|
||||
}
|
||||
|
||||
// Main //
|
||||
/* ---- Window ---- */
|
||||
window {
|
||||
// Default
|
||||
enabled: true;
|
||||
fullscreen: false;
|
||||
transparency: "real";
|
||||
cursor: "default";
|
||||
spacing: 0px;
|
||||
border: 2px;
|
||||
border-radius: 30px;
|
||||
location: center;
|
||||
anchor: center;
|
||||
|
||||
// Style Values
|
||||
width: 55%;
|
||||
background-color: #00000088;
|
||||
}
|
||||
|
||||
/* ----- Main Box ----- */
|
||||
mainbox {
|
||||
enabled: true;
|
||||
orientation: vertical;
|
||||
children: [ "inputbar", "listbox" ];
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/* ---- Inputbar ---- */
|
||||
inputbar {
|
||||
enabled: true;
|
||||
padding: 80px 60px;
|
||||
margin: 20px 20px 5px 20px;
|
||||
background-color: transparent;
|
||||
border-radius: 30px;
|
||||
orientation: horizontal;
|
||||
children: [ "entry" ];
|
||||
background-image: url("~/.config/rofi/.current_wallpaper", width);
|
||||
}
|
||||
|
||||
/* ---- Entry input ---- */
|
||||
entry {
|
||||
enabled: true;
|
||||
expand: true;
|
||||
padding: 12px 16px;
|
||||
border-radius: 10px;
|
||||
background-color: @background-alt;
|
||||
text-color: inherit;
|
||||
cursor: text;
|
||||
placeholder: " CTRL Del - Cliphist del || Alt Del - cliphist wipe"; // << Search symbol
|
||||
placeholder-color: inherit;
|
||||
}
|
||||
|
||||
/* ---- Listbox ---- */
|
||||
listbox {
|
||||
padding: 5px 20px 0px 20px;
|
||||
background-color: transparent;
|
||||
orientation: vertical;
|
||||
children: [ "message", "listview" ];
|
||||
}
|
||||
|
||||
/* ---- Listview ---- */
|
||||
listview {
|
||||
enabled: true;
|
||||
columns: 1;
|
||||
cycle: true;
|
||||
dynamic: true;
|
||||
scrollbar: false;
|
||||
layout: vertical;
|
||||
reverse: false;
|
||||
fixed-height: false;
|
||||
fixed-columns: true;
|
||||
|
||||
padding: 10px;
|
||||
background-color: transparent;
|
||||
|
||||
// Adapt rofi theme
|
||||
border: 0px;
|
||||
|
||||
}
|
||||
|
||||
/* ---- Elements ---- */
|
||||
element {
|
||||
enabled: true;
|
||||
spacing: 10px;
|
||||
padding: 4px;
|
||||
border-radius: 6px;
|
||||
background-color: transparent;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
element normal.normal {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
element normal.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @foreground;
|
||||
}
|
||||
element normal.active {
|
||||
background-color: @active;
|
||||
text-color: @foreground;
|
||||
}
|
||||
element selected.normal {
|
||||
background-color: @selected;
|
||||
text-color: @text-selected;
|
||||
}
|
||||
element selected.urgent {
|
||||
background-color: @urgent;
|
||||
text-color: @text-selected;
|
||||
}
|
||||
element selected.active {
|
||||
background-color: @urgent;
|
||||
text-color: @text-selected;
|
||||
}
|
||||
// Adapt rofi theme
|
||||
element alternate.normal {
|
||||
background-color: transparent;
|
||||
text-color: inherit;
|
||||
}
|
||||
element alternate.urgent {
|
||||
background-color: transparent;
|
||||
text-color: inherit;
|
||||
}
|
||||
element alternate.active {
|
||||
background-color: transparent;
|
||||
text-color: inherit;
|
||||
}
|
||||
element-icon {
|
||||
background-color: transparent;
|
||||
text-color: inherit;
|
||||
size: 36px;
|
||||
cursor: inherit;
|
||||
}
|
||||
element-text {
|
||||
background-color: transparent;
|
||||
text-color: inherit;
|
||||
cursor: inherit;
|
||||
vertical-align: 0.5;
|
||||
horizontal-align: 0.0;
|
||||
}
|
||||
|
||||
// Adapt rofi theme
|
||||
element.alternate.normal {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
|
||||
|
||||
@media(max-aspect-ratio: 1.8) {
|
||||
element {
|
||||
orientation: vertical;
|
||||
}
|
||||
}
|
||||
/* ---- Message ---- */
|
||||
message {
|
||||
background-color: transparent;
|
||||
}
|
||||
textbox {
|
||||
padding: 12px;
|
||||
border-radius: 10px;
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
vertical-align: 0.5;
|
||||
horizontal-align: 0.0;
|
||||
}
|
||||
error-message {
|
||||
padding: 12px;
|
||||
border-radius: 20px;
|
||||
background-color: @background-alt;
|
||||
text-color: @foreground;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue