[hyprland] notch apple (rimgo.drgns.space)
submitted 2 years ago* (last edited 2 years ago) by to c/unixporn@lemmy.ml
 

i despise bars but it would still be nice to know the time!

detail(s

more screenshots here (how do people even make those bunched up ones???)

you are viewing a single comment's thread
view the rest of the comments
[–] 3 points 2 years ago* (4 children)

i despise bars but it would still be nice to know the time

I have a script set up to only show the bar when i have my launcher up. I can share it here if you like.

  • source
  • hideshow 8 child comments
  • [–] 2 points 2 years ago* (last edited 2 years ago) (1 child)

    @phantomwise@kolektiva.social @qon4@lemmy.zip

    #! /bin/bash
    
    bar="waybar"
    launcher="fuzzel"
    
    if [ -z "$(pgrep -x $launcher)" ];
    then
    $bar &
    $launcher
    pkill -x $bar
    else
    pkill -x $launcher
    fi
    
  • source
  • parent
  • hideshow 2 child comments