Files
dotfiles/rofi/styles/style-recorder.rasi
Nikolai Papin c9795e2514 feat(hypr): add nwg-dock autostart and MPD control submap;
feat(hypr): add window swallowing for kitty and Steam workspace rules;
feat(waybar): create minimal config for gamemode and add notification panel button;
refactor(waybar): simplify config, merge memory/swap displays, update workspace icons;
refactor(swaync): remove CPU slider and adjust button styling;
experiment(hypr): increase vibrancy and change screenshot sound;
experiment(rmpc): update progress bar symbols;
fix(rofi): add mouse support to all menu configurations;
chore(hypr): update gamemode script to toggle minimal waybar
2025-12-21 22:00:37 +03:00

140 lines
3.4 KiB
Plaintext

* {
background: #1c1c1cc0;
background-alt: #303030ff;
button-shape-top: #505050ff;
button-shape-bottom: #303030ff;
background-button: #2e2d31ff;
background-input: #1c1c1cc0;
border: #48535Ccf;
foreground: #FFe8EE;
selected: #9E2238dd;
selected-shine: #CE5268dd;
active: #9E2238;
urgent: #D14781;
background-color: @background;
border-color: White;
text-color: @foreground;
font: "JetBrains Mono Nerd Font 10";
}
window {
anchor: north;
location: north;
y-offset: 15px;
width: 480px;
height: 100px;
padding: 6px;
children: [ mainbox ];
border: 1px;
border-radius: 15px;
border-color: @border;
}
mainbox {
orientation: vertical;
spacing: 10px;
children: [ inputbox, listview ];
}
inputbox {
orientation: horizontal;
children: [ imagebox, contentbox ];
}
imagebox {
orientation: vertical;
expand: false;
width: 38px;
vertical-align: 0.5;
border-radius: 100px;
margin: 5px;
background-color: @active;
border-color: @selected-shine;
border: 1px 0 0 0;
}
contentbox {
orientation: horizontal;
expand: true;
children: [prompt];
}
mode-switcher{
enabled: true;
spacing: 20px;
background-color: transparent;
text-color: @foreground;
}
listview {
enabled: true;
columns: 1;
lines: 3;
cycle: true;
dynamic: true;
scrollbar: false;
layout: horizontal;
reverse: false;
fixed-height: false;
fixed-columns: true;
spacing: 10px;
background-color: transparent;
text-color: @foreground;
cursor: "default";
font: "JetBrains Mono Nerd Font 10";
}
/*****----- Elements -----*****/
element {
enabled: true;
spacing: 15px;
width: 31%;
padding: 8px;
border-radius: 10px;
text-color: @foreground;
cursor: pointer;
background-color: @background-button;
border-color: @button-shape-top;
border: 1px 0 0 0;
}
element selected.normal {
background-color: @active;
text-color: @foreground;
border-color: @selected-shine;
border: 1px 0 0 0;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
}
prompt {
vertical-align: 0.5;
}
entry {
vertical-align: 0.5;
}
element selected {
background-color: @selected;
}
element-text, element-icon {
background-color: transparent;
text-color: inherit;
}
configuration {
kb-row-left: "h,H";
kb-row-down: "j,J";
kb-row-up: "k,K";
kb-row-right: "l,L";
me-select-entry: "";
me-accept-entry: "!MousePrimary";
kb-cancel: "MousePrimary,Escape";
hover-select: true;
}