Skip to content

Commit

Permalink
improve help text
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcormier committed Aug 28, 2015
1 parent d35e01e commit 5910cfd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# setwp
A command line utility to set the same wallpaper for every space and desktop on OS X Yosemite.
A command line utility to set the same wallpaper settings for every space and desktop on OS X Yosemite.

## Installation
There are 3 ways to install.
Expand All @@ -23,7 +23,8 @@ Put the `setwp-completion.zsh` file in a folder that's in your fpath. To check w

## Usage
~~~
Sets wallpaper to <wallpaper>. Fills the screen by default.
Sets wallpaper to <wallpaper> or a <directory> of wallpapers.
Fills the screen by default.
Usage:
setwp [--fit | --stretch | --center | --tile] <wallpaper>
Expand All @@ -46,7 +47,7 @@ Directory options:
~~~

## Limitations
When setting wallpaper to a directory, spaces and desktops are not synced. Having them in sync is outside the scope of this project, as setwp changes wallpaper settings for all spaces and the OS changes the actual wallpaper.
When setting wallpaper to a directory, spaces and desktops are not synced. Having them in sync is outside the scope of this project, as setwp changes wallpaper settings for all spaces and lets the OS change the actual wallpaper.

## Todo
- [x] Option to set picture position (fill, fit, stretch, center, tile)
Expand Down
5 changes: 3 additions & 2 deletions args/args.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ import (
const (
programName = "setwp"

usage = `Sets wallpaper to <wallpaper>. Fills the screen by default.
usage = `Sets wallpaper to <wallpaper> or a <directory> of wallpapers.
Fills the screen by default.
Usage:
%[1]s [--fit | --stretch | --center | --tile] <wallpaper>
Expand All @@ -38,7 +39,7 @@ Directory options:
`

version = "%s version 1.0.1"
version = "%s version 1.0.2"
)

// Type arg represents the preferences set by an argument.
Expand Down

0 comments on commit 5910cfd

Please sign in to comment.