Go to file
Emmanuel Lepage Vallée 2546fb1165
Merge pull request #155 from ecocode/patch-1
Update community.mdwn
2021-10-17 12:54:17 -07:00
images Added awesome-taglist post to recipes (#104) 2017-10-28 00:00:08 +02:00
recipes Using easy_async instead of easy_async_with_shell, providing commands as a list of arguments 2021-04-02 21:40:38 +02:00
src@5da5d36178 v4.3 2019-01-28 08:28:06 +01:00
templates doc(template): update copyleft date and capitalize project name 2020-08-10 13:51:47 +02:00
.gitignore Remove the old authors page 2016-12-17 18:17:54 -05:00
.gitmodules v3.5.6 (and move to github) 2015-01-10 20:45:24 +01:00
.travis.yml fix(travis): fix mdl to 0.9.0 (0.10.0 appears to be broken) 2020-08-10 03:17:20 +02:00
Makefile Makefile: improve build_for_travis (#136) 2019-02-26 11:12:23 +01:00
README.for_webpage.md Add a README.md to the generated web page repo (#94) 2017-05-23 10:02:40 +02:00
README.md Changing internal link example 2021-03-20 17:20:12 +01:00
community.mdwn fix(community) discord invite link 2021-10-17 18:44:01 +02:00
doc.mdwn Make awesome v4 standout more compliant with the whole site design (#72) 2017-01-27 02:27:54 +01:00
doing_a_release.mdwn Fix a small oversight in doing_a_release.mdwn (#86) 2017-03-18 13:37:54 +01:00
download.mdwn v4.3 2019-01-28 08:28:06 +01:00
index.mdwn AwesomeWM v4.0 is no longer breaking news 2019-01-28 08:41:10 +01:00
local.css fix font color on navigators with custom theme 2019-04-04 12:35:56 +02:00
recipes.mdwn Add a link to widgets section 2021-05-15 20:33:05 -04:00
releases.mdwn v4.3 2019-01-28 08:28:06 +01:00
screenshots.mdwn Add link to alternative screenshot gallery (#162) 2021-08-27 20:54:12 +02:00

README.md

Website for awesome WM

Build Status

This is the main source of the website for the awesome window manager.

Requirements

Hacking

You can build the web page locally by running make, which will generate the output in html/.

To view it, open html/index.html in your web browser.

You can simulate running a web server using Python, which will automatically open index.html when following a link to a directory:

cd html && python3 -m http.server -b localhost 8000 &

Contributing to the Screenshots Section

To contribute with Screenshots:

  1. Add your image to the folder images/screenshots with an appropriate name.

  2. Add a new <figure> tag in the bottom of screenshots.mdwn,

  3. Inside the new tag, add the screenshots with a <img> tag and use the <figcaption> to add caption to the image, explaining what is being used on the screenshot.

Contributing to Recipes Section

Fork this repository and create a new branch with a name relevant to the information you will be adding to the site. If you have doubts in how to Fork and Branch, take a look in this cheat-sheet here

The process of editing files can be done inside GitHub's interface, more information here

Create a new link in markdown format [Link Name](Real Link) in the appropriate section in recipes.mdwn file.

  1. Create a new page with your tutorial/setup/widget/snippet in Markdown, with a relevant name, under the recipes folder.

    Example recipes/xrandr-tutorial.mdwn

  2. Link your page to the right section in the recipes.mdwn page with Markdown syntax.

    Example [[XrandR Tutorial|recipes/xrandr-tutorial]]

Seeing results and pulling your changes

  1. Build the site as explained in the Hacking section in this same page to check how your changes will look like.

  2. If everything is right and looks good, you're ready do make a Pull Request.

Publishing

The master branch gets built by Travis CI, and is then published through Github's Organization Pages.

Other resources

The API documentation for the master branch at /apidoc is viewable at Github's Project Pages for the apidoc repo, where it gets pushed to from successful builds in the awesome main repo.