Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
found a fix maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
israfiel-a committed Aug 22, 2024
1 parent 45be051 commit a626917
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,14 @@ jobs:
- name: Install Dependencies
run: |
sudo apt update
sudo apt install libxrandr libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev libwayland-dev libxkbcommon-dev
sudo apt install gdm libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev libwayland-dev libxkbcommon-dev
- name: Create False Display
run: xrandr --fb 1280x1024 -display :0
run: |
mkdir -p ~/.config/systemd/user/org.gnome.Shell@wayland.service.d
touch ~/.config/systemd/user/org.gnome.Shell@wayland.service.d/persistent-virtual-monitor.conf
"[Service]\nExecStart=\nExecStart=/usr/bin/gnome-shell --virtual-monitor 1920x1080" > \
~/.config/systemd/user/org.gnome.Shell@wayland.service.d/persistent-virtual-monitor.conf
systemctl --user daemon-reload
- name: Build Project (Debug)
run: cmake -B build_debug -DCMAKE_BUILD_TYPE=Debug && cd build_debug && make
- name: Run Project (Debug)
Expand Down

0 comments on commit a626917

Please sign in to comment.