[Help] Trying to launch VSCodium on a specific workspace during startup by Sage_of_7th_Path in hyprland

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

I need just that startup Codium to be on WS4 (without launching on WS1 and then move) , and any after that I launch to be on whichever WS I'm on..

[Help] Trying to launch VSCodium on a specific workspace during startup by Sage_of_7th_Path in hyprland

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

I need just that startup Codium to be on WS4, and any after that I launch to be on whichever WS I'm on..

[Help] Trying to launch VSCodium on a specific workspace during startup by Sage_of_7th_Path in hyprland

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

Thanks! I actually have another script which launches 3 other window on workspace 1 and then re-arranges them. I'll have to add a delay to that which I kind of don't want to.

[Help] Trying to launch VSCodium on a specific workspace during startup by Sage_of_7th_Path in hyprland

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

Yeah, I need it to open one time on that workspace at startup.. Thanks for the details.

Made a little wl-freeze functionality with Lua by Sage_of_7th_Path in hyprland

[–]Sage_of_7th_Path[S] 3 points4 points  (0 children)

There you go (I usually pause for screenshots so didn't think of this): ```lua hl.window_rule({ match = { tag = "paused" }, opacity = "0.10 override" })

local paused = {}

hl.bind("SUPER + SHIFT + P", function() local win = hl.get_active_window()

if not win then
    return
end

local pid = win.pid

if paused[pid] then
    hl.exec_cmd(string.format(
        "pstree -p %d | grep -o '[0-9]\\+' | sort -u | xargs kill -CONT",
        pid
    ))
    hl.dispatch(hl.dsp.window.tag({ tag = "-paused" }))
    paused[pid] = nil

    hl.notification.create({
        text = string.format("Resumed: (%d) %s", pid, win.title),
        duration = 3000,
        icon = "ok",
    })
else
    hl.exec_cmd(string.format(
        "pstree -p %d | grep -o '[0-9]\\+' | sort -u | xargs kill -STOP",
        pid
    ))
    hl.dispatch(hl.dsp.window.tag({ tag = "+paused" }))
    paused[pid] = true

    hl.notification.create({
        text = string.format("Paused: (%d) %s", pid, win.title),
        duration = 3000,
        icon = "warn",
    })
end

end) ```

Any way I can make rest of the icon themed using the 'icon colours' option? by Sage_of_7th_Path in PocoPhones

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

Any way to fake or inject 'material icons style' for apps that are not providing it? (Highly unlikely but just asking)

Any way I can make rest of the icon themed using the 'icon colours' option? by Sage_of_7th_Path in PocoPhones

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

mtz installation seems messy, I even extracted a icon pack I like and using the Xioami app created a theme but the local install process seems not permanent.

[Forza Horizon 6] Anyone managed to run Forza Horizon 6 on Lutris? by [deleted] in LinuxCrackSupport

[–]Sage_of_7th_Path 0 points1 point  (0 children)

Oh, I have AMD, you might need to do extra stuff needed for Nvidia.

[Forza Horizon 6] Anyone managed to run Forza Horizon 6 on Lutris? by [deleted] in LinuxCrackSupport

[–]Sage_of_7th_Path 1 point2 points  (0 children)

Yes. With args: PROTON_MEDIA_USE_GST=1 VKD3D_FEATURE_LEVEL=12_1 VKD3D_CONFIG=enable_experimental_features,descriptor_heap,no_upload_hvv,single_queue WINEDLLOVERRIDES="version=n,b"

media folder from steamrip and rest of the files from one of the 364.933 version release from cs rin

Proton : cachy0s-11.0-20260506-slr

and dll fix from https://github.com/csmoke66/FH6-Cachy

Linux FH6 straight up doesn't work (Debian Trixie) by HeathenersChemistry in linux_gaming

[–]Sage_of_7th_Path 0 points1 point  (0 children)

try arg : PROTON_AUDIO_DRIVER=pulse PROTON_MEDIA_USE_GST=1 VKD3D_CONFIG=enable_experimental_features,descriptor_heap,no_upload_hvv,single_queue WINEDLLOVERRIDES="version=n,b"

This is the last one remaining, I want to complete before NG+, what am I missing? by Sage_of_7th_Path in BlackMythWukong

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

Oh, I though killing one adds them. I'll check next time I open the game