feat: set cava bar width to 1 for slimmer visualization bars;
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
This commit is contained in:
@@ -13,7 +13,8 @@
|
||||
// Choose the order of the modules
|
||||
"modules-left": [
|
||||
"hyprland/workspaces",
|
||||
"custom/pomodoro"
|
||||
"custom/pomodoro",
|
||||
"custom/submap"
|
||||
// "custom/goal"
|
||||
],
|
||||
"modules-center": [
|
||||
@@ -244,6 +245,16 @@
|
||||
],
|
||||
"on-click": "pwvucontrol"
|
||||
},
|
||||
"custom/submap": {
|
||||
"format": "{icon} {text}",
|
||||
"max-length": 10,
|
||||
"format-icons": {
|
||||
"default": ""
|
||||
},
|
||||
"interval": 1,
|
||||
"exec": "state=$(hyprctl submap) && [[ $state != 'default' ]] && echo $state",
|
||||
"on-click": "hyprctl dispatch submap reset"
|
||||
},
|
||||
"custom/media": {
|
||||
"format": "{icon} {text}",
|
||||
"return-type": "json",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* GTK Color Definitions */
|
||||
@define-color bg-primary rgba(23, 28, 39, 0.8);
|
||||
@define-color bg-secondary rgba(23, 28, 39, 0.7);
|
||||
@define-color bg-primary rgba(28, 28, 28, 0.81);
|
||||
@define-color bg-secondary rgba(28, 28, 28, 0.81);
|
||||
@define-color bg-opaque rgba(23, 28, 39, 0.8);
|
||||
@define-color border-color rgba(90, 104, 115, 1);
|
||||
@define-color text-primary #ffffff;
|
||||
@@ -156,6 +156,22 @@ window#waybar.chromium {
|
||||
/* border-right: none; */
|
||||
}
|
||||
|
||||
#custom-submap {
|
||||
color: @accent-color;
|
||||
background: linear-gradient(to bottom, @bg-primary, @bg-secondary);
|
||||
border: 1px solid @border-color;
|
||||
border-top: none;
|
||||
border-radius: 0 0 10px 10px;
|
||||
padding: 0 10px;
|
||||
transition: color 2s ease-out, box-shadow 2s ease-out, background 2s ease-out;
|
||||
}
|
||||
|
||||
#custom-pomodoro {
|
||||
border-radius: 0 0 10px 10px;
|
||||
/* margin-right: 0; */
|
||||
/* border-right: none; */
|
||||
}
|
||||
|
||||
#custom-goal {
|
||||
border-radius: 0 0 10px 0;
|
||||
margin: 0;
|
||||
|
||||
Reference in New Issue
Block a user