diff --git a/README.md b/README.md new file mode 100644 index 0000000..a03a3a5 --- /dev/null +++ b/README.md @@ -0,0 +1,38 @@ +LocalHostBunny +================= + +Shows all locally running webserver for quick access + +![](README_files/screenshot.png) + + +# Systemd Unit + + +``` +#> vim /etc/systemd/system/localhostbunny.service +``` + +``` +[Unit] +Description=LocalhostBunny +After=network.target +Wants=network-online.target + +[Service] +Restart=always +Type=simple +User=root +Group=root +WorkingDirectory=/home/{{USER}} +ExecStart=/home/{{USER}}/bunny +Environment= + +[Install] +WantedBy=multi-user.target +``` + +``` +#> systemctl daemon-reload +#> systemctl enable --now "localhostbunny" +``` diff --git a/README_files/screenshot.png b/README_files/screenshot.png new file mode 100644 index 0000000..0212f93 Binary files /dev/null and b/README_files/screenshot.png differ