fix: stabilize waybar with systemd and correct shebangs

This commit is contained in:
Bernardo Magri
2026-04-08 20:03:15 +01:00
parent 8ae026474f
commit ef54a4b67c
5 changed files with 9 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
exec-once = uwsm-app -- hypridle exec-once = uwsm-app -- hypridle
exec-once = uwsm-app -- mako exec-once = uwsm-app -- mako
exec-once = uwsm-app -- waybar # exec-once = uwsm-app -- waybar
exec-once = uwsm-app -- fcitx5 --disable notificationitem exec-once = uwsm-app -- fcitx5 --disable notificationitem
exec-once = uwsm-app -- swaybg -i ~/.config/nomarchy/current/background -m fill exec-once = uwsm-app -- swaybg -i ~/.config/nomarchy/current/background -m fill
exec-once = uwsm-app -- swayosd-server exec-once = uwsm-app -- swayosd-server

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
if pgrep -x hypridle >/dev/null; then if pgrep -x hypridle >/dev/null; then
echo '{"text": ""}' echo '{"text": ""}'

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
if makoctl mode | grep -q 'do-not-disturb'; then if makoctl mode | grep -q 'do-not-disturb'; then
echo '{"text": "󰂛", "tooltip": "Notifications silenced", "class": "active"}' echo '{"text": "󰂛", "tooltip": "Notifications silenced", "class": "active"}'

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
if pgrep -f "^gpu-screen-recorder" >/dev/null; then if pgrep -f "^gpu-screen-recorder" >/dev/null; then
echo '{"text": "󰻂", "tooltip": "Stop recording", "class": "active"}' echo '{"text": "󰻂", "tooltip": "Stop recording", "class": "active"}'

View File

@@ -3,6 +3,7 @@
{ {
programs.waybar = { programs.waybar = {
enable = true; enable = true;
systemd.enable = true;
style = '' style = ''
* { * {
background-color: #${config.colorScheme.palette.base00}; background-color: #${config.colorScheme.palette.base00};
@@ -41,4 +42,8 @@
''; '';
settings = [ (builtins.fromJSON (builtins.readFile ../../config/waybar/config.jsonc)) ]; settings = [ (builtins.fromJSON (builtins.readFile ../../config/waybar/config.jsonc)) ];
}; };
home.packages = with pkgs; [
font-awesome
];
} }