mirror of
https://github.com/Paul-Houser/StartTree.git
synced 2025-08-13 18:07:01 +02:00
Compare commits
1 Commits
themes
...
prettyhtml
Author | SHA1 | Date | |
---|---|---|---|
ebdd91f526 |
15
README.md
15
README.md
@ -9,15 +9,10 @@ A terminal-style home page replicating the tree command.
|
|||||||
- [x] Add screenshot to README.md
|
- [x] Add screenshot to README.md
|
||||||
- [x] add install script
|
- [x] add install script
|
||||||
- [ ] Should allow selection of search engine
|
- [ ] Should allow selection of search engine
|
||||||
- [x] Should allow for multiple columns
|
- [ ] Should allow for multiple columns
|
||||||
- [x] User makes a 'config.yaml' file that is parsed and translated into the HTML
|
- [ ] User makes a 'config.yaml' file that is parsed and translated into the HTML
|
||||||
- [ ] Allow setting the font size in the config
|
|
||||||
- [ ] Install the update script into a `$PATH` directory
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
font_size: 15
|
|
||||||
theme: void
|
|
||||||
|
|
||||||
Tree_1:
|
Tree_1:
|
||||||
General:
|
General:
|
||||||
Google: "https://www.google.com/"
|
Google: "https://www.google.com/"
|
||||||
@ -26,9 +21,3 @@ Tree_1:
|
|||||||
Homepage: "https://www.reddit.com/"
|
Homepage: "https://www.reddit.com/"
|
||||||
Unixporn: "https://www.reddit.com/r/unixporn/"
|
Unixporn: "https://www.reddit.com/r/unixporn/"
|
||||||
```
|
```
|
||||||
|
|
||||||
# Themes
|
|
||||||
|
|
||||||
A variety of themes can be found in the `themes` directory.
|
|
||||||
|
|
||||||
If one wishes to dynamically theme from `pywal`, they may select `pywal` as their chosen theme in `config.yaml`.
|
|
||||||
|
70
WebExample/index.html
Normal file
70
WebExample/index.html
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" type="text/css" href="./styles/style.css">
|
||||||
|
<title>Home</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="prompt">~<span> λ</span> tree</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="column">
|
||||||
|
<div class="tree">
|
||||||
|
<h1>.</h1>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<h1>general</h1>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://cloud.paulhouser.xyz">nextcloud</a></li>
|
||||||
|
<li><a href="https://github.com/Paul-Houser">github</a></li>
|
||||||
|
<li><a href="https://gitlab.cs.wwu.edu">wwu-gitlab</a></li>
|
||||||
|
<li><a href="https://mail.google.com">gmail</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h1>reddit</h1>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://reddit.com">front page</a></li>
|
||||||
|
<li><a href="https://reddit.com/u/P_swizzles">profile</a></li>
|
||||||
|
<li><a href="https://reddit.com/r/unixporn">unixporn</a></li>
|
||||||
|
<li><a href="https://reddit.com/r/archlinux">archlinux</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="tree">
|
||||||
|
<h1>.</h1>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<h1>school</h1>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://wwu.instructure.com/">canvas</a></li>
|
||||||
|
<li><a href="https://dw.wwu.edu/Dashboard/dashboard">degreeworks</a></li>
|
||||||
|
<li><a href="https://outlook.office.com">outlook</a></li>
|
||||||
|
<li><a href="https://admin.wwu.edu/pls/wwis/twbkwbis.P_GenMenu?name=bmenu.P_MainMnu">web4u</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h1>other</h1>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://archlinux.org">arch wiki</a></li>
|
||||||
|
<li><a href="https://hulu.com">hulu</a></li>
|
||||||
|
<li><a href="https://www.netflix.com">netflix</a></li>
|
||||||
|
<li><a href="https://youtube.com">youtube</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="prompt">~<span> λ</span> ddg</div>
|
||||||
|
<form action="https://duckduckgo.com/" method="GET">
|
||||||
|
<h1>search: </h1>
|
||||||
|
<input type="text" name="q" autofocus="autofocus">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
WebExample/styles/Hack.ttf
Normal file
BIN
WebExample/styles/Hack.ttf
Normal file
Binary file not shown.
133
WebExample/styles/style.css
Normal file
133
WebExample/styles/style.css
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
@import url('/home/paul/.cache/wal/colors.css');
|
||||||
|
@font-face {
|
||||||
|
font-family: "Roboto Mono";
|
||||||
|
src: url("./Hack.ttf");
|
||||||
|
}
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--font: "Roboto Mono";
|
||||||
|
/* --background: var(--background) !important; */
|
||||||
|
/* --foreground: #fffffe; */
|
||||||
|
/* --pink: #e53170; */
|
||||||
|
/* --red: #f25f4c; */
|
||||||
|
/* --orange: #ff8906; */
|
||||||
|
/* --branch: 1px solid #a7a9be; */
|
||||||
|
--branch: 1px solid var(--color12);
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: var(--background);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.prompt {
|
||||||
|
font-family: var(--font);
|
||||||
|
color: var(--color5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.prompt~.prompt {
|
||||||
|
padding: 1.5rem 0 0.3125rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: var(--color10);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
display: inline;
|
||||||
|
font-family: var(--font);
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: normal;
|
||||||
|
color: var(--color9);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree > ul {
|
||||||
|
margin: 0;
|
||||||
|
padding-left: 1rem;
|
||||||
|
padding-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style: none;
|
||||||
|
padding-left: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
li::before, li::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
left: -0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
li::before {
|
||||||
|
border-top: var(--branch);
|
||||||
|
top: 0.75rem;
|
||||||
|
width: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
li::after {
|
||||||
|
border-left: var(--branch);
|
||||||
|
height: 100%;
|
||||||
|
top: 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
li:last-child::after {
|
||||||
|
height: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
font-family: var(--font);
|
||||||
|
font-size: 1rem;
|
||||||
|
color: var(--color6);
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: var(--color12);
|
||||||
|
background: var(--background);
|
||||||
|
}
|
||||||
|
|
||||||
|
form h1 {
|
||||||
|
padding-left: 0.125rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
font-family: var(--font);
|
||||||
|
font-size: 1rem;
|
||||||
|
color: var(--color6);
|
||||||
|
background-color: var(--background);
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: var(--color12);
|
||||||
|
border-style: solid;
|
||||||
|
padding-top: 4px;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column {
|
||||||
|
flex: 50%;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.row {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.row:after {
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
clear: both;
|
||||||
|
}
|
74
init.py
74
init.py
@ -1,74 +0,0 @@
|
|||||||
#!/bin/python3
|
|
||||||
|
|
||||||
import yaml
|
|
||||||
import os
|
|
||||||
from os.path import expanduser
|
|
||||||
from shutil import copyfile
|
|
||||||
from bs4 import BeautifulSoup
|
|
||||||
import sys
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'bs4'])
|
|
||||||
|
|
||||||
# get home directory
|
|
||||||
home = expanduser("~")
|
|
||||||
|
|
||||||
# get config path
|
|
||||||
config_dir = home + '/.config/StartTree'
|
|
||||||
config_path = home + '/.config/StartTree/config.yaml'
|
|
||||||
|
|
||||||
# get cache path
|
|
||||||
cache_dir = home + '/.cache/StartTree'
|
|
||||||
|
|
||||||
def prettifyHTML(html):
|
|
||||||
soup = BeautifulSoup(html, 'html.parser')
|
|
||||||
prettyHTML = soup.prettify()
|
|
||||||
return prettyHTML
|
|
||||||
|
|
||||||
def setup():
|
|
||||||
# check if .config path exists
|
|
||||||
if not os.path.isdir(home + '/.config'):
|
|
||||||
print("The directory '~/.config' does not exist, or you do not have permissions to edit it.")
|
|
||||||
exit()
|
|
||||||
|
|
||||||
if not os.path.isdir(home + '/.cache'):
|
|
||||||
print("The directory '~/.cache' does not exist, or you do not have permissions to edit it.")
|
|
||||||
exit()
|
|
||||||
|
|
||||||
# check if .config/StartTree exists, create it and config if not
|
|
||||||
if not os.path.isdir(config_dir):
|
|
||||||
print("Creating '~/.config/StartTree'...")
|
|
||||||
os.mkdir(config_dir)
|
|
||||||
print("Copying config.yaml")
|
|
||||||
copyfile("./config.yaml", config_path)
|
|
||||||
print("")
|
|
||||||
|
|
||||||
# check if config.yaml exists
|
|
||||||
if not os.path.exists(config_path):
|
|
||||||
print("No config.yaml found in '~/.config/StartTree'")
|
|
||||||
print("Copy the example config with:")
|
|
||||||
print("\tcp ./config.yaml $HOME/.config/StartTree/config.yaml")
|
|
||||||
print("or create your own in that directory.")
|
|
||||||
exit()
|
|
||||||
|
|
||||||
# create directory structure in .cache
|
|
||||||
if not os.path.isdir(cache_dir):
|
|
||||||
print("Creating '" + cache_dir + "'...")
|
|
||||||
os.mkdir(cache_dir)
|
|
||||||
|
|
||||||
print("Creating '" + cache_dir + "/styles'")
|
|
||||||
os.mkdir(cache_dir + '/styles')
|
|
||||||
|
|
||||||
print("Creating style.css")
|
|
||||||
copyfile("./skeletons/style.css", cache_dir + '/styles/style.css')
|
|
||||||
|
|
||||||
print("Creating Hack.ttf")
|
|
||||||
copyfile("./skeletons/Hack.ttf", cache_dir + '/styles/Hack.ttf')
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
|
||||||
setup()
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
main()
|
|
107
install.py
107
install.py
@ -16,15 +16,57 @@ config_path = home + '/.config/StartTree/config.yaml'
|
|||||||
# get cache path
|
# get cache path
|
||||||
cache_dir = home + '/.cache/StartTree'
|
cache_dir = home + '/.cache/StartTree'
|
||||||
|
|
||||||
def prettifyHTML(html):
|
def prettifyHTML():
|
||||||
|
html = "<div><h1>Hello</h1></div>"
|
||||||
soup = BeautifulSoup(html, 'html.parser')
|
soup = BeautifulSoup(html, 'html.parser')
|
||||||
prettyHTML = soup.prettify()
|
prettyHTML = print(soup.prettify())
|
||||||
return prettyHTML
|
return prettyHTML
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
# check if .config path exists
|
||||||
|
if not os.path.isdir(home + '/.config'):
|
||||||
|
print("The directory '~/.config' does not exist, or you do not have permissions to edit it.")
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if not os.path.isdir(home + '/.cache'):
|
||||||
|
print("The directory '~/.cache' does not exist, or you do not have permissions to edit it.")
|
||||||
|
exit()
|
||||||
|
|
||||||
|
# check if .config/StartTree exists, create it and config if not
|
||||||
|
if not os.path.isdir(config_dir):
|
||||||
|
print("Creating '~/.config/StartTree'...")
|
||||||
|
os.mkdir(config_dir)
|
||||||
|
print("Copying config.yaml")
|
||||||
|
copyfile("./config.yaml", config_path)
|
||||||
|
print("")
|
||||||
|
|
||||||
|
# check if config.yaml exists
|
||||||
|
if not os.path.exists(config_path):
|
||||||
|
print("No config.yaml found in '~/.config/StartTree'")
|
||||||
|
print("Copy the example config with:")
|
||||||
|
print("\tcp ./config.yaml $HOME/.config/StartTree/config.yaml")
|
||||||
|
print("or create your own in that directory.")
|
||||||
|
exit()
|
||||||
|
|
||||||
|
# create directory structure in .cache
|
||||||
|
if not os.path.isdir(cache_dir):
|
||||||
|
print("Creating '" + cache_dir + "'...")
|
||||||
|
os.mkdir(cache_dir)
|
||||||
|
|
||||||
|
print("Creating '" + cache_dir + "/styles'")
|
||||||
|
os.mkdir(cache_dir + '/styles')
|
||||||
|
|
||||||
|
print("Creating style.css")
|
||||||
|
copyfile("./skeletons/style.css", cache_dir + '/styles/style.css')
|
||||||
|
|
||||||
|
print("Creating Hack.ttf")
|
||||||
|
copyfile("./skeletons/Hack.ttf", cache_dir + '/styles/Hack.ttf')
|
||||||
|
|
||||||
def parse_yaml():
|
def parse_yaml():
|
||||||
with open(config_path, mode='r') as file:
|
with open(config_path, mode='r') as file:
|
||||||
file_dict = yaml.full_load(file)
|
file_dict = yaml.full_load(file)
|
||||||
file.close()
|
file.close()
|
||||||
|
|
||||||
return file_dict
|
return file_dict
|
||||||
|
|
||||||
def print_keys(dictionary):
|
def print_keys(dictionary):
|
||||||
@ -33,43 +75,10 @@ def print_keys(dictionary):
|
|||||||
if isinstance(dictionary[key], dict):
|
if isinstance(dictionary[key], dict):
|
||||||
print_keys(dictionary[key])
|
print_keys(dictionary[key])
|
||||||
|
|
||||||
def gen_list_indices(html_file, file_dict):
|
def gen_columns(html_file):
|
||||||
for key in file_dict:
|
print("here")
|
||||||
value = file_dict[key]
|
|
||||||
print(key + "->" + str(value))
|
|
||||||
if not isinstance(value, list):
|
|
||||||
html_file.write("<li><a href=\"" + value + "\">" + key + "</a></li>")
|
|
||||||
else:
|
|
||||||
html_file.write("<li><a href=\"" + value[0] + "\">" + value[1] + "</a></li>")
|
|
||||||
|
|
||||||
def gen_col_headers(html_file, file_dict):
|
def gen_html():
|
||||||
for key in file_dict:
|
|
||||||
html_file.write("<li>\n")
|
|
||||||
html_file.write(" <h1>" + key + "</h1>\n")
|
|
||||||
html_file.write(" <ul>\n")
|
|
||||||
|
|
||||||
# generate list indices
|
|
||||||
gen_list_indices(html_file, file_dict[key])
|
|
||||||
|
|
||||||
html_file.write(" </ul>\n")
|
|
||||||
html_file.write("</li>\n")
|
|
||||||
|
|
||||||
def gen_columns(html_file, file_dict):
|
|
||||||
for key in file_dict:
|
|
||||||
html_file.write("<div class=\"column\">\n")
|
|
||||||
html_file.write(" <div class=\"tree\">\n")
|
|
||||||
html_file.write(" <h1>.</h1>\n")
|
|
||||||
html_file.write(" <ul>\n")
|
|
||||||
|
|
||||||
# generate the column headers
|
|
||||||
gen_col_headers(html_file, file_dict[key])
|
|
||||||
|
|
||||||
html_file.write(" </ul>\n")
|
|
||||||
html_file.write(" </div>\n")
|
|
||||||
html_file.write("</div>\n")
|
|
||||||
|
|
||||||
|
|
||||||
def gen_html(file_dict):
|
|
||||||
print("Generating index.html...")
|
print("Generating index.html...")
|
||||||
|
|
||||||
# open files
|
# open files
|
||||||
@ -79,18 +88,12 @@ def gen_html(file_dict):
|
|||||||
# copy skeleton_html to cache_html until Column Start comment
|
# copy skeleton_html to cache_html until Column Start comment
|
||||||
lines = skeleton_html.readlines()
|
lines = skeleton_html.readlines()
|
||||||
for line in lines:
|
for line in lines:
|
||||||
if line == "<!-- Columns start -->\n":
|
if line == "<!-- Columns start -->":
|
||||||
gen_columns(cache_html, file_dict)
|
gen_columns(cache_html)
|
||||||
else:
|
else:
|
||||||
cache_html.write(line)
|
cache_html.write(line)
|
||||||
|
|
||||||
# prettify
|
prettifyHTML()
|
||||||
cache_html.seek(0)
|
|
||||||
pretty_string = cache_html.read()
|
|
||||||
pretty_string = prettifyHTML(pretty_string)
|
|
||||||
cache_html.close()
|
|
||||||
cache_html = open(cache_dir + '/index.html', 'w')
|
|
||||||
cache_html.write(pretty_string)
|
|
||||||
|
|
||||||
# close files
|
# close files
|
||||||
skeleton_html.close()
|
skeleton_html.close()
|
||||||
@ -99,12 +102,8 @@ def gen_html(file_dict):
|
|||||||
print("Done!")
|
print("Done!")
|
||||||
|
|
||||||
|
|
||||||
def gen_css(file_dict):
|
|
||||||
|
|
||||||
def main():
|
|
||||||
file_dict = parse_yaml()
|
|
||||||
gen_html(file_dict)
|
|
||||||
gen_css(file_dict)
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
setup()
|
||||||
|
file_dict = parse_yaml()
|
||||||
|
gen_html()
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
:root {
|
|
||||||
/* Special */
|
|
||||||
--background: #06070A;
|
|
||||||
--foreground: #79c4c6;
|
|
||||||
--cursor: #79c4c6;
|
|
||||||
|
|
||||||
/* Colors */
|
|
||||||
--color0: #06070A;
|
|
||||||
--color1: #175564;
|
|
||||||
--color2: #066C71;
|
|
||||||
--color3: #414255;
|
|
||||||
--color4: #0E7587;
|
|
||||||
--color5: #64468F;
|
|
||||||
--color6: #8D419F;
|
|
||||||
--color7: #79c4c6;
|
|
||||||
--color8: #54898a;
|
|
||||||
--color9: #175564;
|
|
||||||
--color10: #066C71;
|
|
||||||
--color11: #414255;
|
|
||||||
--color12: #0E7587;
|
|
||||||
--color13: #64468F;
|
|
||||||
--color14: #8D419F;
|
|
||||||
--color15: #79c4c6;
|
|
||||||
}
|
|
Reference in New Issue
Block a user