add new rocks page

This commit is contained in:
speedie 2023-06-16 03:16:01 +02:00
parent b5fa6f233d
commit 2061816238
2 changed files with 31 additions and 0 deletions

View file

@ -16,6 +16,7 @@
<ul> <ul>
<li><a href="about-me.php">About me</a></li> <li><a href="about-me.php">About me</a></li>
<li><a href="sucks.php">Sucks</a></li> <li><a href="sucks.php">Sucks</a></li>
<li><a href="rocks.php">Rocks</a></li>
<li><a href="blog.php">Blog</a></li> <li><a href="blog.php">Blog</a></li>
<li><a href="rss.xml">RSS feed</a></li> <li><a href="rss.xml">RSS feed</a></li>
<li><a href="updates.xml">RSS project updates</a></li> <li><a href="updates.xml">RSS project updates</a></li>

30
rocks.php Normal file
View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<?php include 'php/header.php';?>
<meta charset="UTF-8">
<meta name="description" content="List of software I think is awesome.">
<meta name="author" content="speedie">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Rocks</title>
</head>
<body>
<div class="content">
<h2>Rocks</h2>
<p>This page is a list of software, and just general things that are awesome! This page was inspired by <a href="https://suckless.org/rocks">the suckless page</a> under the same name.</p>
<ul>
<li>Zathura</li>
<p>Zathura is an awesome program. Out of the box it's basically nothing, but with extensions it can read many different formats, such PDFs, DjVu, comic books and more. It has Vim like keybindings, so it will take no getting used to if you're using a Vi like editor already.</p>
<li>dwm</li>
<p>The best window manager out there. Configured through editing C making it the most extensible window manager you could use. It comes with a built in minimal bar and keybind configuration. It also serves as a great learning experience for those interested in learning C. I have myself submitted several patches to the wiki.</p>
<li>Musique</li>
<p>It is not that minimal, but a very nice looking music player using Qt. What makes it stand out from other music players is that it downloads cover art and even artist art from the internet. It is still reasonably fast, and written in C++. It's also free software licensed under the GPL, but unfortunately the developer does write nonfree software nowadays and doesn't seem to have much interest in this program.</p>
<li>Vifm</li>
<p>Vifm is a Vim inspired terminal file manager. It is very nice to use when managing many files and directories due to the many keybinds it offers. If you've used Vim in the past you're no doubt already familiar with it. It also supports image previews using Ueberzug++. Vifm has two panes, one of which can be used for previews or just as a second pane to copy between.</p>
</ul>
</div>
</body>
<footer>
<?php include 'php/footer.php';?>
</footer>
</html>