forked from ManavMuthanna/cli-top-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (84 loc) · 5.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<script src="https://code.jquery.com/jquery-1.7.2.min.js"></script>
<title>CLI-TOP</title>
<link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
</head>
<body>
<div class="container">
<nav>
<ul>
<li id="about" class="tab-select">/About</li>
<li id="download" class="tab-select">/Download</li>
<li id="setup" class="tab-select">/Setup</li>
</ul>
</nav>
<main>
<h1><span class="acm">acm@vit</span>:<span class="tilde">~</span>$ cli-top <a href="" class="typewrite" data-period="2000" data-type='[ "login", "profile", "marks", "attendance", "cgpa", "grades", "hostel", "receipts", "timetable", "exams", "help"]'>
<span class="wrap"></span>
</a><span style="color: #ccc" class="cursor">|</span></h1>
<div class="footer">
<span style="color: #4b5bc2;"> Made with </span><span style="color: red;"> <3 </span> <span style="color: #4b5bc2;"> by ACM-VIT</span>
</div>
<div>
</main>
</div>
<div class="hidden">
<!-- #region -->
<div id="download-content">
<h2>download<span class="tab-title">:<span class="tilde">~</span>$</span><span class="cursor">|</span></h2>
<p>Download the latest version of the CLI for </p>
<ul>
<li>Windows: <a id="windows-download-link" href="" target="_blank"></a></li>
<li>Linux: <a id="linux-download-link" href="" target="_blank"></a></li>
<li>MacOS: <a id="mac-download-link" href="" target="_blank"></a></li>
<li>Android: <a id="android-download-link" href="" target="_blank"></a></li>
</ul>
</div>
<!--about-->
<div id="about-content">
<h2>about<span class="tab-title">:<span class="tilde">~</span>$</span><span class="cursor">|</span></h2>
<h3>CLI-TOP</h3>
<p>A Command Line Interface (CLI) tool for <span class="tilde">seamless interaction</span> with the student portal, VTOP.</p>
<h3>ACM-VIT</h3>
<p>One of the most <span class="tilde">reputed and distinguished technical chapters </span>in VIT, Vellore which has been working with determination since its inception in 2009.
We work tirelessly towards making <span class="tilde">technology more accessible</span>, much like our parent organization, Association for Computing Machinery.</p>
</div>
<!--setup-->
<div id="setup-content">
<h2>setup<span class="tab-title">:<span class="tilde">~</span>$</span><span class="cursor">|</span></h2>
<h3>General Installation Guide</h3>
<p>Follow these steps to install CLI-TOP on your OS</p>
<h4>For All Operating Systems</h4>
<p>1. Download the appropriate CLI-TOP file for your operating system.</p>
<p>2. Create a dedicated folder for the CLI-TOP tool, such as <code>C:\Users\[username]\cli-top</code> on Windows, or a similar location on Linux/MacOS.</p>
<p>3. Move the downloaded file to the created folder.</p>
<h4>Windows</h4>
<p>- Access System Properties and open Environment Variables.</p>
<p>- Edit the 'Path' variable under User variables to include the path to your CLI-TOP folder.</p>
<p>- Apply changes</p>
<h4>Linux</h4>
<p>- Open a terminal and navigate to the CLI-TOP folder.</p>
<p>- Modify your shell's profile script to include the CLI-TOP folder in your PATH environment variable.</p>
<p>- Apply changes by restarting the terminal.</p>
<h4>MacOS</h4>
<p>a) Modify your shell's profile script(usually .zshrc in the root folder, maybe a hidden file) to include the CLI-TOP folder in your PATH environment variable.</p>
<p>b) Try running the command cli-top if you do not see the logo then proceed with the following steps:</p>
<p>- Failure to grant full disk access may result in the Terminal error "Operation not permitted." To resolve this issue, navigate to System Preferences > Security & Privacy > Privacy panel, and include Terminal in the Full Disk Access list. If the cli-top command still doesn't work then execute the steps that follow</p>
<p>- Check permissions: Use <code>ls -l ./cli-top</code> to view the file's permissions.</p>
<p>- Add execute permission: If the "x" flag is missing, use <code>chmod +x ./cli-top</code> to grant it.</p>
<p>- Remove quarantine flag: Use <code>xattr -d com.apple.quarantine ./cli-top</code> to remove the quarantine flag.</p>
<p>- Apply changes by restarting the terminal.</p>
<p>Verify the installation by running <code>cli-top</code> in your command line or terminal. The tool should launch successfully.</p>
</div>
</div>
<script src="js/winbox.bundle.js"></script>
<script src="js/main.js"></script>
<script type="module" src="js/downloadLinks.js"></script>
</body>
</html>