All Projects → NunuM → my-systemd-service-file-generator

NunuM / my-systemd-service-file-generator

Licence: other
A simple Systemd service file online generator.

Programming Languages

HTML
75241 projects

Projects that are alternatives of or similar to my-systemd-service-file-generator

systemd-formula
No description or website provided.
Stars: ✭ 24 (-51.02%)
Mutual labels:  systemd, systemd-service
fuzzy-sys
Utility tool for using systemctl interactively
Stars: ✭ 106 (+116.33%)
Mutual labels:  systemd
systemdspawner
Spawn JupyterHub single-user notebook servers with systemd
Stars: ✭ 79 (+61.22%)
Mutual labels:  systemd
java-systemd
Java access to systemd via D-Bus
Stars: ✭ 32 (-34.69%)
Mutual labels:  systemd
android-tether
Autostart Android USB tethering with udev + systemd + adb
Stars: ✭ 30 (-38.78%)
Mutual labels:  systemd
tsaotun
Tsaotun - Python based Assistance for Docker
Stars: ✭ 51 (+4.08%)
Mutual labels:  assistance
one-script-wsl2-systemd
The one-script variant of the systemd hack for WSL2
Stars: ✭ 196 (+300%)
Mutual labels:  systemd
kernel-syslog
📝 Kernel module that can be used as a replacement for syslog, logger or logwrapper
Stars: ✭ 37 (-24.49%)
Mutual labels:  systemd
supervisor-rs
Lite Rust version of supervisor, inspired by python version
Stars: ✭ 34 (-30.61%)
Mutual labels:  systemd
my-id-bot
Telegram bot to get ID of some chats (including your own ID)
Stars: ✭ 49 (+0%)
Mutual labels:  systemd
streamZ
A simple video streaming application made with Dart, JavaScript, HTML, CSS & ❤️
Stars: ✭ 28 (-42.86%)
Mutual labels:  systemd
dron
What if cron and systemd had a baby?
Stars: ✭ 30 (-38.78%)
Mutual labels:  systemd
triton
Triton Operating System
Stars: ✭ 56 (+14.29%)
Mutual labels:  systemd
buddy-linux
Do you remember "Wubi Ubuntu Installer"? This project is both a replacement and an improvement of Wubi. You will be able to install your Debian (or derived) distribution on a PC without repartitioning it, simply by using a secondary/external boot device (like a USB drive).
Stars: ✭ 17 (-65.31%)
Mutual labels:  systemd
zramd
Automatically setup swap on zram ✨ with optional systemd support, a simpler alternative to zram-generator and systemd-swap
Stars: ✭ 45 (-8.16%)
Mutual labels:  systemd
logback-journal
systemd journal appender for Logback
Stars: ✭ 25 (-48.98%)
Mutual labels:  systemd
ocaml-systemd
OCaml module for native access to the systemd facilities
Stars: ✭ 22 (-55.1%)
Mutual labels:  systemd
cgroups-rs
Native Rust library for managing control groups under Linux
Stars: ✭ 68 (+38.78%)
Mutual labels:  systemd
adsorber
Ad-blocker for Linux systems purely built on POSIX-compliant shell scripts.
Stars: ✭ 57 (+16.33%)
Mutual labels:  systemd
bat
Battery management utility for Linux laptops.
Stars: ✭ 107 (+118.37%)
Mutual labels:  systemd

My Systemd Generator

Tool that assist you when you are creating new service files for linux systemd

Tool Available Here

TODO
  • Give a description of the option when input is on focus

Docs scrapping

// Go to https://www.freedesktop.org/software/systemd/man/systemd.service.html
// open console

let terms = [];
let docs = {};
let last = null;

for(let el of document.getElementsByClassName("term")) {
    terms.push(el.innerText)
}

terms = terms.map(t => t.split(",").shift().trim());

for(let term of terms) {
  
  let el = document.getElementById(term);
  
  if(el) { docs[term] = el.nextSibling.innerHTML; last=el } else { docs[term] = last.nextSibling.innerHTML; }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].