QuickWallは、Unsplashから最新の壁紙を取得し、デスクトップの背景として設定するための無料のオープンソースツールです。
窒素、fehバックグラウンドセッター、Xfce、KDE、Gnome、Unityで動作します。 Unsplashから壁紙を設定するだけでなく、壁紙に基づいてテーマを変更することもできます(ターミナルテーマのみのようです)。
UbuntuにQuickWallをインストールする方法:
1.)システムアプリケーションメニューからターミナルを開き、コマンドを実行してPythonパッケージインストーラーをインストールします。
sudo apt install python3-pip
2.)次に、コマンドを使用してソフトウェアをインストールします:
pip3 install QuickWall
QuickWallの使用方法:
ツールはコマンドラインで実行されますが、ユーザーは簡単に使用できます。デフォルトのGnomeデスクトップを備えたUbuntuの場合、次のいずれかのコマンドで動作させることができます。
QuickWall --setter gnome
QuickWall --random --setter gnome
QuickWall --search "SEARCH_TERM" --setter gnome
壁紙はデフォルトでユーザーの.cache/QuickWallフォルダーに保存されます。 --dir
を追加して場所を変更できます コマンドのフラグ:
QuickWall --dir ~/Downloads --setter gnome
コマンドの使用法の詳細:
usage: QuickWall [-h] [--version] [--clear-cache] [--setter SETTER] [-d] [--remove-id ID] [--dir DIR] [--id ID] [--random] [--search TERM] [--migrate] [--set-lockscreen] QuickWall - Quickly set latest wallpapers from Unsplash directly from the commandline. optional arguments: -h, --help show this help message and exit --version show the program version number and exit --clear-cache Clear the cache from the cache folder (~/.cache/QuickWall) --setter SETTER Wallpaper setter to be used. Currently supported ones: nitrogen, feh, xfce, kde, gnome, unity (default: nitrogen) -d, --disable-blacklist Disable adding the image to blacklisted ones. --remove-id ID Remove the passed ID from the blacklist. --dir DIR Directory to download the wallpapers --id ID Get a photo by its ID. --random Get random wallpapers. --search TERM Show wallpapers based on the passed term --migrate ONLY FOR EARLY USERS. Move the files from ~/.QuickWall to ~/.cache/QuickWall. --set-lockscreen Set lockscreen wallpaper (currently for KDE)
QuickWallをアンインストールします:
ソフトウェアを削除するには、次のコマンドを実行するだけです:
pip3 uninstall QuickWall
元の記事