36 lines
679 B
YAML
36 lines
679 B
YAML
# This is an example WayVR panel configuration. It demonstrates all the capabilities of this module.
|
|
# looking to make changes?
|
|
# drop me in ~/.config/wlxoverlay/wayvr.yaml
|
|
#
|
|
|
|
version: 1
|
|
|
|
displays:
|
|
Disp1:
|
|
width: 640
|
|
height: 480
|
|
scale: 1.25
|
|
Disp2:
|
|
width: 1280
|
|
height: 720
|
|
scale: 2.0
|
|
|
|
catalogs:
|
|
default_catalog:
|
|
apps:
|
|
- name: "Calc"
|
|
target_display: "Disp1"
|
|
exec: "kcalc"
|
|
env: ["FOO=bar"]
|
|
|
|
- name: "htop"
|
|
target_display: "Disp1"
|
|
exec: "konsole"
|
|
args: "-e htop"
|
|
|
|
- name: "Browser"
|
|
target_display: "Disp2"
|
|
exec: "cage"
|
|
args: "chromium -- --incognito"
|
|
|