XR packaging for Fedora Atomic
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Migrate WayVR dashboard to a cask

+34 -2
+28
Casks/wayvr-dashboard.rb
··· 1 + # SPDX-License-Identifier: AGPL-3.0-only 2 + # Copyright (c) 2025 Shiloh Fen <shiloh@shilohfen.com> 3 + cask "wayvr-dashboard" do 4 + version "0.3.7" 5 + sha256 "3e5227f95497037c9ecdc03320fb943f2db0ad492e75d7702de6301a7baf0286" 6 + 7 + url "https://github.com/olekolek1000/wayvr-dashboard/releases/download/#{version}/wayvr-dashboard" 8 + name "WayVR Dashboard" 9 + desc "Launch desktop applications and games within VR (wlx-overlay-s addon)" 10 + homepage "https://oo8.dev/wayvr_dashboard" 11 + 12 + livecheck do 13 + url "https://github.com/olekolek1000/wayvr-dashboard" 14 + strategy :git 15 + end 16 + 17 + depends_on arch: :x86_64 18 + depends_on formula: "wlx-overlay-s" 19 + 20 + binary "wayvr-dashboard" 21 + 22 + zap trash: [ 23 + "~/.local/share/dev.oo8.wayvr-dashboard", 24 + "~/.local/share/wayvr-dashboard", 25 + "~/.cache/dev.oo8.wayvr-dashboard", 26 + "~/.cache/wayvr-dashboard" 27 + ] 28 + end
+2
Formula/wayvr-dashboard.rb Formula/disabled/wayvr-dashboard.rb
··· 8 8 license "MIT" 9 9 revision 1 10 10 11 + disable! date: "2025-09-06", because: "has been replaced by the cask", replacement_cask: "wayvr-dashboard" 12 + 11 13 # HACK: There are major issues when attempting to run GTK applications built with Homebrew on 12 14 # HACK: ...atomic distros at the moment. For now, we're just installing the prebuilt binary. 13 15
+4 -2
README.md
··· 9 9 brew tap matrixfurry.com/atomicxr https://tangled.sh/@matrixfurry.com/homebrew-atomicxr 10 10 ``` 11 11 12 - Applications (`brew install <application>`): 12 + Formulae (`brew install <application>`): 13 13 - [AtomicXR CLI (`axr`)](https://tangled.sh/@matrixfurry.com/atomic-xr): `atomicxr-cli` 14 14 - [WlxOverlay-S](https://github.com/galister/wlx-overlay-s): `wlx-overlay-s` 15 - - [WayVR Dashboard](https://github.com/olekolek1000/wayvr-dashboard): `wayvr-dashboard` 16 15 - [Monado Tracking Origin Calibrator](https://github.com/galister/motoc): `motoc` 17 16 - [OSC Avatar Manager](https://github.com/galister/oscavmgr): `oscavmgr` 18 17 - [VrcAdvert](https://github.com/galister/VrcAdvert): `vrc-advert` 18 + 19 + Casks (`brew install --cask <application>`): 20 + - [WayVR Dashboard](https://github.com/olekolek1000/wayvr-dashboard): `wayvr-dashboard` 19 21 20 22 ## Common Issues ## 21 23