mirror of
https://codeberg.org/dwl/dwl-patches.git
synced 2026-06-11 10:23:19 +00:00
fix link
This commit is contained in:
+6103
File diff suppressed because it is too large
Load Diff
+2923
File diff suppressed because it is too large
Load Diff
@@ -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("---")
|
||||
@@ -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
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user