This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # by lomaster | |
| # Dependencies: feh, noto-fonts | |
| # Wallaper back.jpg | |
| font pango:Noto Mono Regular 8 | |
| set $mod Mod4 | |
| # This font is widely installed, provides lots of unicode glyphs, right-to-left | |
| # text rendering and scalability on retina/hidpi displays (thanks to pango). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdarg.h> | |
| void logg(const char *p, const char *fmt, ...) | |
| { | |
| va_list args; | |
| FILE *tmp; | |
| if (p) { | |
| va_start(args, fmt); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <string.h> | |
| #include <stdio.h> | |
| #include <sys/socket.h> | |
| #include <net/if.h> | |
| #include <net/if_arp.h> | |
| #include <sys/param.h> | |
| #include <netpacket/packet.h> | |
| #include <net/ethernet.h> | |
| #include <sys/ioctl.h> | |
| #include <unistd.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <curl/curl.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <limits.h> | |
| #include <sys/types.h> | |
| #include <sys/random.h> | |
| #include <sys/time.h> | |
| #include <time.h> | |
| #include <assert.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # lomaster configuration i3 windows manager | |
| # 2025-08-21 | |
| # | |
| set $mod Mod4 | |
| set $terminal xterm -fa FreeMono -fs 10 -bg black -fg white | |
| set $screenshot ~/.config/i3/sc.sh | |
| set $menu xterm -fa FreeMono -fs 10 -bg black -fg white -e ~/bin/aelist/aelist -L /bin /sbin /usr/bin /usr/sbin | |
| set $ws1 "1" |