Also, I thought Neofetch just always interpreted River as Sway, but I’ve now seen people’s Neofetch screenshots saying River. How do I get Neofetch to tell I’m using River not Sway?

    • communismOP
      arrow-up
      4
      arrow-down
      0
      ·
      7 months ago
      link
      fedilink

      I’m showing you the parts I’m happy with—a lot of programs are not customised! Also, it’s a placeholder wallpaper & neofetch theme, etc

      • Lunya \ she/it
        arrow-up
        4
        arrow-down
        0
        ·
        7 months ago
        link
        fedilink

        you just like me frfr (I’d post here if I’d customize my bar)

  • Lunya \ she/it
    arrow-up
    5
    arrow-down
    0
    ·
    7 months ago
    link
    fedilink

    To determine the current WM in Wayland, neofetch first tries getting the process connected to the current Wayland display. If that fails, it checks all running processes against a hardcoded list of known WMs (which includes river).

    In practice, it seems to prefer the value of XDG_CURRENT_DESKTOP, but idrk, neofetch is magic.

    You might’ve seen people use fastfetch, which should just get it right, but is also magic, tho at least c and not bash.

    • communismOP
      arrow-up
      1
      arrow-down
      0
      ·
      7 months ago
      link
      fedilink

      Hm, I have lsof installed. Wonder why it’s showing Sway then. Not a big deal, I won’t waste time trying to get it to show

  • DictatorGator
    arrow-up
    1
    arrow-down
    0
    ·
    7 months ago
    link
    fedilink

    Is that waybar ? I saw the video from Isaac Freund on youtube I really liked the bar that he had on his setup, I wanted to emulate that on my setup.

    • communismOP
      arrow-up
      2
      arrow-down
      0
      ·
      7 months ago
      link
      fedilink

      Yep, waybar. Much better than polybar as you can customise it with css

      • DictatorGator
        arrow-up
        2
        arrow-down
        0
        ·
        7 months ago
        link
        fedilink

        Could you maybe share the configuration files ? I was trying to emulate the box type of waybar for my river setup. I wanted to know how you got that border outline in that color.

        • communismOP
          arrow-up
          2
          arrow-down
          0
          ·
          7 months ago
          link
          fedilink

          For the border it’s just css. In your style.css:

          window#waybar {
            background-color: @background;
            color: @foreground;
            opacity: 1;
            border: 1px solid @accent;
          }
          

          (where those are variables representing my waybar colours, you can ofc use literal values instead)

          • DictatorGator
            arrow-up
            1
            arrow-down
            0
            ·
            7 months ago
            link
            fedilink

            Many thanks. I did some experimenting yesterday and found out about it. Thank you nonetheless.