waybar config is now in nix file

This commit is contained in:
2024-10-24 16:58:50 +02:00
parent fc1fb5fc5c
commit 188526fcfb
6 changed files with 170 additions and 187 deletions

View File

@ -22,6 +22,7 @@ monitor=HDMI-A-1, 1920x1080@60, auto, auto
exec-once = swaybg -i ~/.config/nitrogen/wallpaper.png&
exec-once = (sleep 2;activate-linux -c 1-1-1-0.7 -V 50 -H 50 -d)&
exec-once = waybar&
exec-once = alacritty&
###################
### MY PROGRAMS ###

View File

@ -1,103 +0,0 @@
{
"layer": "top",
"position": "top",
"height": 24,
// "width": 1366,
// Choose the order of the modules
"margin-left":5,
"margin-right":5,
"modules-left": ["hyprland/workspaces", "custom/music"],
"modules-center": ["hyprland/window"],
"modules-right": ["custom/fans", "custom/dgpu", "disk", "pulseaudio", "network", "cpu", "temperature", "custom/pipe", "memory", "battery", "clock"],
"hyprland/workspaces": {
"disable-scroll": true,
"all-outputs": false,
"format": "{id}"
},
"clock": { "interval" : 1,
"format-alt": " {:%Y-%m-%d}",
"format" : " {:%H:%M:%S}"
},
"cpu": {
"format": "  {usage}% |",
"interval":5
},
"memory": {
"format": "  {}% |",
"interval":5
},
"battery": {
"bat": "BAT0",
"states": {
"good": 79,
"warning": 30,
"critical": 15
},
"format-time": " {H}:{m}",
"format": " {icon} {capacity}%{time} |",
// "format-good": "", // An empty format will hide the module
// "format-full": "",
"format-icons": [" ", " ", " ", " ", " "],
"interval":10
},
"network": {
// "interface": "wlp2s0", // (Optional) To force the use of this interface
"format-wifi": " {icon} {essid} |",
"format-ethernet": "  {ifname}: {ipaddr}/{cidr} |",
"format-disconnected": " ⚠ Disconnected |",
"format-icons":["󰤟 ", "󰤢 ", "󰤥 ", "󰤨 "]
},
"pulseaudio": {
//"scroll-step": 1,
"format": " {icon}{volume}% |",
"format-bluetooth": "  {icon} {volume}% |",
"format-muted": "",
"format-icons": {
"headphones": " ",
"handsfree": "󰋎 ",
"headset": "󰋎 ",
"phone": " ",
"portable": " ",
"car": " ",
"default": [" ", " ", " "]
},
"on-click": "pavucontrol"
},
"temperature":{
"thermal-zone":0,
"critical-threshold":80,
"interval":5,
"format":" {icon} {temperatureC}°C ",
"format-icons": ["", "", "", "", ""]
},
"disk":{
"format":" 󰋊 {percentage_used}% |"
},
"custom/pipe":{
"format":"|"
},
"custom/music":{
"exec-if" : "playerctl metadata 2>&1 >/dev/null",
"exec" : "playerctl metadata --format ' {{ artist }} - {{title}}'",
"interval" : 1,
"interval-if" : 5
},
"custom/dgpu":{
"exec-if" : "test \"$(supergfxctl -g)\" = \"Hybrid\"",
"exec" : "echo \"  on |\"",
"interval-if" : 10,
"interval":100
},
"custom/fans":{
"exec-if" : "test \"$(cat /sys/class/hwmon/hwmon6/fan1_input)\" -gt 0 -o \"$(cat /sys/class/hwmon/hwmon6/fan2_input)\" -gt 0",
"exec" : "echo \" \" \"$(cat /sys/class/hwmon/hwmon6/fan1_input).$(cat /sys/class/hwmon/hwmon6/fan2_input) |\"",
"interval" : 1,
"interval-if" : 1
}
}

View File

@ -1,80 +0,0 @@
* {
border: none;
border-radius: 0;
font-family: "Iosevka Nerd Font";
font-size: 15px;
min-height: 0;
}
window#waybar {
background: transparent;
color: white;
}
#window {
font-weight: bold;
}
#workspaces button {
padding: 0 5px;
background: transparent;
color: white;
border-top: 2px solid transparent;
}
#workspaces button.focused {
color: #c9545d;
border-top: 2px solid #c9545d;
}
#mode {
background: #64727D;
border-bottom: 3px solid white;
}
#clock {
font-weight: bold;
}
#battery {
}
#battery icon {
color: red;
}
#battery.charging {
}
@keyframes blink {
to {
background-color: #ffffff;
color: black;
}
}
#battery.warning:not(.charging) {
color: white;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#cpu {
}
#memory {
}
#network {
}
#network.disconnected {
color: #f53c3c;
font-weight:bold;
}
#temperature.critical {
color: #ff2222;
}