[sway] Update styles, icons and images
This commit is contained in:
parent
6dc2382dbf
commit
aa3291b6c4
4 changed files with 36 additions and 8 deletions
1
.config/.gitignore
vendored
1
.config/.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
dconf
|
dconf
|
||||||
|
bkg.jpg
|
||||||
|
|
|
@ -174,7 +174,7 @@ draw_bold_text_with_bright_colors: true
|
||||||
colors:
|
colors:
|
||||||
# Default colors
|
# Default colors
|
||||||
primary:
|
primary:
|
||||||
background: '0x151515'
|
background: '0x191919'
|
||||||
foreground: '0xefefef'
|
foreground: '0xefefef'
|
||||||
|
|
||||||
# Bright and dim foreground colors
|
# Bright and dim foreground colors
|
||||||
|
|
|
@ -22,7 +22,7 @@ set $menu bemenu-run | xargs swaymsg exec --
|
||||||
### Output configuration
|
### Output configuration
|
||||||
#
|
#
|
||||||
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
|
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
|
||||||
output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
|
output * bg /home/vladan/.config/sway/bkg.jpg fill
|
||||||
#
|
#
|
||||||
# Example configuration:
|
# Example configuration:
|
||||||
#
|
#
|
||||||
|
@ -224,4 +224,31 @@ bindsym Shift+Print exec slurp
|
||||||
default_border pixel 1
|
default_border pixel 1
|
||||||
bindsym $mod+t border toggle
|
bindsym $mod+t border toggle
|
||||||
|
|
||||||
|
# Background
|
||||||
|
set $bg #232425
|
||||||
|
# Background active
|
||||||
|
set $ba #191919
|
||||||
|
# Background inactive
|
||||||
|
set $bi #3f3f3f
|
||||||
|
# Foreground active
|
||||||
|
set $fa #eff1f5
|
||||||
|
# Foreground inactive
|
||||||
|
set $fi #646464
|
||||||
|
# Border active
|
||||||
|
set $bra #7a7a7a
|
||||||
|
# Border inactive
|
||||||
|
set $bri #000000
|
||||||
|
|
||||||
|
# class border backgr. text indicator child_border
|
||||||
|
client.focused $bra $ba $fa $bg $bra
|
||||||
|
client.focused_inactive $bra $ba $fi $bg $bri
|
||||||
|
client.unfocused $bri $bi $fi $bg $bri
|
||||||
|
#client.urgent $br $br $fg $bg $br #currently not implemented
|
||||||
|
#client.placeholder $br $br $fg $bg $br #currently not implemented
|
||||||
|
client.background $bg
|
||||||
|
|
||||||
|
gaps inner 0
|
||||||
|
gaps outer 0
|
||||||
|
#smart_gaps on
|
||||||
|
|
||||||
include /etc/sway/config.d/*
|
include /etc/sway/config.d/*
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
// Choose the order of the modules
|
// Choose the order of the modules
|
||||||
"modules-left": ["sway/workspaces", "sway/mode", "sway/window"],
|
"modules-left": ["sway/workspaces", "sway/mode", "sway/window"],
|
||||||
"modules-center": [],
|
"modules-center": [],
|
||||||
"modules-right": ["custom/vpn", "network", "battery", "pulseaudio", "temperature", "cpu", "clock", "tray"],
|
"modules-right": ["custom/vpn", "network", "battery", "pulseaudio", "cpu", "temperature", "clock", "tray"],
|
||||||
// Module config
|
// Module config
|
||||||
"sway/mode": {
|
"sway/mode": {
|
||||||
"tooltip": false,
|
"tooltip": false,
|
||||||
|
@ -38,17 +38,17 @@
|
||||||
"battery": {
|
"battery": {
|
||||||
"tooltip": false,
|
"tooltip": false,
|
||||||
"states": {
|
"states": {
|
||||||
// "good": 95,
|
"good": 95,
|
||||||
"warning": 30,
|
"warning": 30,
|
||||||
"critical": 15
|
"critical": 15
|
||||||
},
|
},
|
||||||
"format": "{capacity}% {icon}",
|
"format": "{capacity}% {icon}",
|
||||||
"format-alt": "{time} {icon}",
|
"format-alt": "{time} {icon}",
|
||||||
"format-charging": "{capacity}% {icon}",
|
"format-charging": "{capacity}% ",
|
||||||
"format-plugged": "{capacity}% ",
|
"format-plugged": "{capacity}% "
|
||||||
// "format-good": "", // An empty format will hide the module
|
// "format-good": "", // An empty format will hide the module
|
||||||
// "format-full": "",
|
// "format-full": ""
|
||||||
"format-icons": ["", "", "", "", "", "", ""]
|
// "format-icons": ["", "", "", "", "", "", ""]
|
||||||
},
|
},
|
||||||
"pulseaudio": {
|
"pulseaudio": {
|
||||||
"tooltip": false,
|
"tooltip": false,
|
||||||
|
|
Loading…
Add table
Reference in a new issue