1
1
Fork 0

Compare commits

..

No commits in common. "b0262c229f98529337f22e14f27a448ff14e5719" and "d74f26e5a75fa2cadfaeeb0fc7edf87b1b503fd0" have entirely different histories.

5 changed files with 12 additions and 24 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 + 1); # 16:9 aspect ratio h = tr ((toInt w) * 9 / 16); # 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 ["suppressevent activate activatefocus" "workspace special:steam"]) (tag.steam ["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"]) } ["pin" "suppressevent activatefocus"])
(fields { (fields {
class = "^steam$"; class = "^steam$";
title = "^Steam$"; # Main window title = "^Steam$"; # Main window

View file

@ -13,7 +13,6 @@ 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;
@ -27,8 +26,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 = "block"; cursor_shape = "beam";
cursor_shape_unfocused = "hollow"; cursor_shape_unfocused = "underline";
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";
@ -41,15 +40,15 @@ in {
# Solarized Dark colors # Solarized Dark colors
# https://ethanschoonover.com/solarized/ # https://ethanschoonover.com/solarized/
#?? kitten themes #?? kitten themes
cursor = "none"; # Inherit text tcolor cursor = "none"; # Invert colors
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 = "#586e75"; # Affects scrollbar color selection_background = "#073642"; # Affects scrollbar color
selection_foreground = "#002b36"; selection_foreground = "none";
url_color = "#586e75"; url_color = "#586e75";
color0 = "#073642"; color0 = "#073642";

View file

@ -96,22 +96,10 @@ tooltip {
color: #b58900; color: #b58900;
} }
#tray { #tray .active {
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 true; remember-window-size = mkBoolean false;
scrollback-mode = mkUint32 1; scrollback-mode = mkInt32 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,6 +80,7 @@ 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