Skip to content

Commit

Permalink
Merge branch 'main' into 20-check-debian-package-structure
Browse files Browse the repository at this point in the history
  • Loading branch information
igorpecovnik authored Dec 9, 2023
2 parents d7a7935 + 6f9b805 commit 07ce886
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 8 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,16 @@
## Quick start
Run the following commands:

sudo apt install git
cd ~/
git clone https://github.com/armbian/configng.git
cd configng
./bin/armbian-configng --dev
echo "deb [signed-by=/usr/share/keyrings/armbian.gpg] https://armbian.github.io/configng stable main" \
| sudo tee /etc/apt/sources.list.d/armbian-development.list > /dev/null

armbian-configng --dev

If all goes well you should see the Text-Based User Inerface (TUI)

### To see a list of all functions and their descriptions, run the following command:
~~~
bash ~/configng/bin/armbian-configng -h
armbian-configng -h
~~~
## Coding Style
follow the following coding style:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ Function Name,Group Name,Description,Options,Category,Category Description
NMTUI,network,Network Manager.,none.,network,Network Wired wireless Bluetooth access point
Hello,system,Hello System.,none,system,System and Security
Bencharking,monitor,Armbian Monitor and Bencharking.,,system,System and Security
Install,system,Armbian installer,none.,system,System and Security
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<html>
<head>
<title>
Armbian index </title>
Armbian armbian-configng </title>
<style>
body {
font-family: Arial, sans-serif;
Expand All @@ -26,7 +26,7 @@
</head>
<body>
<header>
<h1>index</h1>
<h1>armbian-configng</h1>
</header>
<nav>
<ul>
Expand Down Expand Up @@ -69,6 +69,14 @@ <h1>index</h1>
"Options": "",
"Category": "system",
"Category Description": "System and Security"
},
{
"Function Name": "Install",
"Group Name": "system",
"Description": "Armbian installer",
"Options": "none.",
"Category": "system",
"Category Description": "System and Security"
}
] ;
var data = jsonData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,13 @@
"Options": "",
"Category": "system",
"Category Description": "System and Security"
},
{
"Function Name": "Install",
"Group Name": "system",
"Description": "Armbian installer",
"Options": "none.",
"Category": "system",
"Category Description": "System and Security"
}
]
File renamed without changes
42 changes: 42 additions & 0 deletions share/doc/armbian-configng/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #333;
color: #fff;
font-family: Arial, sans-serif;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
th {
background-color: #4CAF50;
color: white;
}
tr:nth-child(even) {color: black; background-color: #f2f2f2; }
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Function Name</th>
<th>Group Name</th>
<th>Description</th>
<th>Options</th>
<th>Category</th>
<th>Category Description</th>
</tr>
</thead>
<tbody><tr><td>NMTUI</td><td>network</td><td>Network Manager.</td><td>none.</td><td>network</td><td>Network Wired wireless Bluetooth access point</td></tr><tr><td>Hello</td><td>system</td><td>Hello System.</td><td>none</td><td>system</td><td>System and Security</td></tr><tr><td>Bencharking</td><td>monitor</td><td>Armbian Monitor and Bencharking.</td><td></td><td>system</td><td>System and Security</td></tr><tr><td>Install</td><td>system</td><td>Armbian installer</td><td>none.</td><td>system</td><td>System and Security</td></tr>
</tbody>
</table>

</body>
</html>

0 comments on commit 07ce886

Please sign in to comment.