mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
Fix colors
This commit is contained in:
parent
8c55340f3e
commit
167c1e5d75
|
@ -1,4 +1,3 @@
|
||||||
. "$HOME/.cargo/env"
|
|
||||||
export QT_QPA_PLATFORMTHEME=qt5ct
|
export QT_QPA_PLATFORMTHEME=qt5ct
|
||||||
export GPG_TTY=$(tty)
|
export GPG_TTY=$(tty)
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ for_window [app_id="^launcher$"] floating enable, sticky enable, resize set 30 p
|
||||||
set $menu exec $term --class=launcher -e env zsh -c "source ~/.profile && /usr/bin/sway-launcher-desktop"
|
set $menu exec $term --class=launcher -e env zsh -c "source ~/.profile && /usr/bin/sway-launcher-desktop"
|
||||||
set $filemgr pcmanfm-qt
|
set $filemgr pcmanfm-qt
|
||||||
|
|
||||||
output * bg #002a35 solid_color
|
output * bg #002b36 solid_color
|
||||||
|
|
||||||
input * {
|
input * {
|
||||||
xkb_layout us,ru
|
xkb_layout us,ru
|
||||||
|
@ -18,6 +18,7 @@ input * {
|
||||||
bar swaybar_command waybar
|
bar swaybar_command waybar
|
||||||
xwayland enable
|
xwayland enable
|
||||||
|
|
||||||
|
smart_borders on
|
||||||
default_border pixel 2
|
default_border pixel 2
|
||||||
gaps inner 5
|
gaps inner 5
|
||||||
font "JetBrains Mono" 9
|
font "JetBrains Mono" 9
|
||||||
|
|
|
@ -10,5 +10,5 @@ exec_always {
|
||||||
|
|
||||||
# Property Name Border BG Text
|
# Property Name Border BG Text
|
||||||
client.focused #839496 #839496 #839496
|
client.focused #839496 #839496 #839496
|
||||||
client.focused_inactive #839496 #073642 #839496
|
client.focused_inactive #839496 #002b36 #839496
|
||||||
client.unfocused #002b36 #073642 #839496
|
client.unfocused #002b36 #003b36 #839496
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"position": "bottom",
|
"position": "bottom",
|
||||||
"modules-left": ["sway/workspaces", "sway/mode"],
|
"modules-left": ["sway/workspaces", "sway/mode"],
|
||||||
"modules-center": ["sway/window"],
|
"modules-center": ["sway/window"],
|
||||||
"modules-right": ["idle_inhibitor", "network", "cpu", "memory", "temperature", "sway/language", "clock", "tray"],
|
"modules-right": ["idle_inhibitor", "network", "cpu", "memory", "temperature", "battery", "sway/language", "clock", "tray"],
|
||||||
"sway/mode": {
|
"sway/mode": {
|
||||||
"format": "<span style=\"italic\">{}</span>"
|
"format": "<span style=\"italic\">{}</span>"
|
||||||
},
|
},
|
||||||
|
@ -19,7 +19,8 @@
|
||||||
"spacing": 10
|
"spacing": 10
|
||||||
},
|
},
|
||||||
"clock": {
|
"clock": {
|
||||||
"format": "{:%d.%m.%Y %H:%M:%S}",
|
"format": "{:%H:%M:%S}",
|
||||||
|
"format-alt": "{:%d.%m.%Y}",
|
||||||
"interval": 1
|
"interval": 1
|
||||||
},
|
},
|
||||||
"cpu": {
|
"cpu": {
|
||||||
|
@ -37,9 +38,9 @@
|
||||||
"format-plugged": "Bat: {capacity}% (plugged)",
|
"format-plugged": "Bat: {capacity}% (plugged)",
|
||||||
},
|
},
|
||||||
"network": {
|
"network": {
|
||||||
"format": "Connected via {ifname}",
|
"format": "Network via {ifname}",
|
||||||
"tooltip-format": "{ipaddr}/{cidr}",
|
"tooltip-format": "{ipaddr}/{cidr}",
|
||||||
"format-linked": "Connected (No IP) via {ifname}",
|
"format-linked": "Network (No IP) via {ifname}",
|
||||||
"format-disconnected": "Disconnected",
|
"format-disconnected": "No network",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background-color: #002a35;
|
background-color: #002b36;
|
||||||
color: #839496;
|
color: #839496;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,11 +46,15 @@ window#waybar {
|
||||||
#mode,
|
#mode,
|
||||||
#idle_inhibitor,
|
#idle_inhibitor,
|
||||||
#mpd {
|
#mpd {
|
||||||
padding: 0 10px;
|
padding: 0 5px;
|
||||||
color: #839496;
|
color: #b58900;
|
||||||
background-color: #002a35;
|
background-color: #002b36;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
color: #859900;
|
||||||
|
font-weight: 900;
|
||||||
|
}
|
||||||
|
|
||||||
/* If workspaces is the leftmost module, omit left margin */
|
/* If workspaces is the leftmost module, omit left margin */
|
||||||
.modules-left > widget:first-child > #workspaces {
|
.modules-left > widget:first-child > #workspaces {
|
||||||
|
|
Loading…
Reference in a new issue