Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
65 views

I'm working on a project that uses an X440 radio from Ettus Research, which relies on UHD under the hood for its API. My application has three main components: C++ files that handle all of the UHD/...
cawald_18's user avatar
0 votes
0 answers
128 views

I am building my app with QT5.9 on Linux. I do not want Xserver to add a fixed style system title to my dialog like below (title underlined in red below), Because of this, I wrote my own Dialog Class,...
Ren Zhaofeng's user avatar
0 votes
0 answers
128 views

I'm working on a C++ application that uses the X11 library, and I want to change the desktop background to a PNG image. I have a piece of code that loads a PNG image and displays it in a window, but I ...
senfonist's user avatar
2 votes
0 answers
105 views

Using X on Linux, Tkinter (Python 3.12) tells me that I have a DPI value of ~96 (wrong), while the X server tells me that my DPI value is ~185 (correct). In [1]: import tkinter as tk ...: root = tk....
gboffi's user avatar
  • 25.4k
0 votes
0 answers
62 views

x11 code //use x11 api for (int i = (xrectw >> 1) + cc; i < CANVAS_WIDTH; i += xrectw) { for (int j = (yrectw >> 1) + cc; j < CANVAS_HEIGHT; j += yrectw) { XDrawLine(...
A Mr's user avatar
  • 31
2 votes
0 answers
2k views

I am a newbie with using raspberry and I am using chilipie-kiosk to develop a kiosk on a raspberry pi. The idea is when the Raspberry Pi starts, the Chromium browser is launched with a page that we ...
Jorge Palacios Zaratiegui's user avatar
1 vote
0 answers
989 views

I want to run Chromium browser inside docker container. So the first step for me would be just to manage to start startx inside container. Now I managed to make service which is just: startx Now when ...
ivy's user avatar
  • 21
0 votes
0 answers
40 views

I have Hello work Java app package org.example; import java.awt.Color; import java.awt.Dimension; import java.awt.FlowLayout; import javax.swing.BorderFactory; import javax.swing.JFrame; import javax....
Mindaugas Jaraminas's user avatar
1 vote
1 answer
104 views

i wrote a simple window manager using Xlib. the window manager runs, and launching a terminal with the Super+t shortcut works correctly. however, when i attempted to close the focused window by ...
Rico's user avatar
  • 11
1 vote
1 answer
1k views

I have a Raspberry Pi 3b and a 7" touchscreen connected to it. I want to run a PyQt5 application on this device with the image I created. When I use core-image-sato when creating an image and ...
ogusis01's user avatar
0 votes
1 answer
242 views

I'm trying to launch a NodeJS script using puppeteer with headless = false, this script is run by PM2 (process manager) at startup. I'm not having a desktop environment, this is run on a remote server ...
ScreamZ's user avatar
  • 610
0 votes
0 answers
75 views

I want to intercept the damaged region image of the client in ProcShmPutImage of xserver. I can confirm that the image is in Zpixmap format with a depth of 24 and bits_per_pixel is 32. I use the ...
FFa's user avatar
  • 1
1 vote
0 answers
346 views

I'm looking for ways that I can test my window manager in a nested X server launched from code, ideally. While I'm working in Rust, I suspect this is going to be a language-independent task. I'm ...
Antikyth's user avatar
0 votes
1 answer
55 views

I am trying to integrate selenium tests suite (Maven) with jenkins and I am using chrome headless browser but facing error as below. [2114:2114:0905/122912.875011:ERROR:ozone_platform_x11.cc(239)] ...
Gunjit Sidher's user avatar
0 votes
1 answer
1k views

I am working on a Windows desktop. I am trying to run Cypress in a devcontainer which runs in my local Docker Desktop. I am using VcXsrv as local X Server to enable the GUI. Actually it works fine ...
sebgamby's user avatar
0 votes
1 answer
40 views

good morning, i am trying to make with cygwin for xserver but it keeps throwing missing winauth.h file. InitOutput.c:68:10: fatal error: winauth.h: No such file or directory 68 | #include "...
dkcloud9's user avatar
  • 159
1 vote
1 answer
163 views

