AMdesktop
v1.1.0

AM Desktop是一款基於電子的包裝器,它為Apple Music Web播放器提供了面部升降機,使其類似於桌面應用程序,並無縫地集成到桌面中。
默認情況下,窗口關閉到系統托盤,使您可以在後台繼續播放音樂。但是,並非所有桌面都可以支持此功能。
您可以通過設置環境變量或啟動參數禁用托盤:
# Environment variable
NO_TRAY=true
# Launch argument
--no-tray默認情況下,窗口是透明的,允許窗口上的圓角。但是,這可能會導致某些台式機上的問題或在Xwayland上運行。
您可以通過設置環境變量或啟動參數來禁用此內容:
# Environment variable
NO_TRANSPARENT=true
# Launch argument
--no-transparent如果該應用在Xwayland下啟動,並且您想使用Wayland,則可以設置以下環境變量:
ELECTRON_OZONE_PLATFORM_HINT=wayland要克隆並運行此存儲庫,您將需要安裝在計算機上的git和node.js(隨NPM)。從您的命令行:
# Clone this repository
git clone https://github.com/TuxTheAstronaut/AMdesktop.git
# Go into the repository
cd AMdesktop
# Install dependencies
npm install
# Run the app
npm start
# Build the app
npm run build