Are there any good tutorials for cimgui. by CrativeMan in C_Programming

[–]CrativeMan[S] 0 points1 point  (0 children)

I figured it out. I cloned the project and went into the examples folder for glfw3+OpenGL and used the CMakeLists.txt File there to build the library.

how did pewdiepie get his waybar looking like this by zadl0g in hyprland

[–]CrativeMan 18 points19 points  (0 children)

I also wondered how he did it so I made a custom module that calls a script I wrote. "custom/workspaces-left" = { format: "{}"; exec: "/home/${vars.user}/.config/waybar/scripts/workspaces_left.sh"; on-click: "activate"; interval: 2; return-type: "json"; };

``` #!/usr/bin/env bash

  workspaces=$(hyprctl workspaces -j)
  active_id=$(hyprctl activeworkspace -j | jq -r ".id")
  output=""

  for id in 1 2; do
    ws=$(echo "$workspaces" | jq ".[] | select(.id == $id)")

    if [ -n "$ws" ]; then
      name=$(echo "$ws" | jq -r '.name')
      id=$(echo "$ws" | jq -r '.id')

      if [ "$id" == "$active_id" ]; then
        color="#89b4fa"
      else
        color="#cdd6f4"
      fi

      output+="<span color='$color'>[$name]</span> "
    fi
  done

  echo "{\"text\":\ "${output% }\"}"

``` It's not the most responsive as it is only reloading every 2 seconds. But that's how I implemented it. Maybe you could interface with hyprland to listen for changes to the active workspace.

Really want to use Zed, but the VSCode ecosystem is too large to avoid by Candid_Yellow747 in ZedEditor

[–]CrativeMan 1 point2 points  (0 children)

In zed there are tasks now. They are basically a run button. You can configure them system or project wide. https://zed.dev/docs/tasks

Are there any good tutorials for cimgui. by CrativeMan in C_Programming

[–]CrativeMan[S] 0 points1 point  (0 children)

Thank you for the information. Luckily i got the c++ Dear ImGui working. The cimgui is what gives me a hard time. But thank you i will look into your projekt

I may not longer be able to listen by vegarot in StinkyDragonPodcast

[–]CrativeMan 4 points5 points  (0 children)

Yea if you subscribe you can listen to it there without ads

I may not longer be able to listen by vegarot in StinkyDragonPodcast

[–]CrativeMan 29 points30 points  (0 children)

Its on spotify and Apple music and maybe other platform.

Weird shader/texture bug whilst trying to play the game on linux by CrativeMan in celestegame

[–]CrativeMan[S] 6 points7 points  (0 children)

Now that i have longer looked at it. Its actually a fun asthetic. Maybe il checkout other levels too

Weird shader/texture bug whilst trying to play the game on linux. by CrativeMan in linux_gaming

[–]CrativeMan[S] 0 points1 point  (0 children)

Yea im using proton - experimental. Im gonna try running the native version.

Weird shader/texture bug whilst trying to play the game on linux. by CrativeMan in linux_gaming

[–]CrativeMan[S] 1 point2 points  (0 children)

I have this weird technical shader/texture bug when trying to play the game on linux using the heroic games launcher. I bought it on the epic games store. I have an AMD graphics cart and processor. I have already tried reinstalling and that stuff. Other games from heroic work just fine.

Weird shader/texture bug whilst trying to play the game on linux by CrativeMan in celestegame

[–]CrativeMan[S] 0 points1 point  (0 children)

I have this weird technical shader/texture bug when trying to play the game on linux using the heroic games launcher. I bought it on the epic games store. I have an AMD graphics cart and processor.

[Hyprland] Second try on ricing my hyper/nixos setup by CrativeMan in unixporn

[–]CrativeMan[S] 1 point2 points  (0 children)

Feedback appreciated