commit 3965975

hovercats  ·  2022-02-18 21:31:05 +0000 UTC
parent 8247d3c
add holup script
2 files changed,  +20, -0
M README
A holup
M README
+16, -0
 1@@ -2,6 +2,14 @@ Scripts
 2 -------
 3 
 4 A repo containing some scripts I use.
 5+Please read all scrips before using them.
 6+I may not be the author of all the scripts here, if thats the case, the original
 7+author is likely listed in the script.
 8+
 9+All scripts should pass shellcheck without issues, so portabilty should
10+not be of any concern.
11+If the script does not pass shellcheck, I will be modifying it so that it does.
12+An issue should be present if a script is added, and does not pass shellcheck.
13 
14 
15 Overview
16@@ -28,3 +36,11 @@ Overview
17       - Must have read/write access to said file
18         - Permission for this file doesnt persist across reboots, so creating a
19           script that sets correct permissions on boot is required.
20+
21+  - holup
22+    - A script that just waits.
23+    - Usefull for launching an xorg-session without a WM, or restart your WM
24+      etc, without killing the xorg-session.
25+
26+ 
27+ 
A holup
+4, -0
1@@ -0,0 +1,4 @@
2+#!/bin/sh -e
3+
4+# just wait a bit
5+while :; do sleep 86400 & wait ; done