armory: update with current config

This commit is contained in:
Trianta 2024-05-15 22:31:01 -05:00
parent 620afc5bb2
commit 36842e744f
8 changed files with 26 additions and 27 deletions

View File

@ -7,7 +7,7 @@ shape = "Underline"
TERM = "xterm-256color" TERM = "xterm-256color"
[font] [font]
size = 20 size = 13
[colors] [colors]
footer_bar = { foreground = "#181818", background = "#d8d8d8" } footer_bar = { foreground = "#181818", background = "#d8d8d8" }

View File

@ -41,6 +41,7 @@ exec-once = spotify --disable-gpu
exec-once = alacritty exec-once = alacritty
exec-once = firefox exec-once = firefox
exec-once = taskset -c 1-7 mangohud steam-runtime exec-once = taskset -c 1-7 mangohud steam-runtime
#exec-once = mangohud steam-runtime

View File

@ -17,7 +17,7 @@ bind = $mainMod, F, fullscreen,
bind = $mainMod SHIFT, L, exec, hyprlock bind = $mainMod SHIFT, L, exec, hyprlock
bind = $mainMod $CONTROL, ESCAPE, exec, killall waybar || waybar # toggle waybar bind = $mainMod $CONTROL, ESCAPE, exec, killall waybar || waybar # toggle waybar
bind = $mainMod SHIFT, J, togglesplit, # dwindle bind = $mainMod SHIFT, J, togglesplit, # dwindle
bind = $mainMod SHIFT, P, pseudo, # dwindle bind = $mainMod SHIFT, SPACE, pseudo, # dwindle
# Main application shortcuts # Main application shortcuts
bind = $mainMod, RETURN, exec, alacritty bind = $mainMod, RETURN, exec, alacritty

View File

@ -24,8 +24,11 @@ general {
#col.inactive_border = $peach #col.inactive_border = $peach
layout = dwindle layout = dwindle
resize_on_border = false resize_on_border = false
cursor_inactive_timeout = 2 }
no_cursor_warps = false
cursor {
inactive_timeout = 2
no_warps = false
} }
group { group {

View File

@ -37,7 +37,7 @@ windowrulev2 = pseudo, class:^(net-runelite-client-RuneLite)$
windowrulev2 = size 825 520, class:^(net-runelite-client-RuneLite)$ windowrulev2 = size 825 520, class:^(net-runelite-client-RuneLite)$
windowrulev2 = opacity 1.00 override 1.00 override, class:^(Minecraft.*)$ windowrulev2 = opacity 1.00 override 1.00 override, class:^(Minecraft.*)$
windowrulev2 = pseudo, class:^(Minecraft.*)$ windowrulev2 = pseudo, class:^(Minecraft.*)$
windowrulev2 = size 3200 900, class:^(Minecraft.*)$ windowrulev2 = size 2560 1080, class:^(Minecraft.*)$
windowrulev2 = opacity 1.00 override 1.00 override, class:^(steam_app_.*)$ windowrulev2 = opacity 1.00 override 1.00 override, class:^(steam_app_.*)$
windowrulev2 = pseudo, class:^(steam_app_.*)$ windowrulev2 = pseudo, class:^(steam_app_.*)$
windowrulev2 = size 3200 900, class:^(steam_app_.*)$ windowrulev2 = size 3200 900, class:^(steam_app_.*)$

View File

@ -7,10 +7,10 @@
"spacing": 0, "spacing": 0,
"output": "DP-3", "output": "DP-3",
"reload_style_on_change": true, "reload_style_on_change": true,
"margin-left": 440, "margin-left": 940,
"margin-right": 440, "margin-right": 940,
"margin-top": 0, "margin-top": 4,
"margin-bottom": 0, "margin-bottom": 4,
"modules-left": [ "modules-left": [
"wireplumber", "wireplumber",
"disk", "disk",

View File

@ -1,11 +1,9 @@
#!/bin/bash #!/bin/bash
case $(wofi -d -L 6 -l 3 -W 100 -x -100 -y 10 \ case $(wofi -d -L 6 -l 3 -W 100 -x -490 -y 0 \
-D dynamic_lines=true << EOF | sed 's/^ *//' -D dynamic_lines=true << EOF | sed 's/^ *//'
Shutdown Shutdown
Reboot Reboot
Log off Log off
Sleep
Lock
Cancel Cancel
EOF EOF
) in ) in
@ -15,12 +13,6 @@ EOF
"Reboot") "Reboot")
systemctl reboot systemctl reboot
;; ;;
"Sleep")
systemctl suspend
;;
"Lock")
loginctl lock-session
;;
"Log off") "Log off")
hyprctl dispatch exit hyprctl dispatch exit
;; ;;

View File

@ -10,8 +10,11 @@
} }
window#waybar { window#waybar {
background: transparent; background-color: alpha(@surface0, 0.3);
border-radius: 0px; border-radius: 4px;
border: 0px solid @overlay0;
padding-top: 2px;
padding-bottom: 6px;
} }
#workspaces button { #workspaces button {
@ -29,8 +32,8 @@ window#waybar {
.modules-left, .modules-left,
.modules-center, .modules-center,
.modules-right { .modules-right {
padding-top: 2px; padding-top: 0px;
padding-bottom: 6px; padding-bottom: 0px;
} }
.modules-left { .modules-left {
@ -45,24 +48,24 @@ window#waybar {
#cpu, #cpu,
#disk, #disk,
#memory, #memory,
#network,
#temperature, #temperature,
#tray, #tray,
#wireplumber, #wireplumber,
#workspaces, #workspaces,
#network,
#custom-gpu, #custom-gpu,
#custom-poweroff, #custom-poweroff,
#custom-weather { #custom-weather {
background-color: alpha(@base, 0.5); background-color: transparent;
border-radius: 10px; border-radius: 10px;
border: 1px solid @overlay0; border: 0px;
margin-left: 6px; margin-left: 6px;
margin-right: 6px; margin-right: 6px;
color: @peach; color: @peach;
min-width: 90px; min-width: 45px;
} }
#clock { #clock {
min-width: 100px; min-width: 80px;
} }