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:
@@ -222,3 +222,10 @@ error-message {
|
||||
background-color: @background;
|
||||
text-color: @foreground;
|
||||
}
|
||||
|
||||
configuration {
|
||||
kb-mode-next: "Shift+Right,Control+Tab,L";
|
||||
kb-mode-previous: "Shift+Left,H";
|
||||
kb-page-prev: "K";
|
||||
kb-page-next: "J";
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
mode=$(echo -e "\n\n" | rofi \
|
||||
mode=$(echo -e "\n400\n2000\n\n700\n3000\n\n1000\n4200" | rofi \
|
||||
-modes drun,run,calc \
|
||||
-dmenu -p "Power menu" \
|
||||
-theme "$HOME/.config/rofi/styles/style-powermodemenu.rasi" \
|
||||
@@ -8,15 +8,36 @@ mode=$(echo -e "\n\n" | rofi \
|
||||
-drun-use-desktop-cache \
|
||||
)
|
||||
|
||||
cpupowerset="sudo cpupower frequency-set --max"
|
||||
powerprofileset="powerprofilesctl set"
|
||||
|
||||
case "$mode" in
|
||||
"")
|
||||
powerprofilesctl set power-saver
|
||||
$powerprofileset power-saver
|
||||
;;
|
||||
"")
|
||||
powerprofilesctl set balanced
|
||||
$powerprofileset balanced
|
||||
;;
|
||||
"")
|
||||
powerprofilesctl set performance
|
||||
"")
|
||||
$powerprofileset performance
|
||||
;;
|
||||
"400")
|
||||
$cpupowerset "400MHz"
|
||||
;;
|
||||
"700")
|
||||
$cpupowerset "700MHz"
|
||||
;;
|
||||
"1000")
|
||||
$cpupowerset "1000MHz"
|
||||
;;
|
||||
"2000")
|
||||
$cpupowerset "2000MHz"
|
||||
;;
|
||||
"3000")
|
||||
$cpupowerset "3000MHz"
|
||||
;;
|
||||
"4200")
|
||||
$cpupowerset "4200MHz"
|
||||
;;
|
||||
*)
|
||||
exit 0
|
||||
|
||||
@@ -98,3 +98,10 @@ 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";
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ window {
|
||||
anchor: center;
|
||||
location: center;
|
||||
width: 1000px;
|
||||
height: 250px;
|
||||
height: 556px;
|
||||
padding: 6px;
|
||||
children: [ mainbox ];
|
||||
border: 1px;
|
||||
@@ -39,12 +39,12 @@ mainbox {
|
||||
|
||||
listview {
|
||||
enabled: true;
|
||||
columns: 1;
|
||||
columns: 3;
|
||||
lines: 3;
|
||||
cycle: true;
|
||||
dynamic: true;
|
||||
scrollbar: false;
|
||||
layout: horizontal;
|
||||
layout: vertical;
|
||||
reverse: false;
|
||||
fixed-height: true;
|
||||
fixed-columns: true;
|
||||
@@ -60,7 +60,7 @@ listview {
|
||||
element {
|
||||
enabled: true;
|
||||
spacing: 15px;
|
||||
width: calc(100% / 3 - 12);
|
||||
width: calc(100% / 3);
|
||||
padding: 8px;
|
||||
border-radius: 10px;
|
||||
text-color: @foreground;
|
||||
@@ -80,7 +80,7 @@ element selected.normal {
|
||||
element-text {
|
||||
vertical-align: 0.5;
|
||||
horizontal-align: 0.5;
|
||||
padding: 80;
|
||||
padding: 50;
|
||||
}
|
||||
|
||||
prompt {
|
||||
@@ -99,3 +99,10 @@ 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";
|
||||
}
|
||||
|
||||
@@ -126,3 +126,10 @@ 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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user