-
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
16 changed files
with
3,856 additions
and
344 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
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 |
---|---|---|
|
@@ -12,3 +12,4 @@ src/network/*.pem | |
src/parser/*.out | ||
src/parser/toml.hpp | ||
src/music/miniaudio.h | ||
docs/ |
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,134 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>inLimbo - TUI Music Player Documentation</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f5f5f5; | ||
color: #333; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
header { | ||
background-color: #2b3e50; | ||
color: white; | ||
padding: 20px 0; | ||
text-align: center; | ||
} | ||
header h1 { | ||
margin: 0; | ||
font-size: 2.5em; | ||
} | ||
.container { | ||
width: 80%; | ||
margin: 0 auto; | ||
padding: 20px; | ||
} | ||
.section { | ||
margin: 40px 0; | ||
} | ||
.features ul { | ||
list-style-type: none; | ||
padding-left: 0; | ||
} | ||
.features li { | ||
margin-bottom: 10px; | ||
} | ||
.features li::before { | ||
content: "✔️ "; | ||
} | ||
footer { | ||
text-align: center; | ||
padding: 20px; | ||
background-color: #2b3e50; | ||
color: white; | ||
} | ||
.logo { | ||
width: 120px; | ||
margin: 20px 0; | ||
} | ||
.images { | ||
display: flex; | ||
justify-content: space-around; | ||
margin-top: 30px; | ||
} | ||
.images img { | ||
width: 30%; | ||
height: auto; | ||
} | ||
.button-container { | ||
text-align: center; | ||
margin-top: 40px; | ||
} | ||
.button-container a { | ||
padding: 15px 25px; | ||
background-color: #2b3e50; | ||
color: white; | ||
font-size: 1.1em; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
transition: background-color 0.3s ease; | ||
} | ||
.button-container a:hover { | ||
background-color: #1f2a37; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<h1>inLimbo - TUI Music Player</h1> | ||
<p>A TUI-based music player for seamless audio playback and control with efficient metadata extraction and viewing</p> | ||
</header> | ||
|
||
<div class="container"> | ||
<section class="section about"> | ||
<h2>About</h2> | ||
<p><strong>inLimbo</strong> is a terminal-based music player that provides an immersive experience for managing your music library. Built using C++, it allows you to control music playback, view metadata, and organize your songs all from within a sleek text-based interface.</p> | ||
</section> | ||
|
||
<section class="section features"> | ||
<h2>Features</h2> | ||
<ul> | ||
<li>Seamless audio playback and control</li> | ||
<li>Efficient metadata extraction and viewing</li> | ||
<li>Intuitive keyboard shortcuts for ease of use</li> | ||
<li>Support for local and streaming music sources</li> | ||
<li>Customizable user interface with theming options</li> | ||
<li>Lightweight and responsive performance</li> | ||
</ul> | ||
</section> | ||
|
||
<section class="section images"> | ||
<img src="../gifs/inLimbo-1.gif" alt="inLimbo Screenshot 1"> | ||
<img src="../gifs/inLimboColors.gif" alt="inLimbo Screenshot 2"> | ||
<img src="image3.jpg" alt="inLimbo Screenshot 3"> | ||
</section> | ||
|
||
<section class="section licensing"> | ||
<h2>Licensing</h2> | ||
<p>inLimbo is licensed under the GNU GPL v3 License. See the <a href="../../LICENSE">LICENSE</a> file for more details.</p> | ||
</section> | ||
|
||
<section class="section author"> | ||
<h2>Author</h2> | ||
<p>This project is maintained by <strong>Siddharth Karanam (nots1dd)</strong>. Feel free to reach out for any contributions, questions, or comments.</p> | ||
</section> | ||
|
||
<!-- Button to Doxygen Documentation --> | ||
<div class="button-container"> | ||
<a href="../../docs/html/index.html" target="_blank">Visit the Doxygen Documentation</a> | ||
</div> | ||
</div> | ||
|
||
<footer> | ||
<p>© 2025 inLimbo. All rights reserved.</p> | ||
</footer> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.