Go to file
Aleksandr Verevkin 14fa3002e9
Fix arch package broken link (#182)
2024-03-18 11:33:01 +01:00
.github/workflows fix(gh: www): task name 2022-06-27 00:05:59 +02:00
css #174: New AwesomeWM Website - prototype 1 main page and styling. (#175) 2022-09-28 20:03:27 +02:00
images #174: New AwesomeWM Website - prototype 1 main page and styling. (#175) 2022-09-28 20:03:27 +02:00
recipes #148 retry mpd connection in client itself (#179) 2023-11-19 02:52:23 +01:00
script #174: New AwesomeWM Website - prototype 1 main page and styling. (#175) 2022-09-28 20:03:27 +02:00
src@5da5d36178 v4.3 2019-01-28 08:28:06 +01:00
templates #174: New AwesomeWM Website - prototype 1 main page and styling. (#175) 2022-09-28 20:03:27 +02:00
.gitignore Remove the old authors page 2016-12-17 18:17:54 -05:00
.gitmodules fix(.gitmodules): ssh turned off 2022-06-26 22:01:41 +02:00
Makefile chore: switch from travis to gh actions 2022-06-26 21:39:23 +02: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 doc(readme; doing_a_release): replace travis to gh-actions 2022-06-26 22:10:08 +02: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 doc(readme; doing_a_release): replace travis to gh-actions 2022-06-26 22:10:08 +02:00
download.mdwn Fix arch package broken link (#182) 2024-03-18 11:33:01 +01:00
index.mdwn #174: New AwesomeWM Website - prototype 1 main page and styling. (#175) 2022-09-28 20:03:27 +02:00
recipes.mdwn doc(recipes: themse): remove unnecessary word 2022-06-26 20:58:05 +02:00
releases.mdwn v4.3 2019-01-28 08:28:06 +01:00
screenshots.mdwn Update screenshots.mdwn 2023-05-19 16:25:00 +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 GH Actions, 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.