like the Subject of the Topic said: CygWin for Windows comes with a X-Server port for Windows How can I create a "moveable" Window, with the X-Server functions that are available when you (...
Jens's user avatar
  • 131
0 votes
0 answers
642 views

I am running a bunch of web tests remotely, with Screen on a Ubuntu machine, running Lighthouse on a Puppeteer browser instance. Current setup used to work very fine until 2022 November when I ran ...
Jin's user avatar
  • 304
0 votes
0 answers
117 views

I am playing with the X protocol and noticed, that when my program sends SetSelectionOwner, several other clients instantly send to me SelectionRequest events with target TARGETS. But how they know ...
johnfound's user avatar
  • 7,081
1 vote
0 answers
614 views

I've followed this article for running Cypress on WSL (Ubuntu distribution). When I run cypress open in WSL it does open Cypress app on Windows but Cypress doesn't display anything and WSL throws ...
van_folmert's user avatar
  • 4,669
1 vote
1 answer
1k views

I am trying to run Xvfb within a Docker container, but it is failing with the error: $ Xvfb :0 -nolisten tcp -screen 0 1024x768x24 _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed ...
rgov's user avatar
  • 4,503
-2 votes
1 answer
853 views

What can we do if my docker service is running on a remote server with no display, and we need to connect the GUI app running in the docker container to the DISPLAY at the local system? In my scenario ...
Prateek Raj Gautam's user avatar
1 vote
0 answers
363 views

i want to RUN a simple nodejs script which runs headful playwright in a linux RDP running xrdp with gnome as root , and i want to target a non root user's $DISPLAY the goal is i don't want the rdp ...
ABDELJALIL AIT ETALEB's user avatar
2 votes
2 answers
1k views

This is just a conceptual question to test if I understand how X works. Let's I have an X server running on machine A. If I make a new directory called /tmp/.X11-unix on on machine B, and use sshfs to ...
GuPe's user avatar
  • 307
4 votes
0 answers
992 views

I have a Linux system (Raspberry Pi 4 with DietPi) which controls some RGB LED Matrix panels, by transmitting buffers of RGB pixels. I want to display the content of a virtual frame buffer on the LED ...
Esben von Buchwald's user avatar
0 votes
0 answers
613 views

I have a use-case where I need to run a GUI application from Docker and display it on either a Windows or a Linux host. (In this example I try it with firefox) For Windows, it works as intended using ...
usersina's user avatar
  • 1,965
2 votes
1 answer
481 views

I would like to get a list of windows + window names of all open windows in X11 using go. I assume that the xgb package would be used.
1nf's user avatar
  • 23
0 votes
1 answer
1k views

I have WSL 2 installed with Ubuntu and the i3 window manager. I want to run VSCode in the i3 x server environment, but whenever I run VSCode it's opened as a Microsoft Windows window. How do I force ...
validname's user avatar
  • 1,537
1 vote
0 answers
506 views

I'm trying to run Xorg app on a k8s cluster. If i add the following in the container part my pod description, it works fine. securityContext: privileged: true However, for security ...
Ptiseb's user avatar
  • 947
0 votes
1 answer
41 views

I started two xservers: xwin.exe :0 and xwin.exe :1 If I do ssh -X remotehost then xterm opens on first X server. How to make xterm open on second X server?
wibotwi's user avatar
  • 118
1 vote
0 answers
717 views

In a school project, we've been asked to solve the following problem: our students use some software (desktop application )for their studies like packet-tracer, eclipseIDE, qjis, etc. and they may ...
ta9i's user avatar
  • 11
6 votes
1 answer
7k views

I'm attempting to figure out how to open a headed browser to do some tasks from inside of NestJs application running in a docker container. Application Code: import { Controller, Get } from '@nestjs/...
Eric Heitmuller's user avatar
1 vote
0 answers
433 views

We are trying to start xserver as user using startx command, once startx start the X server we try to start the gnome-session on same display. But when we connect to the display using x11vnc it shows ...
Rangesh Gupta's user avatar
0 votes
1 answer
213 views

I'm a Linux newbie and the concepts of X etc are daunting to me, so please be patient. I'm trying to start X server using the bash command startx in python like cmd = 'startx &' subprocess.Popen(...
QuestionBank's user avatar
0 votes
1 answer
78 views

I'm writing a method for keyboard handling where I'm passing the key unicodes and firing keystrokes using the XTestFakeKeyEvent Method of X11. Now my issue is that after the opening the display, if ...
Mohit Pardasani's user avatar
2 votes
0 answers
2k views

Well, I have some sort of problems and that one may be the root of them. I just want to know if that output is normal. ~$ echo $DISPLAY :1 Is there any problem? According to my research, it should ...
Prihex's user avatar
  • 362
0 votes
1 answer
543 views

I well used the command "crontab -e" and added this task : * * * * * * bash /home/user1/launcher.sh The content of launcher.sh is : #!/bin/bash PATH=/home/user1/.local/bin:/usr/local/sbin:/...
floupinette's user avatar
0 votes
0 answers
332 views

I am making a simple xcb application and I noticed that when XCB_EVENT_MASK_KEY_PRESS is in the event mask and XCB_EVENT_MASK_KEY_RELEASE is not in the event mask I still get XCB_KEY_RELEASE events in ...
C. Lang's user avatar
  • 623
5 votes
0 answers
1k views

I want to run my Electron Apps in version 16 on Ubuntu with WSL2 and x-server (VcXsrv). The application opens under Windows 10, but unfortunately the screen is blank. Even if I just start the Electron ...
Gregor Biswanger's user avatar
1 vote
0 answers
2k views

I want to run telegram in docker, so I found this repository: https://hub.docker.com/r/xorilog/telegram/ I tried to run this command: docker run --rm -it --name telegram \ --hostname=$(hostname)...
rowconspire's user avatar
4 votes
1 answer
3k views

I want to enable a docker VM to connect to a port on the localhost of the host starting docker on windows. docker proposes port forwarding but IMHO only to expose a docker's VM port to the host ...
le_top's user avatar
  • 513
0 votes
1 answer
2k views

How to configure MobXterm X server to get display of Docker GUI interactive app on windows 10 to avoid error: “_tkinter.TclError: no display name and no $DISPLAY environment variable
Parasharbhatt's user avatar
2 votes
0 answers
658 views

I am using WSL2 with VcXsrv as X Server. More specifically, I am processing images using opencv. When I visualize an image, the window generated by the X server cannot be resized. Can you help me ...
Simone's user avatar
  • 21
1 vote
1 answer
1k views

I just can not open files from vscode integrated terminal while on remote-ssh connection Local machine: windows 10 Remote machine: Ubuntu 20.04 here is a log from code trying to launch abc.txt $ code ...
Rahul's user avatar
  • 21
0 votes
1 answer
3k views

i am using MObaXterm 12.4 for GUI installation but getting the below display error, and installation wizard was not opening due to display error. but the same mobaxtrem gui is working fine for ...
Kiran Kumar's user avatar
0 votes
1 answer
379 views

I have a containerized legacy application using VNC as an XServer. I'd like to run this application in a Kubernetes cluster, and start an application instance on-demand, when a new user logs in the ...
Vereb's user avatar
  • 14.9k
3 votes
0 answers
495 views

I'm trying to run the example GLFW program on WSL2 with vcxsrv as the X server. There are no problems running the current program with the two lines commented out. When I uncomment only glCear(...
spaL's user avatar
  • 738
5 votes
2 answers
4k views

I have followed every single step in this tutorial. Double Checked. Double Installed. https://nickymeuleman.netlify.app/blog/gui-on-wsl2-cypress But I get the error : [3974:0912/194522.792278:ERROR:...
james's user avatar
  • 525
0 votes
0 answers
725 views

I am trying to run a gui commands in systemd services which i want it to execute on system startup. these are my files. oversteer.sh file: #!/bin/bash sleep 1s export DISPLAY=:99.0 export ...
siddharth's user avatar
0 votes
1 answer
230 views

So, the story is like this: I have 2 linux machines with ubuntu 20.04 installed on both. one of them, call it computer A doesn't have X on it because it is the server version installed and I don't ...
John11's user avatar
  • 519

1
2 3 4 5
8