Skip to content

Commit

Permalink
UI and houston (#1)
Browse files Browse the repository at this point in the history
* UI and houston

* New icons and better UI

* Update README
  • Loading branch information
Philip-Scott authored Jun 8, 2017
1 parent 171a7f4 commit 144b3a8
Show file tree
Hide file tree
Showing 15 changed files with 7,958 additions and 35 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build/
*~
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
# Wallpaperize

Turn your oddly sized wallpapers into a piece of beauty. On elementary os, simply right click on your picture's file, and select "Wallpaperize" from the drop down menu.
Turn your oddly sized wallpapers into a piece of beauty. Simply right click on your picture's file, and select "Wallpaperize" from the drop down menu.

![Screenshot](Example.png)
![Screenshot](Screenshot.png)

## Instalation
1. cd to this directory
2. Execute the make.sh file

You can find this app on AppCenter, on elementary OS

## Build the App

Run `meson build` to configure the build environment and then change to the build directory and run `ninja` to build

meson build
cd build
mesonconf -Dprefix=/usr
ninja

To install, use `ninja install`, then execute with `com.github.danrabbit.nimbus`

sudo ninja install
com.github.philip-scott.wallpaperize

### Credits
Original app: http://backgroundifier.archagon.net
Expand Down
Binary file added Screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions data/com.github.philip-scott.wallpaperize.appdata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2016 Felipe Escoto (https://github.com/Philip-Scott/wallpaperize) -->
<component type="desktop">
<id>com.github.philip-scott.wallpaperize.desktop</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0+</project_license>
<name>Wallpaperize</name>
<summary>Beautify your oddly-sized wallpapers</summary>
<description>
<p>
Turn your oddly sized wallpapers into a piece of beauty. Simply right click on your picture's file, and select "Wallpaperize" from the drop down menu, or open the app and drag-and-drop the images you wish yo wallpaperize
</p>
</description>
<provides>
<binary>com.github.philip-scott.wallpaperize</binary>
</provides>
<releases>
</releases>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/Philip-Scott/wallpaperize/master/Screenshot.png</image>
</screenshot>
</screenshots>
<developer_name>Felipe Escoto</developer_name>
<url type="homepage">https://github.com/Philip-Scott</url>
<url type="bugtracker">https://github.com/Philip-Scott/wallpaperize/issues</url>
<url type="help">https://github.com/Philip-Scott/wallpaperize/issues</url>
<update_contact>[email protected]</update_contact>
<custom>
<value key="x-appcenter-color-primary">#FFE8B9</value>
<value key="x-appcenter-color-primary-text">#333333</value>
</custom>
</component>
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ Name=Wallpaperize
Icon=preferences-desktop-wallpaper
Description=Beautify your oddly-sized wallpapers
MimeType=image
Exec=/usr/share/wallpaperize/Wallpaperize %F
Exec=com.github.philip-scott.wallpaperize %F

14 changes: 14 additions & 0 deletions data/com.github.philip-scott.wallpaperize.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[Desktop Entry]
Name=Wallpaperize
Comment=Beautify your oddly-sized wallpapers
Exec=com.github.philip-scott.wallpaperize %u
Icon=com.github.philip-scott.wallpaperize
Terminal=false
Type=Application
StartupNotify=true
Categories=Graphics;
Actions=AboutDialog;

[Desktop Action AboutDialog]
Exec=com.github.philip-scott.wallpaperize --about
Name=About Wallpaperize
Loading

0 comments on commit 144b3a8

Please sign in to comment.