This commit is contained in:
Dhruva Sambrani
2024-09-18 19:00:50 +02:00
parent 0ed712244f
commit f4a18a4bcc
5 changed files with 12893 additions and 1 deletions
+6103
View File
File diff suppressed because it is too large Load Diff
+2923
View File
File diff suppressed because it is too large Load Diff
+25
View File
@@ -0,0 +1,25 @@
import os
patchlist = os.listdir("./patches")
patchlist.sort()
for patch in patchlist:
print(f"# {patch}\n")
for file in os.listdir(f"./patches/{patch}"):
if file.lower() == "readme.md":
print(open(f"./patches/{patch}/{file}").read())
print("---")
print("# STALE PATCHES")
patchlist = os.listdir("./_STALE_PATCHES")
patchlist.sort()
for patch in patchlist:
print(f"## {patch.split(".")[0]}\n")
if (os.path.isdir(f"./_STALE_PATCHES/{patch}")):
for file in os.listdir(f"./_STALE_PATCHES/{patch}"):
if file.lower() == "readme.md":
print(open(f"./_STALE_PATCHES/{patch}/{file}").read())
else:
print(open(f"./_STALE_PATCHES/{patch}").read())
print("---")
+1 -1
View File
@@ -26,7 +26,7 @@ This patch is inspired from <https://dwm.suckless.org/patches/winview/>. Citing
> An example of how to insert this line can be found in the default config file template, config.def.h.
### Download
- [2024-09-18](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/winview/winview-20240918.patch)
- [2024-09-18](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/winview/winview.patch)
- [2024-06-06](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/winview/winview-20240606.patch)
- [git branch](https://codeberg.org/dhruva_sambrani/dwl/src/branch/winview)
+3841
View File
File diff suppressed because it is too large Load Diff