Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 639 Bytes

File metadata and controls

39 lines (27 loc) · 639 Bytes

X11 Support

StarryOS supports X11 for GUI.

Steps

  1. Make sure you run StarryOS with necessary flags:

    make img ARCH=riscv64
    make run ARCH=riscv64 GRAPHIC=y INPUT=y
  2. In StarryOS, install necessary dependencies:

    apk add xorg-server xf86-video-fbdev xf86-input-evdev
  3. Start the X server and set the DISPLAY environment variable:

    X &
    export DISPLAY=:0
  4. You can now run graphical applications, for example:

    apk add xcalc
    xcalc
  5. dwm is also available as a lightweight window manager.

    apk add dwm
    dwm &