mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 11:04:41 +02:00
[sway/i3status-rs] add initial config
This commit is contained in:
parent
08a6f66418
commit
0c89dabba7
3 changed files with 63 additions and 1 deletions
|
@ -52,6 +52,7 @@
|
||||||
# graphic
|
# graphic
|
||||||
- link:
|
- link:
|
||||||
~/.config/i3status/config: i3/i3status
|
~/.config/i3status/config: i3/i3status
|
||||||
|
~/.config/i3status-rust/config.toml: sway/i3status-rust.toml
|
||||||
~/.local/bin/lock: sway/lock.sh
|
~/.local/bin/lock: sway/lock.sh
|
||||||
~/.config/mako/config: mako/config
|
~/.config/mako/config: mako/config
|
||||||
~/.config/redshift.conf: redshift/redshift.conf
|
~/.config/redshift.conf: redshift/redshift.conf
|
||||||
|
|
|
@ -299,7 +299,8 @@ client.focused_inactive $color_bg_inactive $color_bg_inactive $color_text_inacti
|
||||||
client.urgent $color_bg_urgent $color_bg_urgent $color_text $color_indicator $color_bg
|
client.urgent $color_bg_urgent $color_bg_urgent $color_text $color_indicator $color_bg
|
||||||
|
|
||||||
bar {
|
bar {
|
||||||
status_command i3status
|
font pango:FiraCode
|
||||||
|
status_command i3status-rs
|
||||||
position top
|
position top
|
||||||
workspace_buttons yes
|
workspace_buttons yes
|
||||||
icon_theme Numix
|
icon_theme Numix
|
||||||
|
|
60
sway/i3status-rust.toml
Normal file
60
sway/i3status-rust.toml
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
[theme]
|
||||||
|
name = "plain"
|
||||||
|
[theme.overrides]
|
||||||
|
separator = ""
|
||||||
|
separator_bg = "#0C0C0D"
|
||||||
|
good_bg = "#0C0C0D"
|
||||||
|
info_bg = "#0C0C0D"
|
||||||
|
idle_bg = "#0C0C0D"
|
||||||
|
warning_bg = "#0C0C0D"
|
||||||
|
critical_bg = "#0C0C0D"
|
||||||
|
|
||||||
|
[icons]
|
||||||
|
name = "awesome5"
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "disk_space"
|
||||||
|
path = "/"
|
||||||
|
alias = ""
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "disk_space"
|
||||||
|
path = "/home"
|
||||||
|
alias = ""
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "networkmanager"
|
||||||
|
on_click = "alacritty -e nmtui"
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "memory"
|
||||||
|
format_mem = "{Mup}%"
|
||||||
|
format_swap = "{SUp}%"
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "temperature"
|
||||||
|
collapsed = false
|
||||||
|
format = "{average}°C"
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "cpu"
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "load"
|
||||||
|
format = "{1m}"
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "battery"
|
||||||
|
format = "{percentage}% {time}"
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "sound"
|
||||||
|
|
||||||
|
#[[block]]
|
||||||
|
#block = "sound"
|
||||||
|
#device_kind = "source"
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "time"
|
||||||
|
interval = 1
|
||||||
|
format = "%a %F %T"
|
Loading…
Add table
Add a link
Reference in a new issue