Skip to content

Commit

Permalink
update organization
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-moon committed Aug 26, 2021
1 parent a9f4c9b commit 6b1f83e
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ LICENSEDIR = $(DESTDIR)/usr/local/$(PROGNAME)
LICENSENAME = LICENSE
SCRIPTDIR = $(BINDIR)
SCRIPTNAME = $(PROGNAME).sh
SRCDIR = src

install:
@mkdir -p $(BINDIR)
@mkdir -p $(SCRIPTDIR)
@mkdir -p $(LICENSEDIR)
@chmod 755 $(SCRIPTNAME)
@chmod 644 $(LICENSENAME)
cp $(SCRIPTNAME) $(SCRIPTDIR)/$(SCRIPTNAME)
cp $(LICENSENAME) $(LICENSEDIR)/$(LICENSENAME)
@chmod 755 $(SRCDIR)/$(SCRIPTNAME)
@chmod 644 $(SRCDIR)/$(LICENSENAME)
cp $(SRCDIR)/$(SCRIPTNAME) $(SCRIPTDIR)/$(SCRIPTNAME)
cp $(SRCDIR)/$(LICENSENAME) $(LICENSEDIR)/$(LICENSENAME)

uninstall:
rm -r $(SCRIPTDIR)/$(SCRIPTNAME)
Expand Down
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,37 +91,41 @@ Below are some examples, as well as the equivalent `gsettings` command.

```bash
# gsettings --set org.cinnamon.desktop.interface icon-theme "Mint-X"
$ themer --set icons "Mint-X"
$ themer.sh --set icons "Mint-X"
```

2) Change the window border theme

```bash
# gsettings --set org.cinnamon.desktop.wm.preferences theme "Mint-Y-Dark"
$ themer --set windows "Mint-Y-Dark"
$ themer.sh --set windows "Mint-Y-Dark"
```

3) Get the controls theme

```bash
# gsettings --get org.cinnamon.desktop.interface gtk-theme
$ themer --get controls
$ themer.sh --get controls
```

4) List available desktop themes

```bash
$ themer --list-themes
$ themer.sh --list-themes
```

## Contributing

For contributing to this project, see [CONTRIBUTING](Contributing.md).
For contributing to this project, see [CONTRIBUTING][contributing].

## License

See [LICENSE](LICENSE) for more information.
See [LICENSE][license] for more information.

## Contact

Trevor Moon - [email protected]

<!-- links -->
[contributing]: CONTRIBUTING.md
[license]: src/LICENSE
File renamed without changes.
Empty file added src/requirements.txt
Empty file.
File renamed without changes.
1 change: 0 additions & 1 deletion tools/update_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ main() {
script="$program.sh"
new_version="$program $(git describe --abbrev=0 --tags)\""
current_version=$(grep -oP "$program\sv.*" "$script")
# echo "s/$current_version/$new_version/"
sed -i "s/$current_version/$new_version/" "$script"
}

Expand Down

0 comments on commit 6b1f83e

Please sign in to comment.