170 lines
8.1 KiB
HTML
170 lines
8.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
|
||
|
<title>Starter Template - Materialize</title>
|
||
|
|
||
|
<!-- CSS -->
|
||
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||
|
<link href="../assets/css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
|
||
|
<link href="../assets/css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<main>
|
||
|
<nav class="grey darken-3" role="navigation">
|
||
|
<div class="nav-wrapper container"><a id="logo-container" href="#" class="brand-logo">Awesome</a>
|
||
|
<ul class="right hide-on-med-and-down">
|
||
|
<li><a href="#">Navbar Link</a></li>
|
||
|
</ul>
|
||
|
|
||
|
<ul id="nav-mobile" class="side-nav">
|
||
|
<li><a href="#">Navbar Link</a></li>
|
||
|
</ul>
|
||
|
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
|
||
|
</div>
|
||
|
</nav>
|
||
|
<div class="section" id="index-banner">
|
||
|
<div class="container">
|
||
|
<br><br><br>
|
||
|
<h1 class="header center white-text">Awesome WM widgets</h1>
|
||
|
<div class="row center">
|
||
|
<h5 class="header col s12 white-text">Set of widgets for Awesome Window Manager</h5>
|
||
|
</div>
|
||
|
<br><br><br>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="container">
|
||
|
<div class="section">
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col s12 center">
|
||
|
|
||
|
<a class="waves-effect waves-light btn"
|
||
|
href="http://localhost:4000/widgets/battery">Battery</a>
|
||
|
|
||
|
<a class="waves-effect waves-light btn"
|
||
|
href="http://localhost:4000/widgets/brightness">Brightness</a>
|
||
|
|
||
|
<a class="waves-effect waves-light btn"
|
||
|
href="http://localhost:4000/widgets/email">Email</a>
|
||
|
|
||
|
<a class="waves-effect waves-light btn"
|
||
|
href="http://localhost:4000/widgets/spotify">Spotify</a>
|
||
|
|
||
|
<a class="waves-effect waves-light btn"
|
||
|
href="http://localhost:4000/widgets/volume">Volume</a>
|
||
|
|
||
|
<a class="waves-effect waves-light btn"
|
||
|
href="http://localhost:4000/widgets/weather">Weather</a>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col s12 m6 offset-m3">
|
||
|
<div class="icon-block">
|
||
|
<h1 id="awesomewm">AwesomeWM</h1>
|
||
|
|
||
|
<p>Set of super simple widgets compatible with Awesome Window Manager v.4.</p>
|
||
|
|
||
|
<p><img src="https://github.com/streetturtle/AwesomeWM/blob/master/screenshot.png?raw=true" alt="screenshot" /></p>
|
||
|
|
||
|
<p>From left to right:</p>
|
||
|
|
||
|
<ul>
|
||
|
<li><a href="https://github.com/streetturtle/AwesomeWM/tree/master/spotify-widget">spotify-widget</a> / <a href="https://github.com/streetturtle/AwesomeWM/tree/master/rhythmbox-widget">rhythmbox-widget</a></li>
|
||
|
<li><a href="https://github.com/streetturtle/AwesomeWM/tree/master/weather-widget">weather-widget</a></li>
|
||
|
<li><a href="https://github.com/streetturtle/AwesomeWM/tree/master/email-widget">email-widget</a></li>
|
||
|
<li><a href="https://github.com/streetturtle/AwesomeWM/tree/master/brightness-widget">brightness-widget</a></li>
|
||
|
<li><a href="https://github.com/streetturtle/AwesomeWM/tree/master/volume-widget">volume-widget</a></li>
|
||
|
<li><a href="https://github.com/streetturtle/AwesomeWM/tree/master/battery-widget">battery-widget</a></li>
|
||
|
</ul>
|
||
|
|
||
|
<p>These widgets use <a href="https://github.com/horst3180/arc-icon-theme">Arc icon theme</a> by default but it could be easily
|
||
|
changed to any other icon theme. If you want to have separators between widgets like on the screenshot create text widget with ` : ` and place it between widgets:</p>
|
||
|
|
||
|
<div class="language-lua highlighter-rouge"><pre class="highlight"><code><span class="o">...</span>
|
||
|
<span class="n">sprtr</span> <span class="o">=</span> <span class="n">wibox</span><span class="p">.</span><span class="n">widget</span><span class="p">.</span><span class="n">textbox</span><span class="p">()</span>
|
||
|
<span class="n">sprtr</span><span class="p">:</span><span class="n">set_text</span><span class="p">(</span><span class="s2">" : "</span><span class="p">)</span>
|
||
|
<span class="o">...</span>
|
||
|
<span class="n">sprtr</span><span class="p">,</span>
|
||
|
<span class="n">volume_icon</span><span class="p">,</span>
|
||
|
<span class="n">sprtr</span><span class="p">,</span>
|
||
|
<span class="n">battery_widget</span><span class="p">,</span>
|
||
|
<span class="n">sprtr</span><span class="p">,</span>
|
||
|
<span class="o">...</span>
|
||
|
</code></pre>
|
||
|
</div>
|
||
|
|
||
|
<h1 id="installation">Installation</h1>
|
||
|
|
||
|
<p><a href="https://github.com/horst3180/arc-icon-theme#installation">Install</a> Arc icon theme and follow installation instructions of each widget.</p>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<br><br>
|
||
|
|
||
|
<div class="section">
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</main>
|
||
|
<footer class="page-footer grey darken-3">
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<div class="col l6 s12">
|
||
|
<h5 class="white-text">About</h5>
|
||
|
<p class="grey-text text-lighten-4">
|
||
|
Set of super simple widgets compatible with Awesome Window Manager v.4.
|
||
|
</p>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
<!--<div class="col l3 s12">-->
|
||
|
<!--<h5 class="white-text">Settings</h5>-->
|
||
|
<!--<ul>-->
|
||
|
<!--<li><a class="white-text" href="#!">Link 1</a></li>-->
|
||
|
<!--<li><a class="white-text" href="#!">Link 2</a></li>-->
|
||
|
<!--<li><a class="white-text" href="#!">Link 3</a></li>-->
|
||
|
<!--<li><a class="white-text" href="#!">Link 4</a></li>-->
|
||
|
<!--</ul>-->
|
||
|
<!--</div>-->
|
||
|
<div class="col l3 s12 offset-l3">
|
||
|
<h5 class="white-text">Links</h5>
|
||
|
<ul>
|
||
|
<li><!-- Place this tag where you want the button to render. -->
|
||
|
<a class="github-button" href="https://github.com/streetturtle/AwesomeWM" data-icon="octicon-star" data-count-href="/streetturtle/AwesomeWM/stargazers" data-count-api="/repos/streetturtle/AwesomeWM#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star streetturtle/AwesomeWM on GitHub">Star</a></li>
|
||
|
<!-- Place this tag where you want the button to render. -->
|
||
|
<li><!-- Place this tag where you want the button to render. -->
|
||
|
<a class="github-button" href="https://github.com/streetturtle/AwesomeWM/archive/master.zip" data-icon="octicon-cloud-download" aria-label="Download streetturtle/AwesomeWM on GitHub">Download</a></li>
|
||
|
<li><!-- Place this tag where you want the button to render. -->
|
||
|
<a class="github-button" href="https://github.com/streetturtle" data-count-href="/streetturtle/followers" data-count-api="/users/streetturtle#followers" data-count-aria-label="# followers on GitHub" aria-label="Follow @streetturtle on GitHub">Follow @streetturtle</a></li>
|
||
|
<!--<li><a class="white-text" href="#!">Link 3</a></li>-->
|
||
|
<!--<li><a class="white-text" href="#!">Link 4</a></li>-->
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="footer-copyright grey darken-4">
|
||
|
<div class="container">
|
||
|
Made by <a class="orange-text text-lighten-3" href="http://github.com/streetturtle">Pavel Makhov</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer>
|
||
|
|
||
|
<!-- Scripts-->
|
||
|
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
|
||
|
<script src="../assets/js/materialize.js"></script>
|
||
|
<script src="../assets/js/init.js"></script>
|
||
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|