Compare commits
No commits in common. "b0262c229f98529337f22e14f27a448ff14e5719" and "d74f26e5a75fa2cadfaeeb0fc7edf87b1b503fd0" have entirely different histories.
b0262c229f
...
d74f26e5a7
5 changed files with 12 additions and 24 deletions
|
@ -107,7 +107,7 @@ in {
|
|||
x = tr (width / scale - (toInt w) - gap - border);
|
||||
y = tr (gap + border);
|
||||
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
|
||||
|
@ -230,7 +230,7 @@ in {
|
|||
(tag.password ["center" "workspace special:password"])
|
||||
(tag.pip ["keepaspectratio" "move ${pip.x} ${pip.y}" "pin" "size ${pip.w} ${pip.h}"])
|
||||
(tag.social ["group invade lock" "tile"])
|
||||
(tag.steam ["suppressevent activate activatefocus" "workspace special:steam"])
|
||||
(tag.steam ["workspace special:steam"])
|
||||
(tag.terminal ["tile"])
|
||||
(tag.vm ["workspace special:vm"])
|
||||
(tag.wine ["noborder" "noshadow"])
|
||||
|
@ -269,7 +269,7 @@ in {
|
|||
(fields {
|
||||
class = "^steam$";
|
||||
title = "^notificationtoasts$"; # Steam notifications
|
||||
} ["pin"])
|
||||
} ["pin" "suppressevent activatefocus"])
|
||||
(fields {
|
||||
class = "^steam$";
|
||||
title = "^Steam$"; # Main window
|
||||
|
|
|
@ -13,7 +13,6 @@ in {
|
|||
# https://github.com/kovidgoyal/kitty
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
shellIntegration.mode = "no-cursor"; # Disable forced beam cursor
|
||||
|
||||
font = {
|
||||
name = config.custom.font.monospace;
|
||||
|
@ -27,8 +26,8 @@ in {
|
|||
inactive_tab_font_style = "normal";
|
||||
confirm_os_window_close = 0;
|
||||
cursor_blink_interval = 0;
|
||||
cursor_shape = "block";
|
||||
cursor_shape_unfocused = "hollow";
|
||||
cursor_shape = "beam";
|
||||
cursor_shape_unfocused = "underline";
|
||||
placement_strategy = "top-left"; # Partially fix padding
|
||||
scrollback_lines = -1;
|
||||
strip_trailing_spaces = "smart";
|
||||
|
@ -41,15 +40,15 @@ in {
|
|||
# Solarized Dark colors
|
||||
# https://ethanschoonover.com/solarized/
|
||||
#?? kitten themes
|
||||
cursor = "none"; # Inherit text tcolor
|
||||
cursor = "none"; # Invert colors
|
||||
background = "#002b36";
|
||||
foreground = "#839496";
|
||||
active_tab_background = "#93a1a1";
|
||||
active_tab_foreground = "#002b36";
|
||||
inactive_tab_background = "#586e75";
|
||||
inactive_tab_foreground = "#002b36";
|
||||
selection_background = "#586e75"; # Affects scrollbar color
|
||||
selection_foreground = "#002b36";
|
||||
selection_background = "#073642"; # Affects scrollbar color
|
||||
selection_foreground = "none";
|
||||
url_color = "#586e75";
|
||||
|
||||
color0 = "#073642";
|
||||
|
|
|
@ -96,22 +96,10 @@ tooltip {
|
|||
color: #b58900;
|
||||
}
|
||||
|
||||
#tray {
|
||||
background: #073642;
|
||||
}
|
||||
|
||||
#tray > widget {
|
||||
#tray .active {
|
||||
background: none;
|
||||
}
|
||||
|
||||
#tray > widget:hover {
|
||||
background: rgba(88, 110, 117, 0.25);
|
||||
}
|
||||
|
||||
#tray > widget > image {
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
#wireplumber.muted {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
|
|
@ -30,8 +30,8 @@ in {
|
|||
notify-process-completion = mkBoolean false;
|
||||
opacity = mkUint32 100;
|
||||
pretty = mkBoolean false;
|
||||
remember-window-size = mkBoolean true;
|
||||
scrollback-mode = mkUint32 1;
|
||||
remember-window-size = mkBoolean false;
|
||||
scrollback-mode = mkInt32 1;
|
||||
scrollbar-mode = mkUint32 1;
|
||||
show-headerbar = mkBoolean false;
|
||||
show-menu-button = mkBoolean false;
|
||||
|
|
|
@ -80,6 +80,7 @@ in {
|
|||
gnome-calculator
|
||||
gnome-calendar
|
||||
gnome-connections
|
||||
gnome-console
|
||||
gnome-disk-utility
|
||||
gnome-resources
|
||||
gnome-software
|
||||
|
|
Loading…
Add table
Reference in a new issue