macos wallpaper
v2.3.2
MacOSのデスクトップ壁紙を管理します
これは、コマンドラインアプリとSwiftパッケージの両方です。
壁紙がディレクトリに設定されている場合でも、アクティブな壁紙の取得を正しく処理します。
macOS 10.14.4以降が必要です。
brew install wallpaperバイナリをダウンロードして、 /usr/local/binに入れます。
デフォルトでは、すべての画面の壁紙を設定して取得します。 --screenフラグを使用してこれを変更します。
$ wallpaper
USAGE: wallpaper <subcommand>
OPTIONS:
--version Show the version.
-h, --help Show help information.
SUBCOMMANDS:
get Get current wallpaper images.
set Set image as wallpaper.
set-solid-color Set solid color as wallpaper.
screens Get a list of available screens.
$ wallpaper get --help
OVERVIEW: Get current wallpaper images.
USAGE: wallpaper get [--screen <screen>]
OPTIONS:
--screen <screen> Values: all, main, <index> (default: all)
$ wallpaper set --help
OVERVIEW: Set image as wallpaper.
USAGE: wallpaper set <path> [--screen <screen>] [--scale <scale>] [--fill-color <fill-color>]
ARGUMENTS:
<path> The path to the image to use as wallpaper.
OPTIONS:
--screen <screen> Values: all, main, <index> (default: all)
--scale <scale> Values: auto, fill, fit, stretch, center (default: auto)
--fill-color <fill-color>
Format: Hex color <RRGGBB>
$ wallpaper set-solid-color --help
OVERVIEW: Set solid color as wallpaper.
USAGE: wallpaper set-solid-color <color> [--screen <screen>]
ARGUMENTS:
<color> The color to use as wallpaper.
OPTIONS:
--screen <screen> Values: all, main, <index> (default: all)
wallpaper set unicorn.jpgwallpaper set-solid-color 0000ffwallpaper get
/Users/sindresorhus/unicorn.jpgこれを構築するには、最新のXcodeおよびMacOSバージョンが必要です。パッケージは、MacOS 10.14.4以降をサポートします。
Package.swiftに以下を追加します。
. package ( url : " https://github.com/sindresorhus/macos-wallpaper " , from : " 2.3.2 " )または、Xcodeにパッケージを追加します。
import Wallpaper
let imageURL = URL ( fileURLWithPath : " <path> " , isDirectory : false )
try ! Wallpaper . set ( imageURL , screen : . main , scale : . fill )
let solidColor = NSColor . blue
try ! Wallpaper . set ( solidColor , screen : . main )
print ( try ! Wallpaper . get ( screen : . main ) )詳細については、ソースを参照してください。
swift run wallpaperswift build --configuration=release --arch arm64 --arch x86_64 && mv .build/apple/Products/Release/wallpaper . Do Not Disturb