ChanServ changed the topic of #wayland to: https://wayland.freedesktop.org | Discussion about the Wayland protocol and its implementations, plus libinput
Brainium has joined #wayland
Brainium has quit [Quit: Konversation terminated!]
nerdopolis has quit [Ping timeout: 480 seconds]
DMJC has joined #wayland
<DMJC> trying to run amdgpu on wayland with a PSVR2 VR headset
<DMJC> EDID has block1 1920x1080 and block2 4k@120hz
<DMJC> the AMDGPU is only choosing the 1920 option, any way to force it to use the 4k 120hz?
<DMJC> intel GPU works fine
<DMJC> detects/uses 4k@120hz
andyrtr_ has joined #wayland
Emantor has quit [Quit: ZNC - http://znc.in]
Emantor has joined #wayland
andyrtr has quit [Ping timeout: 480 seconds]
andyrtr_ is now known as andyrtr
abeltramo589523 has quit [Quit: The Lounge - https://thelounge.chat]
abeltramo589523 has joined #wayland
iomari891 has joined #wayland
<DemiMarie> #_oftc_#radeon:matrix.org
<DemiMarie> Or switch from HDMI to DisplayPort
DMJC has quit [Ping timeout: 480 seconds]
mxz__ has joined #wayland
mxz has quit [Ping timeout: 480 seconds]
mxz_ has quit [Ping timeout: 480 seconds]
mxz__ is now known as mxz
kts has joined #wayland
mxz_ has joined #wayland
diod has joined #wayland
mxz has quit [Ping timeout: 480 seconds]
mxz_ is now known as mxz
mxz_ has joined #wayland
crazybyte has quit [Quit: Bye]
crazybyte has joined #wayland
diod has quit []
kts has quit [Quit: Leaving]
adamtajti has quit []
JakeSays has joined #wayland
JakeSays1 has quit [Ping timeout: 480 seconds]
rv1sr has joined #wayland
glennk has joined #wayland
sima has joined #wayland
nysach has joined #wayland
nysach has quit [Remote host closed the connection]
adamtajti has joined #wayland
DMJC has joined #wayland
coldfeet has joined #wayland
<wlb> wayland-protocols Issue #227 opened by () commit-start-time protocol https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/227
DMJC has quit [Ping timeout: 480 seconds]
andyrtr has quit [Ping timeout: 480 seconds]
andyrtr has joined #wayland
andyrtr_ has joined #wayland
andyrtr has quit [Ping timeout: 480 seconds]
andyrtr has joined #wayland
andyrtr_ has quit [Ping timeout: 480 seconds]
andyrtr has quit [Ping timeout: 480 seconds]
andyrtr has joined #wayland
wildcards has joined #wayland
<wildcards> hello
<immibis> hello
andyrtr_ has joined #wayland
<wildcards> Anyone here using hyprland? Have a question about running a script from keybinds
andyrtr has quit [Ping timeout: 480 seconds]
andyrtr_ is now known as andyrtr
<vyivel> wildcards: you'll have more luck asking in a hyprland-specific space like their discord server
<wildcards> I see :)
andyrtr_ has joined #wayland
andyrtr has quit [Ping timeout: 480 seconds]
andyrtr has joined #wayland
andyrtr_ has quit [Ping timeout: 480 seconds]
rasterman has joined #wayland
kts has joined #wayland
andyrtr_ has joined #wayland
kts has quit [Quit: Leaving]
andyrtr has quit [Ping timeout: 480 seconds]
andyrtr_ is now known as andyrtr
andyrtr_ has joined #wayland
andyrtr has quit [Ping timeout: 480 seconds]
andyrtr_ is now known as andyrtr
pramodvu has joined #wayland
pramodvu has quit [Quit: Konversation terminated!]
pramodvu has joined #wayland
<bluetail> discord >_> I was curious and stopped trying cause you need a verified phone number for their specific "server"
Moprius has joined #wayland
lsd|2 has joined #wayland
soreau has quit [Ping timeout: 480 seconds]
nerdopolis has joined #wayland
Moprius has quit [Ping timeout: 480 seconds]
soreau has joined #wayland
feaneron has quit [Ping timeout: 480 seconds]
marcelospe_ has joined #wayland
nerdopolis has quit [Ping timeout: 480 seconds]
Brainium has joined #wayland
rasterman has quit [Quit: Gettin' stinky!]
<immibis> welcome to the enshittification of everything
<immibis> please drink verification can
nerdopolis has joined #wayland
pramodvu has quit [Quit: Konversation terminated!]
pramodvu has joined #wayland
coldfeet has quit [Remote host closed the connection]
andyrtr_ has joined #wayland
andyrtr has quit [Ping timeout: 480 seconds]
andyrtr_ is now known as andyrtr
iomari891 has quit [Ping timeout: 480 seconds]
wildcards has quit [Ping timeout: 480 seconds]
coldfeet has joined #wayland
pramodvu has quit [Quit: Konversation terminated!]
pramodvu has joined #wayland
lsd|2 has quit [Quit: KVIrc 5.2.2 Quasar http://www.kvirc.net/]
lsd|2 has joined #wayland
lsd|2 has quit []
lsd|2 has joined #wayland
lsd|2 has quit []
lsd|2 has joined #wayland
lsd|2 has quit [Ping timeout: 480 seconds]
pramodvu has quit [Remote host closed the connection]
pramodvu has joined #wayland
marcelospe_ has quit [Quit: Leaving]
lou has joined #wayland
<lou> Hello there, I have made a simple program to 'snoop' on the wayland socket to learn more about wayland. The program creates a new unix domain socket which parses and prints the wayland messages transmitted. However, whenever I set the WAYLAND_DISPLAY environment variable to the absolute path of my newly created unix socket, I can't seem to be able to run programs. Could someone explain to me why would this fail?
<lou> Running foot for example, I get the errors:
<lou> err: wayland.c:1230: failed to read events from the Wayland socket: Invalid argumenterr: fdm.c:215: no such FD: 6
<kennylevinsen> lou: look at wlhax for inspiration maybe, it does something similar
<vyivel> lou: are you using send/recv to pass data around?
<kennylevinsen> Could be that you fail to copy fds from the cmsg’s
<vyivel> if so, look into sendmsg/recvmsg, wayland programs send file descriptors as aux data
<lou> looks nice, thank you kennylevinsen
<lou> I made the dumbest program ever in golang
<lou> go io.Copy(debugDestConn, sourceConn) // Send data from source to destination. go io.Copy(debugSourceConn, destConn) // Send data from destination back to source.
<kennylevinsen> wlhax ain’t pretty inside either
<kennylevinsen> Yeah that won’t work lol
<kennylevinsen> Need to deal with control messages
<lou> alright, I'll look into it, thank you!
<linkmauve> Have a look at waypipe as well, it uses a different protocol to transmit the data from those fds from one computer to another.
<lou> The end goal of my project is to be able to create a waypipe "proxy" to impede my virtual machines from obtaining the contents of my clipboard while still being able of triggering a copy manually
iomari891 has joined #wayland
pramodvu has quit [Remote host closed the connection]
pramodvu has joined #wayland
pramodvu has quit [Remote host closed the connection]
pramodvu has joined #wayland
pramodvu has quit [Remote host closed the connection]
nerdopolis has quit [Ping timeout: 480 seconds]
nerdopolis has joined #wayland
pramodvu has joined #wayland
iomari891 has quit [Ping timeout: 480 seconds]
iomari891 has joined #wayland
nerdopolis has quit [Ping timeout: 480 seconds]
Brainium has quit [Quit: Konversation terminated!]
Brainium has joined #wayland
Brainium has quit []
pramodvu has quit [Remote host closed the connection]
rgallaispou has joined #wayland
lsd|2 has joined #wayland
lsd|2 has quit [Ping timeout: 480 seconds]
nerdopolis has joined #wayland
nerdopolis has quit [Ping timeout: 480 seconds]
nniro has quit [Ping timeout: 480 seconds]
coldfeet has quit [Remote host closed the connection]
riteo has quit [Ping timeout: 480 seconds]
nniro has joined #wayland
psykose has quit [Remote host closed the connection]
psykose has joined #wayland
karenw has joined #wayland
nerdopolis has joined #wayland
Brainium has joined #wayland
iomari891 has quit [Ping timeout: 480 seconds]
iomari891 has joined #wayland
lou has quit [Remote host closed the connection]
rasterman has joined #wayland
sima has quit [Ping timeout: 480 seconds]
iomari891 has quit [Ping timeout: 480 seconds]
lsd|2 has joined #wayland
outlander has joined #wayland
rasterman has quit [Quit: Gettin' stinky!]
glennk has quit [Ping timeout: 480 seconds]
crissdell has joined #wayland
rv1sr has quit []
outlander has quit [Quit: Page closed]
lsd|2 has quit [Ping timeout: 480 seconds]