/dwm

Mahmoud Ashraf's clone of dwm

Primary LanguageCMIT LicenseMIT

DWM - Mahmoud Ashraf's fork of dwm!

How I patch my fork

  • branch out from master a new branch patched
git branch -b patched
  • add this code into /.git/config
[remote "suckless"]
	url = https://git.suckless.org/dwm
	fetch = +refs/heads/*:refs/remotes/origin/*

so I can later keep my fork up-to-date with suckless source code by using

git pull suckless master

and then merge master into patched branch

  • and here is the process to add new patch
git checkout -b ${patch_name}
curl -O ${patch_url}
patch -p1 < ${patch_file}
git commit -m "apply ${patch_name} patch"
git push -u origin HEAD
git checkout patched
git merge --squashed ${patch_name}
git commit
git push

Patches

WIP

  • integrate fullgaps with pertag

Features

  • reload xresources on run time and use ipc
dwm-msg run_commandd xrdb

Bugs

  • togglescratch crashes dwm when using it with ipc dwm-msg