-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# Past Modern Revisited | ||
![Preview](http://i64.tinypic.com/2dl8bqw.png) | ||
|
||
"Modern" theme for Pale Moon, based on the Past Modern theme by Kuden using elements from the SeaMonkey Modern theme. | ||
"Modern" theme for Pale Moon, based on the "Past Modern" theme by Kuden using elements from the SeaMonkey Modern theme. | ||
|
||
## Building | ||
Simply download the contents of the "src" folder and pack the contents into a .zip file. Then, rename the file to .xpi and drag into the browser. | ||
|
||
On Unix systems (or Windows 10, with [WSL](https://docs.microsoft.com/en-us/windows/wsl/about)) you can optionally run `build.sh` instead. Running this as-is will produce a .xpi file ending in `-dev`, and if run from the command line and appending a number (e.g. `./build.sh 2`) will append that number to the filename instead. | ||
|
||
## Download | ||
You can grab the latest release either from the Releases section of this repository, or the [Pale Moon Add-Ons Site](https://addons.palemoon.org/themes/complete/past-modern-revisited/). | ||
You can grab the latest release either from the Releases section of this repository, or the [Pale Moon Add-Ons Site](https://addons.palemoon.org/addon/past-modern-revisited/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
NAME=pastmodern-revisited | ||
VER=${1:-dev} | ||
rm $NAME-$VER-pm.xpi | ||
cd src/ | ||
zip -qr9XD ../$NAME-$VER-pm.xpi * |