1
1
Fork 0

Compare commits

...

6 commits

Author SHA1 Message Date
b0262c229f
waybar: fix tray padding
Signed-off-by: Myned <dev@bjork.tech>
2024-10-15 18:07:42 -05:00
378e290ff7
pkgs: remove gnome-console
Signed-off-by: Myned <dev@bjork.tech>
2024-10-15 18:07:30 -05:00
697ef0325a
dconf: modify blackbox
Signed-off-by: Myned <dev@bjork.tech>
2024-10-15 18:07:20 -05:00
d6c7d628c1
kitty: modify theme
Signed-off-by: Myned <dev@bjork.tech>
2024-10-15 18:06:58 -05:00
019b307c18
hyprland: suppress activation for steam windows
Signed-off-by: Myned <dev@bjork.tech>
2024-10-15 18:06:31 -05:00
f7ad0794bd
hyprland: fix pip aspect ratio
Signed-off-by: Myned <dev@bjork.tech>
2024-10-15 18:05:59 -05:00
5 changed files with 24 additions and 12 deletions

View file

@ -107,7 +107,7 @@ in {
x = tr (width / scale - (toInt w) - gap - border); x = tr (width / scale - (toInt w) - gap - border);
y = tr (gap + border); y = tr (gap + border);
w = tr (width / scale * 0.25 - gap - gap / 2 - border * 2); # 25% w = tr (width / scale * 0.25 - gap - gap / 2 - border * 2); # 25%
h = tr ((toInt w) * 9 / 16); # 16:9 aspect ratio h = tr ((toInt w) * 9 / 16 + 1); # 16:9 aspect ratio
}; };
### Rules ### Rules
@ -230,7 +230,7 @@ in {
(tag.password ["center" "workspace special:password"]) (tag.password ["center" "workspace special:password"])
(tag.pip ["keepaspectratio" "move ${pip.x} ${pip.y}" "pin" "size ${pip.w} ${pip.h}"]) (tag.pip ["keepaspectratio" "move ${pip.x} ${pip.y}" "pin" "size ${pip.w} ${pip.h}"])
(tag.social ["group invade lock" "tile"]) (tag.social ["group invade lock" "tile"])
(tag.steam ["workspace special:steam"]) (tag.steam ["suppressevent activate activatefocus" "workspace special:steam"])
(tag.terminal ["tile"]) (tag.terminal ["tile"])
(tag.vm ["workspace special:vm"]) (tag.vm ["workspace special:vm"])
(tag.wine ["noborder" "noshadow"]) (tag.wine ["noborder" "noshadow"])
@ -269,7 +269,7 @@ in {
(fields { (fields {
class = "^steam$"; class = "^steam$";
title = "^notificationtoasts$"; # Steam notifications title = "^notificationtoasts$"; # Steam notifications
} ["pin" "suppressevent activatefocus"]) } ["pin"])
(fields { (fields {
class = "^steam$"; class = "^steam$";
title = "^Steam$"; # Main window title = "^Steam$"; # Main window

View file

@ -13,6 +13,7 @@ in {
# https://github.com/kovidgoyal/kitty # https://github.com/kovidgoyal/kitty
programs.kitty = { programs.kitty = {
enable = true; enable = true;
shellIntegration.mode = "no-cursor"; # Disable forced beam cursor
font = { font = {
name = config.custom.font.monospace; name = config.custom.font.monospace;
@ -26,8 +27,8 @@ in {
inactive_tab_font_style = "normal"; inactive_tab_font_style = "normal";
confirm_os_window_close = 0; confirm_os_window_close = 0;
cursor_blink_interval = 0; cursor_blink_interval = 0;
cursor_shape = "beam"; cursor_shape = "block";
cursor_shape_unfocused = "underline"; cursor_shape_unfocused = "hollow";
placement_strategy = "top-left"; # Partially fix padding placement_strategy = "top-left"; # Partially fix padding
scrollback_lines = -1; scrollback_lines = -1;
strip_trailing_spaces = "smart"; strip_trailing_spaces = "smart";
@ -40,15 +41,15 @@ in {
# Solarized Dark colors # Solarized Dark colors
# https://ethanschoonover.com/solarized/ # https://ethanschoonover.com/solarized/
#?? kitten themes #?? kitten themes
cursor = "none"; # Invert colors cursor = "none"; # Inherit text tcolor
background = "#002b36"; background = "#002b36";
foreground = "#839496"; foreground = "#839496";
active_tab_background = "#93a1a1"; active_tab_background = "#93a1a1";
active_tab_foreground = "#002b36"; active_tab_foreground = "#002b36";
inactive_tab_background = "#586e75"; inactive_tab_background = "#586e75";
inactive_tab_foreground = "#002b36"; inactive_tab_foreground = "#002b36";
selection_background = "#073642"; # Affects scrollbar color selection_background = "#586e75"; # Affects scrollbar color
selection_foreground = "none"; selection_foreground = "#002b36";
url_color = "#586e75"; url_color = "#586e75";
color0 = "#073642"; color0 = "#073642";

View file

@ -96,10 +96,22 @@ tooltip {
color: #b58900; color: #b58900;
} }
#tray .active { #tray {
background: #073642;
}
#tray > widget {
background: none; background: none;
} }
#tray > widget:hover {
background: rgba(88, 110, 117, 0.25);
}
#tray > widget > image {
padding: 4px 8px;
}
#wireplumber.muted { #wireplumber.muted {
color: #dc322f; color: #dc322f;
} }

View file

@ -30,8 +30,8 @@ in {
notify-process-completion = mkBoolean false; notify-process-completion = mkBoolean false;
opacity = mkUint32 100; opacity = mkUint32 100;
pretty = mkBoolean false; pretty = mkBoolean false;
remember-window-size = mkBoolean false; remember-window-size = mkBoolean true;
scrollback-mode = mkInt32 1; scrollback-mode = mkUint32 1;
scrollbar-mode = mkUint32 1; scrollbar-mode = mkUint32 1;
show-headerbar = mkBoolean false; show-headerbar = mkBoolean false;
show-menu-button = mkBoolean false; show-menu-button = mkBoolean false;

View file

@ -80,7 +80,6 @@ in {
gnome-calculator gnome-calculator
gnome-calendar gnome-calendar
gnome-connections gnome-connections
gnome-console
gnome-disk-utility gnome-disk-utility
gnome-resources gnome-resources
gnome-software gnome-software