nrw


Namenrw JSON
Version 0.6 PyPI version JSON
download
home_page
SummaryA simple program that sets random images as desktop wallpaper in *nix operating systems.
upload_time2023-10-10 04:59:44
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT License Copyright (c) 2023 Marcus Bowman Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords gnome cinnamon nitrogen linux random wallpaper desktop background unsplash
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Nix Random Wallpaper

A simple program that sets random wallpaper images as desktop backgrounds in nix based operating systems / window managers. It fetches images from a local directory or Unsplash, composes a new image to match display size and arrangement, and sets the new image as the desktop background.

This project was forked from [Gnome Random Wallpaper](https://github.com/miliarch/gnome_random_wallpaper), which while great at its original limited scope, is no longer maintained.

**Example arrangement**

![Example Arrangement](example_arrangement.png)

**Example wallpaper**

![Example Wallpaper](example_wallpaper.jpg)

## Usage

Nix Random Wallpaper (`nrw`) currently makes the following assumptions about the user:
* The user will configure some external scheduler to prompt the `nrw` command to run in the background
* The user doesn't usually want to keep the generated wallpaper images forever
  * The last image that was generated is replaced by the newly generated image
  * The default output directory is `/tmp/random` - `/tmp` is commonly a tmpfs filesystem and exists only in memory (while the system remains powered on)
    * Note: The default output directory can and probably should be changed to a non-volatile location in [configuration](#configuration). Specifying a non-volatile directory will prevent temporary auto-selection of a system default wallpaper by the window manager on login after a fresh boot cycle, which can be disorienting.
* The user won't interact directly with the program often, making command line argument support unnecessary

Simply running `nrw` will fetch images from either the [Unsplash API](https://source.unsplash.com/) or the image directory (`images_dir`) defined in configuration, resize and compose the images on a spanned canvas matching your current display arrangement, save the resulting wallpaper image to the output directory (`output_dir`), and update your desktop background.

Some suggested steps to take in your environment:
* Configure a cron job or timer of some sort to run `nrw` at regular intervals (every 15 minutes works well for me - `*/15 * * * * /path/to/nrw`)
* Configure a Startup Application to run `nrw` on login

## Installation

Use the following command to install the `nrw` module from PyPi with pip:
```
pip install nrw
```

Or to install the latest version of the repository with pip:
```
pip install git+https://github.com/miliarch/nrw.git
```

After installation, a `nrw` executable link should be placed in your `$HOME/.local/bin` directory (this may vary depending on distro). If this directory is included in your PATH environment variable, the `nrw` command should be available for use without any further steps. Otherwise, you'll need to either specify the full path to run the program, or add the `$HOME/.local/bin` directory to your PATH environment variable.

Alternatively, clone this repository to your preferred installation directory and manually link `./nrw/nix_random_wallpaper.py` in the execution directory of your choice.

## Configuration

Default configuration can be found in [nrw/config.yaml](nrw/config.yaml). This file can be copied to `$HOME/.config/nix_random_wallpaper/config.yaml` and modified to override the default options.

Each configuration option in the file includes an in-line comment that details its function. If you have any questions about how existing options behave, or requests for new options, please raise an issue in this repository.

## Supported display configurations

Any number of displays that are arranged horizontally (side-by-side) within the vertical (height) bounds of the largest display should be supported.

## Unsupported display configurations

Vertical arrangements, including mixed vertical/horizontal arrangements, are currently unsupported. Support may be implemented in the future.

## Tested configurations

### Window managers

* Cinnamon 5.0.5-5.0.7
* awesome v4.3

### Wallpaper setters

* gnome (via gsettings)
* [nitrogen](https://github.com/l3ib/nitrogen) (recommended)

### Resolutions
* 1920x1080
* 2560x1440
* 3840x2160

### Display arrangements
* Dual monitor, landscape orientation, horizontal arrangement (side-by-side)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "nrw",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "Marcus Bowman <miliarch.mb@gmail.com>",
    "keywords": "gnome,cinnamon,nitrogen,linux,random,wallpaper,desktop,background,unsplash",
    "author": "",
    "author_email": "Marcus Bowman <miliarch.mb@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/78/7d/2a297ba907b96988f97c134607348d2973bb0c4b1b651c3f06a9f2b8414b/nrw-0.6.tar.gz",
    "platform": null,
    "description": "# Nix Random Wallpaper\n\nA simple program that sets random wallpaper images as desktop backgrounds in nix based operating systems / window managers. It fetches images from a local directory or Unsplash, composes a new image to match display size and arrangement, and sets the new image as the desktop background.\n\nThis project was forked from [Gnome Random Wallpaper](https://github.com/miliarch/gnome_random_wallpaper), which while great at its original limited scope, is no longer maintained.\n\n**Example arrangement**\n\n![Example Arrangement](example_arrangement.png)\n\n**Example wallpaper**\n\n![Example Wallpaper](example_wallpaper.jpg)\n\n## Usage\n\nNix Random Wallpaper (`nrw`) currently makes the following assumptions about the user:\n* The user will configure some external scheduler to prompt the `nrw` command to run in the background\n* The user doesn't usually want to keep the generated wallpaper images forever\n  * The last image that was generated is replaced by the newly generated image\n  * The default output directory is `/tmp/random` - `/tmp` is commonly a tmpfs filesystem and exists only in memory (while the system remains powered on)\n    * Note: The default output directory can and probably should be changed to a non-volatile location in [configuration](#configuration). Specifying a non-volatile directory will prevent temporary auto-selection of a system default wallpaper by the window manager on login after a fresh boot cycle, which can be disorienting.\n* The user won't interact directly with the program often, making command line argument support unnecessary\n\nSimply running `nrw` will fetch images from either the [Unsplash API](https://source.unsplash.com/) or the image directory (`images_dir`) defined in configuration, resize and compose the images on a spanned canvas matching your current display arrangement, save the resulting wallpaper image to the output directory (`output_dir`), and update your desktop background.\n\nSome suggested steps to take in your environment:\n* Configure a cron job or timer of some sort to run `nrw` at regular intervals (every 15 minutes works well for me - `*/15 * * * * /path/to/nrw`)\n* Configure a Startup Application to run `nrw` on login\n\n## Installation\n\nUse the following command to install the `nrw` module from PyPi with pip:\n```\npip install nrw\n```\n\nOr to install the latest version of the repository with pip:\n```\npip install git+https://github.com/miliarch/nrw.git\n```\n\nAfter installation, a `nrw` executable link should be placed in your `$HOME/.local/bin` directory (this may vary depending on distro). If this directory is included in your PATH environment variable, the `nrw` command should be available for use without any further steps. Otherwise, you'll need to either specify the full path to run the program, or add the `$HOME/.local/bin` directory to your PATH environment variable.\n\nAlternatively, clone this repository to your preferred installation directory and manually link `./nrw/nix_random_wallpaper.py` in the execution directory of your choice.\n\n## Configuration\n\nDefault configuration can be found in [nrw/config.yaml](nrw/config.yaml). This file can be copied to `$HOME/.config/nix_random_wallpaper/config.yaml` and modified to override the default options.\n\nEach configuration option in the file includes an in-line comment that details its function. If you have any questions about how existing options behave, or requests for new options, please raise an issue in this repository.\n\n## Supported display configurations\n\nAny number of displays that are arranged horizontally (side-by-side) within the vertical (height) bounds of the largest display should be supported.\n\n## Unsupported display configurations\n\nVertical arrangements, including mixed vertical/horizontal arrangements, are currently unsupported. Support may be implemented in the future.\n\n## Tested configurations\n\n### Window managers\n\n* Cinnamon 5.0.5-5.0.7\n* awesome v4.3\n\n### Wallpaper setters\n\n* gnome (via gsettings)\n* [nitrogen](https://github.com/l3ib/nitrogen) (recommended)\n\n### Resolutions\n* 1920x1080\n* 2560x1440\n* 3840x2160\n\n### Display arrangements\n* Dual monitor, landscape orientation, horizontal arrangement (side-by-side)\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Marcus Bowman  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A simple program that sets random images as desktop wallpaper in *nix operating systems.",
    "version": "0.6",
    "project_urls": {
        "Documentation": "https://github.com/miliarch/nrw",
        "Repository": "https://github.com/miliarch/nrw.git"
    },
    "split_keywords": [
        "gnome",
        "cinnamon",
        "nitrogen",
        "linux",
        "random",
        "wallpaper",
        "desktop",
        "background",
        "unsplash"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15fdc9cd81b755e61674b49bf3b71339ddd0dbe48b03aa6e022489cefc732f05",
                "md5": "f0a86a35c0dca5b7e68e06495bc2d3af",
                "sha256": "e9f5fe5094cda2d9a2a9495d6e5ee6bce64428995c0ebb1b25938bf2e2ca80df"
            },
            "downloads": -1,
            "filename": "nrw-0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f0a86a35c0dca5b7e68e06495bc2d3af",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 8691,
            "upload_time": "2023-10-10T04:59:43",
            "upload_time_iso_8601": "2023-10-10T04:59:43.359842Z",
            "url": "https://files.pythonhosted.org/packages/15/fd/c9cd81b755e61674b49bf3b71339ddd0dbe48b03aa6e022489cefc732f05/nrw-0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "787d2a297ba907b96988f97c134607348d2973bb0c4b1b651c3f06a9f2b8414b",
                "md5": "7285b05e3e2de80d02c53036c27238f2",
                "sha256": "832d7c93e63d43dcec119684935081e7e649a019a9b12d7c5fe455425894ad96"
            },
            "downloads": -1,
            "filename": "nrw-0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "7285b05e3e2de80d02c53036c27238f2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 8425,
            "upload_time": "2023-10-10T04:59:44",
            "upload_time_iso_8601": "2023-10-10T04:59:44.954406Z",
            "url": "https://files.pythonhosted.org/packages/78/7d/2a297ba907b96988f97c134607348d2973bb0c4b1b651c3f06a9f2b8414b/nrw-0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-10 04:59:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "miliarch",
    "github_project": "nrw",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "nrw"
}
        
Elapsed time: 0.12917s