refactor: update copyq configuration with clipboard checking disabled, unfocus behavior changed, and screen capture prevention enabled; feat: add new eww configuration file with example widget and window definitions; refactor: update hyprland autostart commands, replace Telegram with AyuGram, add easymove submap, and adjust workspace rules; feat: introduce hyprsunset configuration file for automatic gamma and temperature adjustments; chore: extend privacy tagging rules to include AyuGram and SimpleX desktop applications; refactor: optimize muza script by removing redundant sleep calls and adjusting terminal launch sequence; refactor: improve toggle_proxy script with process killing function and silent operation; refactor: adjust rmpc layout to allocate 72% space for queue and 28% for cava visualization; feat: update rmpc theme with new album art, modified color scheme, and added tabs pane; feat: add keyboard navigation bindings for rofi launcher mode switching and paging; feat: expand power mode menu with CPU frequency options and integrate cpupower controls; feat: implement h/j/k/l row navigation keybindings for rofi power menu; feat: reconfigure power mode menu layout to 3 columns and add vertical navigation keybindings; feat: add row navigation keybindings to rofi recorder menu style; refactor: update swaync notification styles with revised button borders, selection colors, and hover effects; feat: add custom submap display module to waybar for active hyprland submaps; refactor: modify waybar styling with updated background colors and new module borders; chore: update bluetooth alias from bluetuith to bluetui in shell configuration
108 lines
2.7 KiB
Plaintext
108 lines
2.7 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 32";
|
|
}
|
|
window {
|
|
anchor: center;
|
|
location: center;
|
|
width: 1000px;
|
|
height: 250px;
|
|
padding: 6px;
|
|
children: [ mainbox ];
|
|
border: 1px;
|
|
border-radius: 15px;
|
|
border-color: @border;
|
|
background-color: @background;
|
|
}
|
|
|
|
mainbox {
|
|
orientation: vertical;
|
|
spacing: 10px;
|
|
children: [ listview ];
|
|
background-color: transparent;
|
|
}
|
|
|
|
listview {
|
|
enabled: true;
|
|
columns: 1;
|
|
lines: 3;
|
|
cycle: true;
|
|
dynamic: true;
|
|
scrollbar: false;
|
|
layout: horizontal;
|
|
reverse: false;
|
|
fixed-height: true;
|
|
fixed-columns: true;
|
|
height: 100px;
|
|
spacing: 10px;
|
|
background-color: transparent;
|
|
text-color: @foreground;
|
|
cursor: "default";
|
|
font: "JetBrains Mono Nerd Font 10";
|
|
}
|
|
|
|
/*****----- Elements -----*****/
|
|
element {
|
|
enabled: true;
|
|
spacing: 15px;
|
|
width: calc(100% / 3 - 12);
|
|
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;
|
|
padding: 80;
|
|
}
|
|
|
|
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-right: "l,L";
|
|
kb-row-down: "j,J";
|
|
kb-row-up: "k,K";
|
|
}
|