Compare commits

..

No commits in common. "6fb61bb9fc392d4c922ae1912f75b26c26ae1634" and "230bb0de2ac72f6498b474880148fc56263b6b35" have entirely different histories.

View file

@ -10,21 +10,9 @@
* I'm doing the do{}while(); trick because Linux (what I'm running) is not
* POSIX compilant and so lstat() cannot be trusted on /proc entries
*
* See Also:
* man 2 stat #TODO: Figure this out on linux
*
* According to POSIX.1-2001, lstat() on a symbolic link need return
valid information only in the st_size field and the file type of
the st_mode field of the stat structure. POSIX.1-2008 tightens
the specification, requiring lstat() to return valid information
in all fields except the mode bits in st_mode.
*
* @return char* the path of the current executable
*/
char *get_dwm_path(){
return "/run/current-system/sw/bin/dwm";
// https://en.wikibooks.org/wiki/C_Programming/POSIX_Reference/sys/stat.h#Member_types
struct stat s;
int r, length, rate = 42;
char *path = NULL;