Multi bar hype!
This commit is contained in:
parent
5fa5257b41
commit
dccf1b1b75
5 changed files with 33 additions and 2 deletions
|
@ -90,8 +90,13 @@ bindsym $mod+r mode "resize"
|
||||||
# Autostart
|
# Autostart
|
||||||
exec dex -as ~/.config/autostart
|
exec dex -as ~/.config/autostart
|
||||||
|
|
||||||
|
bar {
|
||||||
|
status_command i3status
|
||||||
|
}
|
||||||
|
|
||||||
bar {
|
bar {
|
||||||
status_command i3status-rs ~/.config/i3/status.toml
|
status_command i3status-rs ~/.config/i3/status.toml
|
||||||
|
position top
|
||||||
colors {
|
colors {
|
||||||
separator #666666
|
separator #666666
|
||||||
statusline #dddddd
|
statusline #dddddd
|
||||||
|
|
18
modules/i3/files/i3status.conf
Normal file
18
modules/i3/files/i3status.conf
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
general {
|
||||||
|
colors = true
|
||||||
|
interval = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
order += "ipv6"
|
||||||
|
order += "wireless _first_"
|
||||||
|
order += "ethernet _first_"
|
||||||
|
|
||||||
|
wireless _first_ {
|
||||||
|
format_up = "W: (%quality at %essid) %ip"
|
||||||
|
format_down = "W: down"
|
||||||
|
}
|
||||||
|
|
||||||
|
ethernet _first_ {
|
||||||
|
format_up = "E: %ip (%speed)"
|
||||||
|
format_down = "E: down"
|
||||||
|
}
|
|
@ -8,10 +8,17 @@ class i3 {
|
||||||
source => 'puppet:///modules/i3/i3.conf'
|
source => 'puppet:///modules/i3/i3.conf'
|
||||||
}
|
}
|
||||||
|
|
||||||
file { "i3status config":
|
file { "i3status-rust config":
|
||||||
path => '/home/jake/.config/i3/status.toml',
|
path => '/home/jake/.config/i3/status.toml',
|
||||||
ensure => file,
|
ensure => file,
|
||||||
mode => "0644",
|
mode => "0644",
|
||||||
source => 'puppet:///modules/i3/i3status.toml'
|
source => 'puppet:///modules/i3/i3status-rust.toml'
|
||||||
|
}
|
||||||
|
|
||||||
|
file { "i3status config":
|
||||||
|
path => '/home/jake/.config/i3status/config',
|
||||||
|
ensure => file,
|
||||||
|
mode => "0644",
|
||||||
|
source => 'puppet:///modules/i3/i3status.conf'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,7 @@ class yaourt::packages () {
|
||||||
'hipchat',
|
'hipchat',
|
||||||
'htop',
|
'htop',
|
||||||
'i3lock',
|
'i3lock',
|
||||||
|
'i3status',
|
||||||
'i3status-rust',
|
'i3status-rust',
|
||||||
'i3lock-wrapper',
|
'i3lock-wrapper',
|
||||||
'i3-gaps',
|
'i3-gaps',
|
||||||
|
|
Loading…
Reference in a new issue