init
This commit is contained in:
commit
08e57832b5
|
@ -0,0 +1,21 @@
|
||||||
|
!Welcome to tilde.club!
|
||||||
|
|
||||||
|
_______________________________________
|
||||||
|
/ WELCOME TO TILDE.CLUB A PLACE FOR WEB \
|
||||||
|
\ PAGES /
|
||||||
|
---------------------------------------
|
||||||
|
\ ^__^
|
||||||
|
\ (oo)\_______
|
||||||
|
(__)\ )\/\
|
||||||
|
||----w |
|
||||||
|
|| ||
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|------------------------------------------|
|
||||||
|
| More gopher pages on tilde.club |
|
||||||
|
|------------------------------------------|
|
||||||
|
|
||||||
|
change your default gophermap to appear here
|
||||||
|
|
||||||
|
=/var/gopher/modified_users.py
|
|
@ -0,0 +1,16 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
import filecmp
|
||||||
|
import os
|
||||||
|
|
||||||
|
def users():
|
||||||
|
return sorted(os.listdir("/home"), key=lambda x: x.lower())
|
||||||
|
|
||||||
|
LINK = "1~{0} /~{0} tilde.club 70"
|
||||||
|
|
||||||
|
for user in users():
|
||||||
|
if os.path.exists(f"/home/{user}/public_gopher/gophermap"):
|
||||||
|
if not filecmp.cmp(
|
||||||
|
"/etc/skel/public_gopher/gophermap",
|
||||||
|
f"/home/{user}/public_gopher/gophermap", shallow=False):
|
||||||
|
print(LINK.format(user))
|
||||||
|
|
Loading…
Reference in New Issue