Skip to content

Commit 144b3a8

Browse files
authored
UI and houston (#1)
* UI and houston * New icons and better UI * Update README
1 parent 171a7f4 commit 144b3a8

15 files changed

+7958
-35
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/
2+
*~

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
# Wallpaperize
22

3-
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.
3+
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.
44

5-
![Screenshot](Example.png)
5+
![Screenshot](Screenshot.png)
66

77
## Instalation
8-
1. cd to this directory
9-
2. Execute the make.sh file
8+
9+
You can find this app on AppCenter, on elementary OS
10+
11+
## Build the App
12+
13+
Run `meson build` to configure the build environment and then change to the build directory and run `ninja` to build
14+
15+
meson build
16+
cd build
17+
mesonconf -Dprefix=/usr
18+
ninja
19+
20+
To install, use `ninja install`, then execute with `com.github.danrabbit.nimbus`
21+
22+
sudo ninja install
23+
com.github.philip-scott.wallpaperize
1024

1125
### Credits
1226
Original app: http://backgroundifier.archagon.net

Screenshot.png

61.9 KB
Loading
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- Copyright (c) 2016 Felipe Escoto (https://github.com/Philip-Scott/wallpaperize) -->
3+
<component type="desktop">
4+
<id>com.github.philip-scott.wallpaperize.desktop</id>
5+
<metadata_license>CC0-1.0</metadata_license>
6+
<project_license>GPL-3.0+</project_license>
7+
<name>Wallpaperize</name>
8+
<summary>Beautify your oddly-sized wallpapers</summary>
9+
<description>
10+
<p>
11+
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
12+
</p>
13+
</description>
14+
<provides>
15+
<binary>com.github.philip-scott.wallpaperize</binary>
16+
</provides>
17+
<releases>
18+
</releases>
19+
<screenshots>
20+
<screenshot type="default">
21+
<image>https://raw.githubusercontent.com/Philip-Scott/wallpaperize/master/Screenshot.png</image>
22+
</screenshot>
23+
</screenshots>
24+
<developer_name>Felipe Escoto</developer_name>
25+
<url type="homepage">https://github.com/Philip-Scott</url>
26+
<url type="bugtracker">https://github.com/Philip-Scott/wallpaperize/issues</url>
27+
<url type="help">https://github.com/Philip-Scott/wallpaperize/issues</url>
28+
<update_contact>[email protected]</update_contact>
29+
<custom>
30+
<value key="x-appcenter-color-primary">#FFE8B9</value>
31+
<value key="x-appcenter-color-primary-text">#333333</value>
32+
</custom>
33+
</component>

src/wapaperize.contract renamed to data/com.github.philip-scott.wallpaperize.contract

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Name=Wallpaperize
33
Icon=preferences-desktop-wallpaper
44
Description=Beautify your oddly-sized wallpapers
55
MimeType=image
6-
Exec=/usr/share/wallpaperize/Wallpaperize %F
6+
Exec=com.github.philip-scott.wallpaperize %F
77

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[Desktop Entry]
2+
Name=Wallpaperize
3+
Comment=Beautify your oddly-sized wallpapers
4+
Exec=com.github.philip-scott.wallpaperize %u
5+
Icon=com.github.philip-scott.wallpaperize
6+
Terminal=false
7+
Type=Application
8+
StartupNotify=true
9+
Categories=Graphics;
10+
Actions=AboutDialog;
11+
12+
[Desktop Action AboutDialog]
13+
Exec=com.github.philip-scott.wallpaperize --about
14+
Name=About Wallpaperize

0 commit comments

Comments
 (0)