← Back to team overview

scratch team mailing list archive

Re: Fwd: Re: Bug#471927: Scratch 1.4 source code released under GPL v2

 

On 05/04/12 16:41, Derek O'Connell wrote:
(missed list address off)

On 05/04/12 16:20, Miriam Ruiz wrote:
 2012/4/5 Amos Blanton<amos@xxxxxxxxxxxxxxx>:

 According to strace, when running scratch on the latest squeak-vm the
 system seems to be waiting forever to several resources that do not
 exist:
 - /usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000
- /usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000 - /home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000

 The funny thing is that it seems that the older machine was also
 looking for them, and didn't find them, but kept trying for a couple
of times and then went on. I don't know where these numbers come from,
 żany ideas?
 Hi Miry,
I asked John Maloney, the lead developer of Scratch, and he said that those cursor paths aren't part of the Scratch code. So it sounds like it's a VM
 issue.

 Sorry we can't be more helpful...
 Lots of thanks, knowing that the problem does not lay within Scratch
 itself is indeed very useful :)

 Greetings,
 Miry

 _______________________________________________
 Mailing list: https://launchpad.net/~scratch
 Post to     : scratch@xxxxxxxxxxxxxxxxxxx
 Unsubscribe : https://launchpad.net/~scratch
 More help   : https://help.launchpad.net/ListHelp

I'm having a quick dig but already in unfamiliar territory. It looks
like the attempts to open non-existent files is not the vm but normal
libXcursor behaviour (hash from cached images). So while it may still be
related to delays it's not certain. Could you run strace again and add
option to display time -t/tt? Also use option to increase length of
strings, say "-s 64", since I also notice the string on line 70 appears
longer than when you cat /usr/share/icons/default/index.theme on lines
80/81. Full strace might also have some clues (abort if taking too long).

-D


_______________________________________________
Mailing list: https://launchpad.net/~scratch
Post to     : scratch@xxxxxxxxxxxxxxxxxxx
Unsubscribe : https://launchpad.net/~scratch
More help   : https://help.launchpad.net/ListHelp

Best guess for delay, lots of EAGAIN errors trying to read the image (and a new one for me, ERESTART_RESTARTBLOCK, line 436). Most probably some code in sqUnixX11.c needs to take these errors into account. In my experience these types of errors are simply more likely on some systems than others so may be difficult to reproduce. Needs passing to someone familiar with sqUnixX11.c

strace from Miriam attached.

-D
17:47:03.219097 execve("/usr/lib/squeak/4.4.7-2357/squeakvm", ["/usr/lib/squeak/4.4.7-2357/squeakvm", "-encoding", "UTF-8", "-vm-display-x11", "-xshm", "-plugins", "/usr/lib/scratch/plugins/:/usr/lib/squeak/4.4.7-2357/", "-vm-sound-oss", "/usr/share/scratch/Scratch.image"], [/* 45 vars */]) = 0
17:47:03.219359 brk(0)                  = 0xca6000
17:47:03.219405 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.219450 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe358553000
17:47:03.219487 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
17:47:03.219526 open("/etc/ld.so.cache", O_RDONLY) = 3
17:47:03.219558 fstat(3, {st_mode=S_IFREG|0644, st_size=187980, ...}) = 0
17:47:03.219595 mmap(NULL, 187980, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fe358525000
17:47:03.219622 close(3)                = 0
17:47:03.219649 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.219685 open("/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY) = 3
17:47:03.219717 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360>\0\0\0\0\0\0@\0\0\0\0\0\0\0\260\21\10\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0\36\0\35\0"..., 832) = 832
17:47:03.219759 fstat(3, {st_mode=S_IFREG|0644, st_size=530736, ...}) = 0
17:47:03.219794 mmap(NULL, 2625768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe3580b4000
17:47:03.219823 mprotect(0x7fe358135000, 2093056, PROT_NONE) = 0
17:47:03.219851 mmap(0x7fe358334000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x80000) = 0x7fe358334000
17:47:03.219887 close(3)                = 0
17:47:03.219916 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.219949 open("/lib/libpcre.so.3", O_RDONLY) = 3
17:47:03.219979 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\30\0\0\0\0\0\0@\0\0\0\0\0\0\0\20\254\3\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\34\0\33\0"..., 832) = 832
17:47:03.220015 fstat(3, {st_mode=S_IFREG|0644, st_size=242448, ...}) = 0
17:47:03.220048 mmap(NULL, 2337568, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe357e79000
17:47:03.220076 mprotect(0x7fe357eb4000, 2093056, PROT_NONE) = 0
17:47:03.220103 mmap(0x7fe3580b3000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3a000) = 0x7fe3580b3000
17:47:03.220160 close(3)                = 0
17:47:03.220192 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.220228 open("/usr/lib/libjpeg.so.8", O_RDONLY) = 3
17:47:03.220259 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260K\0\0\0\0\0\0@\0\0\0\0\0\0\0\360\213\3\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\35\0\34\0"..., 832) = 832
17:47:03.220295 fstat(3, {st_mode=S_IFREG|0644, st_size=234288, ...}) = 0
17:47:03.220328 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe358524000
17:47:03.220358 mmap(NULL, 2329328, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe357c40000
17:47:03.220387 mprotect(0x7fe357c78000, 2097152, PROT_NONE) = 0
17:47:03.220414 mmap(0x7fe357e78000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x38000) = 0x7fe357e78000
17:47:03.220447 close(3)                = 0
17:47:03.220477 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.220513 open("/lib/x86_64-linux-gnu/libdl.so.2", O_RDONLY) = 3
17:47:03.220545 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\r\0\0\0\0\0\0@\0\0\0\0\0\0\0\2601\0\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0 \0\37\0"..., 832) = 832
17:47:03.220581 fstat(3, {st_mode=S_IFREG|0644, st_size=14768, ...}) = 0
17:47:03.220614 mmap(NULL, 2109696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe357a3c000
17:47:03.220642 mprotect(0x7fe357a3e000, 2097152, PROT_NONE) = 0
17:47:03.220668 mmap(0x7fe357c3e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fe357c3e000
17:47:03.220704 close(3)                = 0
17:47:03.220735 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.220770 open("/usr/lib/libfreetype.so.6", O_RDONLY) = 3
17:47:03.220813 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\326\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\217\t\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.220849 fstat(3, {st_mode=S_IFREG|0644, st_size=628408, ...}) = 0
17:47:03.220882 mmap(NULL, 2723624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe3577a3000
17:47:03.220910 mprotect(0x7fe357837000, 2093056, PROT_NONE) = 0
17:47:03.220937 mmap(0x7fe357a36000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x93000) = 0x7fe357a36000
17:47:03.220970 close(3)                = 0
17:47:03.221000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.221031 open("/lib/x86_64-linux-gnu/libnsl.so.1", O_RDONLY) = 3
17:47:03.221062 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 @\0\0\0\0\0\0@\0\0\0\0\0\0\0`T\1\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0\36\0\35\0"..., 832) = 832
17:47:03.221098 fstat(3, {st_mode=S_IFREG|0644, st_size=89056, ...}) = 0
17:47:03.221130 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe358523000
17:47:03.221160 mmap(NULL, 2194128, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe35758b000
17:47:03.221187 mprotect(0x7fe3575a0000, 2093056, PROT_NONE) = 0
17:47:03.221216 mmap(0x7fe35779f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7fe35779f000
17:47:03.221250 mmap(0x7fe3577a1000, 6864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fe3577a1000
17:47:03.221284 close(3)                = 0
17:47:03.221313 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.221348 open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY) = 3
17:47:03.221379 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\357\1\0\0\0\0\0@\0\0\0\0\0\0\0P\357\27\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0#\0\"\0"..., 832) = 832
17:47:03.221414 fstat(3, {st_mode=S_IFREG|0755, st_size=1570832, ...}) = 0
17:47:03.221448 mmap(NULL, 3684440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe357207000
17:47:03.221476 mprotect(0x7fe357381000, 2097152, PROT_NONE) = 0
17:47:03.221504 mmap(0x7fe357581000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17a000) = 0x7fe357581000
17:47:03.221537 mmap(0x7fe357586000, 18520, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fe357586000
17:47:03.221570 close(3)                = 0
17:47:03.221602 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.221638 open("/usr/lib/libz.so.1", O_RDONLY) = 3
17:47:03.221670 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\"\0\0\0\0\0\0@\0\0\0\0\0\0\0\260g\1\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\35\0\34\0"..., 832) = 832
17:47:03.221705 fstat(3, {st_mode=S_IFREG|0644, st_size=93936, ...}) = 0
17:47:03.221738 mmap(NULL, 2188976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe356ff0000
17:47:03.221766 mprotect(0x7fe357007000, 2093056, PROT_NONE) = 0
17:47:03.221793 mmap(0x7fe357206000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7fe357206000
17:47:03.221827 close(3)                = 0
17:47:03.221859 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe358522000
17:47:03.221904 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe358521000
17:47:03.221934 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe358520000
17:47:03.221963 arch_prctl(ARCH_SET_FS, 0x7fe358521700) = 0
17:47:03.222052 mprotect(0x7fe357581000, 16384, PROT_READ) = 0
17:47:03.222093 mprotect(0x7fe35779f000, 4096, PROT_READ) = 0
17:47:03.222167 mprotect(0x7fe357c3e000, 4096, PROT_READ) = 0
17:47:03.222229 mprotect(0x7fe358334000, 4096, PROT_READ) = 0
17:47:03.222266 mprotect(0x7fe358555000, 4096, PROT_READ) = 0
17:47:03.222294 munmap(0x7fe358525000, 187980) = 0
17:47:03.222390 brk(0)                  = 0xca6000
17:47:03.222418 brk(0xcc7000)           = 0xcc7000
17:47:03.222452 rt_sigaction(SIGSEGV, {0x42f880, [SEGV], SA_RESTORER|SA_RESTART, 0x7fe357239480}, {SIG_DFL, [], 0}, 8) = 0
17:47:03.222514 open("/etc/localtime", O_RDONLY) = 3
17:47:03.222548 fstat(3, {st_mode=S_IFREG|0644, st_size=2593, ...}) = 0
17:47:03.222583 fstat(3, {st_mode=S_IFREG|0644, st_size=2593, ...}) = 0
17:47:03.222616 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe358552000
17:47:03.222644 read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\10\0\0\0\0\0\0\0\243\0\0\0\10\0\0\0\27\234\363\360p\235\276\367p\236\272\305\360\237\240*\360\240\216\312p"..., 4096) = 2593
17:47:03.222685 lseek(3, -1647, SEEK_CUR) = 946
17:47:03.222710 read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\t\0\0\0\0\0\0\0\244\0\0\0\t\0\0\0\33\377\377\377\377~6\270t\377\377\377\377\234\363\360p\377\377\377\377"..., 4096) = 1647
17:47:03.222747 close(3)                = 0
17:47:03.222772 munmap(0x7fe358552000, 4096) = 0
17:47:03.222810 readlink("/proc/self/exe", "/usr/lib/squeak/4.4.7-2357/squeakvm", 4097) = 35
17:47:03.222866 stat("/usr/lib/squeak/4.4.7-2357/squeakvm", {st_mode=S_IFREG|0755, st_size=623752, ...}) = 0
17:47:03.222910 lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
17:47:03.222946 lstat("/usr/lib", {st_mode=S_IFDIR|0755, st_size=172032, ...}) = 0
17:47:03.222980 lstat("/usr/lib/squeak", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
17:47:03.223014 lstat("/usr/lib/squeak/4.4.7-2357", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
17:47:03.223049 lstat("/usr/lib/squeak/4.4.7-2357/squeakvm", {st_mode=S_IFREG|0755, st_size=623752, ...}) = 0
17:47:03.223100 open("/usr/lib/locale/locale-archive", O_RDONLY) = 3
17:47:03.223132 fstat(3, {st_mode=S_IFREG|0644, st_size=1534544, ...}) = 0
17:47:03.223164 mmap(NULL, 1534544, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fe3583a9000
17:47:03.223193 close(3)                = 0
17:47:03.223273 open("/etc/ld.so.cache", O_RDONLY) = 3
17:47:03.223306 fstat(3, {st_mode=S_IFREG|0644, st_size=187980, ...}) = 0
17:47:03.223339 mmap(NULL, 187980, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fe358525000
17:47:03.223364 close(3)                = 0
17:47:03.223390 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.223425 open("/lib/x86_64-linux-gnu/tls/x86_64/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223457 stat("/lib/x86_64-linux-gnu/tls/x86_64", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.223485 open("/lib/x86_64-linux-gnu/tls/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223514 stat("/lib/x86_64-linux-gnu/tls", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.223542 open("/lib/x86_64-linux-gnu/x86_64/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223571 stat("/lib/x86_64-linux-gnu/x86_64", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.223599 open("/lib/x86_64-linux-gnu/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223628 stat("/lib/x86_64-linux-gnu", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
17:47:03.223663 open("/usr/lib/x86_64-linux-gnu/tls/x86_64/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223693 stat("/usr/lib/x86_64-linux-gnu/tls/x86_64", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.223722 open("/usr/lib/x86_64-linux-gnu/tls/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223750 stat("/usr/lib/x86_64-linux-gnu/tls", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.223778 open("/usr/lib/x86_64-linux-gnu/x86_64/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223807 stat("/usr/lib/x86_64-linux-gnu/x86_64", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.223835 open("/usr/lib/x86_64-linux-gnu/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223865 stat("/usr/lib/x86_64-linux-gnu", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
17:47:03.223901 open("/lib/tls/x86_64/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223938 stat("/lib/tls/x86_64", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.223965 open("/lib/tls/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.223993 stat("/lib/tls", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.224020 open("/lib/x86_64/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.224047 stat("/lib/x86_64", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.224074 open("/lib/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.224102 stat("/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
17:47:03.224143 open("/usr/lib/tls/x86_64/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.224173 stat("/usr/lib/tls/x86_64", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.224201 open("/usr/lib/tls/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.224228 stat("/usr/lib/tls", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.224255 open("/usr/lib/x86_64/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.224283 stat("/usr/lib/x86_64", 0x7fff765bede0) = -1 ENOENT (No such file or directory)
17:47:03.224310 open("/usr/lib/vm-display-X11", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.224338 stat("/usr/lib", {st_mode=S_IFDIR|0755, st_size=172032, ...}) = 0
17:47:03.224375 munmap(0x7fe358525000, 187980) = 0
17:47:03.224410 open("/usr/lib/squeak/4.4.7-2357//so.vm-display-X11", O_RDONLY) = 3
17:47:03.224443 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`{\0\0\0\0\0\0@\0\0\0\0\0\0\0\30\223\1\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.224479 fstat(3, {st_mode=S_IFREG|0644, st_size=104920, ...}) = 0
17:47:03.224513 mmap(NULL, 2206656, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe356dd5000
17:47:03.224541 mprotect(0x7fe356dee000, 2093056, PROT_NONE) = 0
17:47:03.224571 mmap(0x7fe356fed000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18000) = 0x7fe356fed000
17:47:03.224604 mmap(0x7fe356fef000, 3008, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fe356fef000
17:47:03.224638 close(3)                = 0
17:47:03.224669 open("/etc/ld.so.cache", O_RDONLY) = 3
17:47:03.224699 fstat(3, {st_mode=S_IFREG|0644, st_size=187980, ...}) = 0
17:47:03.224892 mmap(NULL, 187980, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fe358525000
17:47:03.224926 close(3)                = 0
17:47:03.224952 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.224988 open("/usr/lib/libXrender.so.1", O_RDONLY) = 3
17:47:03.225020 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\33\0\0\0\0\0\0@\0\0\0\0\0\0\0h\225\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.225056 fstat(3, {st_mode=S_IFREG|0644, st_size=39976, ...}) = 0
17:47:03.225094 mmap(NULL, 2135208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe356bcb000
17:47:03.225123 mprotect(0x7fe356bd4000, 2097152, PROT_NONE) = 0
17:47:03.225152 mmap(0x7fe356dd4000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7fe356dd4000
17:47:03.225186 close(3)                = 0
17:47:03.225217 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.225253 open("/usr/lib/libSM.so.6", O_RDONLY) = 3
17:47:03.225284 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\34\0\0\0\0\0\0@\0\0\0\0\0\0\0\10v\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.225320 fstat(3, {st_mode=S_IFREG|0644, st_size=31944, ...}) = 0
17:47:03.225354 mmap(NULL, 2127160, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe3569c3000
17:47:03.225383 mprotect(0x7fe3569cb000, 2093056, PROT_NONE) = 0
17:47:03.225412 mmap(0x7fe356bca000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7fe356bca000
17:47:03.225446 close(3)                = 0
17:47:03.225476 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.225518 open("/usr/lib/libICE.so.6", O_RDONLY) = 3
17:47:03.225550 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200R\0\0\0\0\0\0@\0\0\0\0\0\0\0\220m\1\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\34\0\33\0"..., 832) = 832
17:47:03.225586 fstat(3, {st_mode=S_IFREG|0644, st_size=95376, ...}) = 0
17:47:03.225620 mmap(NULL, 2205056, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe3567a8000
17:47:03.225648 mprotect(0x7fe3567bf000, 2093056, PROT_NONE) = 0
17:47:03.225677 mmap(0x7fe3569be000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7fe3569be000
17:47:03.225714 mmap(0x7fe3569bf000, 13696, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fe3569bf000
17:47:03.225746 close(3)                = 0
17:47:03.225776 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.225807 open("/usr/lib/libX11.so.6", O_RDONLY) = 3
17:47:03.225838 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\0\2\0\0\0\0\0@\0\0\0\0\0\0\0\0\247\23\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\34\0\33\0"..., 832) = 832
17:47:03.225875 fstat(3, {st_mode=S_IFREG|0644, st_size=1289728, ...}) = 0
17:47:03.225911 mmap(NULL, 3386696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe35646d000
17:47:03.225940 mprotect(0x7fe3565a2000, 2097152, PROT_NONE) = 0
17:47:03.225969 mmap(0x7fe3567a2000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x135000) = 0x7fe3567a2000
17:47:03.226006 close(3)                = 0
17:47:03.226037 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.226069 open("/usr/lib/libXext.so.6", O_RDONLY) = 3
17:47:03.226100 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3409\0\0\0\0\0\0@\0\0\0\0\0\0\0\300\33\1\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\34\0\33\0"..., 832) = 832
17:47:03.226136 fstat(3, {st_mode=S_IFREG|0644, st_size=74432, ...}) = 0
17:47:03.226170 mmap(NULL, 2170152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe35625b000
17:47:03.226199 mprotect(0x7fe35626c000, 2097152, PROT_NONE) = 0
17:47:03.226226 mmap(0x7fe35646c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7fe35646c000
17:47:03.226259 close(3)                = 0
17:47:03.226290 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.226321 open("/usr/lib/libGLU.so.1", O_RDONLY) = 3
17:47:03.226352 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0PK\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\t\7\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\34\0\33\0"..., 832) = 832
17:47:03.226388 fstat(3, {st_mode=S_IFREG|0644, st_size=463096, ...}) = 0
17:47:03.226421 mmap(NULL, 2558232, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe355fea000
17:47:03.226449 mprotect(0x7fe35605a000, 2093056, PROT_NONE) = 0
17:47:03.226477 mmap(0x7fe356259000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6f000) = 0x7fe356259000
17:47:03.226509 close(3)                = 0
17:47:03.226541 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.226572 open("/usr/lib/libGL.so.1", O_RDONLY) = 3
17:47:03.226603 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p`\2\0\0\0\0\0@\0\0\0\0\0\0\0 A\7\0\0\0\0\0\0\0\0\0@\0008\0\10\0@\0\37\0\36\0"..., 832) = 832
17:47:03.226639 lseek(3, 423812, SEEK_SET) = 423812
17:47:03.226662 read(3, "\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\4\0\0\0\24\0\0\0", 32) = 32
17:47:03.226695 fstat(3, {st_mode=S_IFREG|0644, st_size=477408, ...}) = 0
17:47:03.226729 mmap(NULL, 2583192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe355d73000
17:47:03.226758 mprotect(0x7fe355ddb000, 2097152, PROT_NONE) = 0
17:47:03.226787 mmap(0x7fe355fdb000, 49152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x68000) = 0x7fe355fdb000
17:47:03.226817 mmap(0x7fe355fe7000, 10904, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fe355fe7000
17:47:03.226851 close(3)                = 0
17:47:03.226885 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.226930 open("/lib/libuuid.so.1", O_RDONLY) = 3
17:47:03.226961 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\25\0\0\0\0\0\0@\0\0\0\0\0\0\0\3505\0\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\36\0\35\0"..., 832) = 832
17:47:03.226998 fstat(3, {st_mode=S_IFREG|0644, st_size=15720, ...}) = 0
17:47:03.227038 mmap(NULL, 2110736, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe355b6f000
17:47:03.227068 mprotect(0x7fe355b73000, 2093056, PROT_NONE) = 0
17:47:03.227097 mmap(0x7fe355d72000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7fe355d72000
17:47:03.227130 close(3)                = 0
17:47:03.227161 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.227193 open("/usr/lib/libxcb.so.1", O_RDONLY) = 3
17:47:03.227223 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\227\0\0\0\0\0\0@\0\0\0\0\0\0\0\240\273\1\0\0\0\0\0\0\0\0\0@\0008\0\5\0@\0\33\0\32\0"..., 832) = 832
17:47:03.227260 fstat(3, {st_mode=S_IFREG|0644, st_size=115296, ...}) = 0
17:47:03.227293 mmap(NULL, 2210672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe355953000
17:47:03.227322 mprotect(0x7fe35596f000, 2093056, PROT_NONE) = 0
17:47:03.227350 mmap(0x7fe355b6e000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7fe355b6e000
17:47:03.227383 close(3)                = 0
17:47:03.227417 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.227452 open("/usr/lib/x86_64-linux-gnu/libstdc++.so.6", O_RDONLY) = 3
17:47:03.227485 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\352\5\0\0\0\0\0@\0\0\0\0\0\0\0X\350\16\0\0\0\0\0\0\0\0\0@\0008\0\10\0@\0\37\0\36\0"..., 832) = 832
17:47:03.227521 fstat(3, {st_mode=S_IFREG|0644, st_size=978968, ...}) = 0
17:47:03.227555 mmap(NULL, 3158896, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe35564f000
17:47:03.227584 mprotect(0x7fe355734000, 2097152, PROT_NONE) = 0
17:47:03.227613 mmap(0x7fe355934000, 40960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe5000) = 0x7fe355934000
17:47:03.227652 mmap(0x7fe35593e000, 82800, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fe35593e000
17:47:03.227687 close(3)                = 0
17:47:03.227719 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.227754 open("/lib/x86_64-linux-gnu/libgcc_s.so.1", O_RDONLY) = 3
17:47:03.227784 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 -\0\0\0\0\0\0@\0\0\0\0\0\0\0\250T\1\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\34\0\33\0"..., 832) = 832
17:47:03.227820 fstat(3, {st_mode=S_IFREG|0644, st_size=89000, ...}) = 0
17:47:03.227857 mmap(NULL, 2184760, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe355439000
17:47:03.227887 mprotect(0x7fe35544e000, 2097152, PROT_NONE) = 0
17:47:03.227914 mmap(0x7fe35564e000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fe35564e000
17:47:03.227948 close(3)                = 0
17:47:03.227981 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.228012 open("/usr/lib/libXdamage.so.1", O_RDONLY) = 3
17:47:03.228044 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\v\0\0\0\0\0\0@\0\0\0\0\0\0\0\200\34\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.228080 fstat(3, {st_mode=S_IFREG|0644, st_size=9024, ...}) = 0
17:47:03.228116 mmap(NULL, 2104248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe355237000
17:47:03.228154 mprotect(0x7fe355239000, 2093056, PROT_NONE) = 0
17:47:03.228183 mmap(0x7fe355438000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fe355438000
17:47:03.228218 close(3)                = 0
17:47:03.228248 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.228280 open("/usr/lib/x86_64-linux-gnu/libXfixes.so.3", O_RDONLY) = 3
17:47:03.228312 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\26\0\0\0\0\0\0@\0\0\0\0\0\0\0\350S\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\32\0\31\0"..., 832) = 832
17:47:03.228839 fstat(3, {st_mode=S_IFREG|0644, st_size=23144, ...}) = 0
17:47:03.228887 mmap(NULL, 2118440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe355031000
17:47:03.228921 mprotect(0x7fe355036000, 2097152, PROT_NONE) = 0
17:47:03.228951 mmap(0x7fe355236000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fe355236000
17:47:03.228990 close(3)                = 0
17:47:03.229026 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.229063 open("/usr/lib/libXxf86vm.so.1", O_RDONLY) = 3
17:47:03.229105 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\17\0\0\0\0\0\0@\0\0\0\0\0\0\0\200G\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\34\0\33\0"..., 832) = 832
17:47:03.229147 fstat(3, {st_mode=S_IFREG|0644, st_size=20096, ...}) = 0
17:47:03.229194 mmap(NULL, 2115240, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe354e2c000
17:47:03.229226 mprotect(0x7fe354e31000, 2093056, PROT_NONE) = 0
17:47:03.229252 mmap(0x7fe355030000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fe355030000
17:47:03.229285 close(3)                = 0
17:47:03.229316 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.229350 open("/usr/lib/libdrm.so.2", O_RDONLY) = 3
17:47:03.229388 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p4\0\0\0\0\0\0@\0\0\0\0\0\0\0008\245\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.229435 fstat(3, {st_mode=S_IFREG|0644, st_size=44024, ...}) = 0
17:47:03.229477 mmap(NULL, 2141584, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe354c21000
17:47:03.229509 mprotect(0x7fe354c2b000, 2097152, PROT_NONE) = 0
17:47:03.229561 mmap(0x7fe354e2b000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7fe354e2b000
17:47:03.229642 close(3)                = 0
17:47:03.229681 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.229720 open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY) = 3
17:47:03.229754 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\\\0\0\0\0\0\0@\0\0\0\0\0\0\0\320s\1\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0#\0 \0"..., 832) = 832
17:47:03.229793 fstat(3, {st_mode=S_IFREG|0755, st_size=131107, ...}) = 0
17:47:03.229833 mmap(NULL, 2208672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe354a05000
17:47:03.229867 mprotect(0x7fe354a1c000, 2093056, PROT_NONE) = 0
17:47:03.229901 mmap(0x7fe354c1b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7fe354c1b000
17:47:03.229944 mmap(0x7fe354c1d000, 13216, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fe354c1d000
17:47:03.229982 close(3)                = 0
17:47:03.230021 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.230057 open("/usr/lib/libXau.so.6", O_RDONLY) = 3
17:47:03.230090 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\r\0\0\0\0\0\0@\0\0\0\0\0\0\0\320#\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.230132 fstat(3, {st_mode=S_IFREG|0644, st_size=10896, ...}) = 0
17:47:03.230176 mmap(NULL, 2106104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe354802000
17:47:03.230210 mprotect(0x7fe354804000, 2097152, PROT_NONE) = 0
17:47:03.230241 mmap(0x7fe354a04000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fe354a04000
17:47:03.230280 close(3)                = 0
17:47:03.230317 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.230352 open("/usr/lib/libXdmcp.so.6", O_RDONLY) = 3
17:47:03.230392 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\24\0\0\0\0\0\0@\0\0\0\0\0\0\0XI\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.230441 fstat(3, {st_mode=S_IFREG|0644, st_size=20504, ...}) = 0
17:47:03.230480 mmap(NULL, 2115696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe3545fd000
17:47:03.230524 mprotect(0x7fe354602000, 2093056, PROT_NONE) = 0
17:47:03.230554 mmap(0x7fe354801000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fe354801000
17:47:03.230593 close(3)                = 0
17:47:03.230639 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.230678 open("/lib/x86_64-linux-gnu/librt.so.1", O_RDONLY) = 3
17:47:03.230717 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220!\0\0\0\0\0\0@\0\0\0\0\0\0\0\300s\0\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0!\0 \0"..., 832) = 832
17:47:03.230762 fstat(3, {st_mode=S_IFREG|0644, st_size=31744, ...}) = 0
17:47:03.230803 mmap(NULL, 2128856, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe3543f5000
17:47:03.230836 mprotect(0x7fe3543fc000, 2093056, PROT_NONE) = 0
17:47:03.230870 mmap(0x7fe3545fb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fe3545fb000
17:47:03.230918 close(3)                = 0
17:47:03.231077 mprotect(0x7fe3545fb000, 4096, PROT_READ) = 0
17:47:03.231195 mprotect(0x7fe354c1b000, 4096, PROT_READ) = 0
17:47:03.232504 mprotect(0x7fe355934000, 32768, PROT_READ) = 0
17:47:03.233292 set_tid_address(0x7fe3585219d0) = 12847
17:47:03.233322 set_robust_list(0x7fe3585219e0, 0x18) = 0
17:47:03.233347 futex(0x7fff765bf21c, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, 7fe358521700) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.233385 rt_sigaction(SIGRTMIN, {0x7fe354a0aac0, [], SA_RESTORER|SA_SIGINFO, 0x7fe354a14020}, NULL, 8) = 0
17:47:03.233420 rt_sigaction(SIGRT_1, {0x7fe354a0ab50, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7fe354a14020}, NULL, 8) = 0
17:47:03.233453 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
17:47:03.233482 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
17:47:03.233566 munmap(0x7fe358525000, 187980) = 0
17:47:03.233633 open("/etc/ld.so.cache", O_RDONLY) = 3
17:47:03.233669 fstat(3, {st_mode=S_IFREG|0644, st_size=187980, ...}) = 0
17:47:03.233703 mmap(NULL, 187980, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fe358525000
17:47:03.233730 close(3)                = 0
17:47:03.233756 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.233793 open("/lib/x86_64-linux-gnu/vm-sound-OSS", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.233825 open("/usr/lib/x86_64-linux-gnu/vm-sound-OSS", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.233855 open("/lib/vm-sound-OSS", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.233884 open("/usr/lib/vm-sound-OSS", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.233914 munmap(0x7fe358525000, 187980) = 0
17:47:03.233950 open("/usr/lib/scratch/plugins//so.vm-sound-OSS", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.233985 stat("/usr/lib/scratch/plugins//so.vm-sound-OSS", 0x7fff765c16f0) = -1 ENOENT (No such file or directory)
17:47:03.234019 open("/usr/lib/squeak/4.4.7-2357//so.vm-sound-OSS", O_RDONLY) = 3
17:47:03.234052 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\22\0\0\0\0\0\0@\0\0\0\0\0\0\0\250Z\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.234089 fstat(3, {st_mode=S_IFREG|0644, st_size=24936, ...}) = 0
17:47:03.234124 mmap(NULL, 2120184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe3541ef000
17:47:03.234154 mprotect(0x7fe3541f5000, 2093056, PROT_NONE) = 0
17:47:03.234184 mmap(0x7fe3543f4000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7fe3543f4000
17:47:03.234216 close(3)                = 0
17:47:03.234249 open("/etc/ld.so.cache", O_RDONLY) = 3
17:47:03.234280 fstat(3, {st_mode=S_IFREG|0644, st_size=187980, ...}) = 0
17:47:03.234312 mmap(NULL, 187980, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fe358525000
17:47:03.234338 close(3)                = 0
17:47:03.234364 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.234399 open("/usr/lib/x86_64-linux-gnu/libasound.so.2", O_RDONLY) = 3
17:47:03.234432 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\16\3\0\0\0\0\0@\0\0\0\0\0\0\0\340#\17\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\37\0\36\0"..., 832) = 832
17:47:03.234483 fstat(3, {st_mode=S_IFREG|0644, st_size=994208, ...}) = 0
17:47:03.234522 mmap(NULL, 3089512, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fe353efc000
17:47:03.234552 mprotect(0x7fe353fe7000, 2097152, PROT_NONE) = 0
17:47:03.234582 mmap(0x7fe3541e7000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xeb000) = 0x7fe3541e7000
17:47:03.234619 close(3)                = 0
17:47:03.235173 munmap(0x7fe358525000, 187980) = 0
17:47:03.235221 lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
17:47:03.235259 lstat("/usr/lib", {st_mode=S_IFDIR|0755, st_size=172032, ...}) = 0
17:47:03.235293 lstat("/usr/lib/squeak", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
17:47:03.235328 lstat("/usr/lib/squeak/4.4.7-2357", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
17:47:03.235363 lstat("/usr/lib/squeak/4.4.7-2357/squeakvm", {st_mode=S_IFREG|0755, st_size=623752, ...}) = 0
17:47:03.235402 rt_sigprocmask(SIG_BLOCK, [], [], 8) = 0
17:47:03.235434 rt_sigaction(SIGALRM, {0x42f5a0, [], SA_RESTORER|SA_RESTART, 0x7fe357239480}, NULL, 8) = 0
17:47:03.235467 setitimer(ITIMER_REAL, {it_interval={0, 20000}, it_value={0, 20000}}, NULL) = 0
17:47:03.235503 rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7fe357239480}, {SIG_DFL, [], 0}, 8) = 0
17:47:03.235540 rt_sigaction(SIGIO, {0x416510, [IO], SA_RESTORER|SA_RESTART, 0x7fe357239480}, {SIG_DFL, [], 0}, 8) = 0
17:47:03.235584 open("/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3
17:47:03.235617 fstat(3, {st_mode=S_IFREG|0644, st_size=26066, ...}) = 0
17:47:03.235650 mmap(NULL, 26066, PROT_READ, MAP_SHARED, 3, 0) = 0x7fe35854c000
17:47:03.235677 close(3)                = 0
17:47:03.235704 futex(0x7fe357585f80, FUTEX_WAKE_PRIVATE, 2147483647) = 0
17:47:03.235750 stat("/usr/share/scratch/Scratch.image", {st_mode=S_IFREG|0644, st_size=5670220, ...}) = 0
17:47:03.235796 open("/usr/share/scratch/Scratch.image", O_RDONLY) = 3
17:47:03.235830 stat("/usr/share/scratch/Scratch.image", {st_mode=S_IFREG|0644, st_size=5670220, ...}) = 0
17:47:03.235869 lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
17:47:03.235904 lstat("/usr/share", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
17:47:03.235938 lstat("/usr/share/scratch", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
17:47:03.235972 lstat("/usr/share/scratch/Scratch.image", {st_mode=S_IFREG|0644, st_size=5670220, ...}) = 0
17:47:03.236013 fstat(3, {st_mode=S_IFREG|0644, st_size=5670220, ...}) = 0
17:47:03.236047 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.236074 lseek(3, 0, SEEK_SET)   = 0
17:47:03.236104 read(3, "f\31\0\0@\0\0\0\f\205V\0\0\0\0\25\30\37\f\25\255\370\0\0\377\2\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096
17:47:03.236156 mmap(NULL, 1073741824, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe313efc000
17:47:03.236190 lseek(3, 4096, SEEK_SET) = 4096
17:47:03.236219 read(3, "kPut:\0\0\0\17\201\366\v\324\17\0\25\304\270L\25\23)Z\21SourceFiles\0\23+2\30timeStamp\0\0\0\17*p\nfileIn\0\0"..., 5664768) = 5664768
17:47:03.239116 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 1356
17:47:03.242091 time(NULL)              = 1333640823
17:47:03.242154 close(3)                = 0
17:47:03.242189 munmap(0x7fe35854b000, 4096) = 0
17:47:03.242277 socket(PF_FILE, SOCK_STREAM|SOCK_CLOEXEC, 0) = 3
17:47:03.242327 connect(3, {sa_family=AF_FILE, path=@"/tmp/.X11-unix/X0"}, 20) = 0
17:47:03.242475 getpeername(3, {sa_family=AF_FILE, path=@"/tmp/.X11-unix/X0"}, [20]) = 0
17:47:03.242514 uname({sys="Linux", node="danu", ...}) = 0
17:47:03.242561 access("/var/run/gdm3/auth-for-inniyah-m377Oo/database", R_OK) = 0
17:47:03.242597 open("/var/run/gdm3/auth-for-inniyah-m377Oo/database", O_RDONLY) = 4
17:47:03.242631 fstat(4, {st_mode=S_IFREG|0600, st_size=49, ...}) = 0
17:47:03.242681 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.242713 read(4, "\1\0\0\4danu\0\0010\0\22MIT-MAGIC-COOKIE-1\0\20i\306M\214\3353\202\227,\320\224/\n&\177\21", 4096) = 49
17:47:03.242753 read(4, "", 4096)       = 0
17:47:03.242778 close(4)                = 0
17:47:03.242802 munmap(0x7fe35854b000, 4096) = 0
17:47:03.242831 getsockname(3, {sa_family=AF_FILE, NULL}, [2]) = 0
17:47:03.242869 fcntl(3, F_GETFL)       = 0x2 (flags O_RDWR)
17:47:03.242897 fcntl(3, F_SETFL, O_RDWR|O_NONBLOCK) = 0
17:47:03.242921 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
17:47:03.242952 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.242990 writev(3, [{"l\0\v\0\0\0\22\0\20\0\0\0", 12}, {"", 0}, {"MIT-MAGIC-COOKIE-1", 18}, {"\0\0", 2}, {"i\306M\214\3353\202\227,\320\224/\n&\177\21", 16}, {"", 0}], 6) = 48
17:47:03.243094 read(3, "\1\0\v\0\0\0\343\1", 8) = 8
17:47:03.243137 read(3, "8`\243\0\0\0\300\3\377\377\37\0\0\1\0\0\24\0\377\377\1\7\0\0  \10\377\0\0\0\0The X.Org Foundation\1\1 \0\0\0\0\0\4\10 \0"..., 1932) = 1932
17:47:03.243200 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.243231 writev(3, [{"b\0\5\0\f\0\0\0BIG-REQUESTS", 20}], 1) = 20
17:47:03.243295 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.243326 read(3, "\1\0\1\0\0\0\0\0\1\217\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.243364 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.243394 writev(3, [{"\217\0\1\0", 4}], 1) = 4
17:47:03.243452 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.243482 read(3, "\1\0\2\0\0\0\0\0\377\377?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.243524 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.243559 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.243588 writev(3, [{"7\0\5\0\0\0\300\3\16\1\0\0\10\0\0\0\377\377\377\0\24\0\6\0\16\1\0\0\27\0\0\0\37\0\0\0\0\0\0\0\0\341\365\5", 44}, {NULL, 0}, {"", 0}], 3) = 44
17:47:03.243670 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.243701 read(3, "\1\10\4\0&\0\0\0\37\0\0\0\0\0\0\0\226\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0*customization:\t-color\nXft.antia"..., 4096) = 184
17:47:03.243739 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.243776 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.243806 writev(3, [{"b\0\5\0\t\0\300\3", 8}, {"XKEYBOARD", 9}, {"\0\0\0", 3}], 3) = 20
17:47:03.243874 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.244546 read(3, "\1\0\5\0\0\0\0\0\1\221a\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.244589 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.244624 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.244657 writev(3, [{"\221\0\2\0\1\0\0\0", 8}, {NULL, 0}, {"", 0}], 3) = 8
17:47:03.244695 poll([{fd=3, events=POLLIN}], 1, -1) = ? ERESTART_RESTARTBLOCK (To be restarted)
17:47:03.255564 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.255615 rt_sigreturn(0xe)       = -1 EINTR (Interrupted system call)
17:47:03.255664 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.264594 read(3, "\1\1\6\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.264640 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.264693 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.264732 writev(3, [{"\1\30\v\0\1\0\300\3\16\1\0\0\0\0\0\0\0\4\377\2\0\0\1\0!\0\0\0H\10\0\0\377\377\377\0\0\0\0\0\20\0\"\0\20\0\4\0\10\0\0\0CARDINAL", 60}, {NULL, 0}, {"", 0}], 3) = 60
17:47:03.264792 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.264931 read(3, "\1\0\10\0\0\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.264996 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.265035 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.265072 writev(3, [{"\20\0\5\0\v\0\300\3_NET_WM_PID\2", 20}, {NULL, 0}, {"", 0}], 3) = 20
17:47:03.265121 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.265167 read(3, "\1\0\t\0\0\0\0\0\34\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.265213 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.265259 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.265294 writev(3, [{"\22\0\7\0\1\0\300\3\34\1\0\0\6\0\0\0 ID\2\1\0\0\0/2\0\0\1\30\f\0\2\0\300\3\1\0\300\3\0\0\0\0\0\4\377\2\0\0\1\0!\0\0\0J\10\0\0\377\377\377\0"..., 460}, {NULL, 0}, {"", 0}], 3) = 460
17:47:03.265339 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.265529 read(3, "\1\0\22\0\0\0\0\0\20\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.265575 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.265612 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.265649 writev(3, [{"\20\0\6\0\20\0\300\3WM_DELETE_WINDOW", 24}, {NULL, 0}, {"", 0}], 3) = 24
17:47:03.265688 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.265730 read(3, "\1\0\23\0\0\0\0\0\16\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.265770 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.265811 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.265844 writev(3, [{"\22\0\7\0\1\0\300\3\20\1\0\0\4\0\0\0 _WI\1\0\0\0\16\1\0\0007\30\7\0\3\0\300\3\2\0\300\3\10\200\10\0\0\0\0\0\1\0\0\0\0\0\0\0b\10\4\0\7\0\377\0", 64}, {"MIT-SHM", 7}, {"\0", 1}], 3) = 72
17:47:03.265891 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.265996 read(3, "\1\0\26\0\0\0\0\0\1\214M\224\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.266039 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.266076 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.266108 writev(3, [{"b\0\10\0\27\0\300\3", 8}, {"Generic Event Extension", 23}, {"\0", 1}], 3) = 32
17:47:03.266147 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.266188 read(3, "\1\0\27\0\0\0\0\0\1\212\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.266229 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.266262 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.266295 writev(3, [{"\212\0\2\0\1\0\0\0", 8}, {NULL, 0}, {"", 0}], 3) = 8
17:47:03.266335 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.266376 read(3, "\1\0\30\0\0\0\0\0\1\0\0\0\0\0\0\0``\214\4\0\0\0\0*6L\0\0\0\0\0", 4096) = 32
17:47:03.266415 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.266448 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.266479 writev(3, [{"\20\0\5\0\t\0\0\0CLIPBOARD_WI\20\0\5\0\v\0\0\0CUT_BUFFER0\3\20\0\4\0\7\0\0\0TARGETS\0\20\0\4\0\10\0\377\0"..., 196}, {NULL, 0}, {"", 0}], 3) = 196
17:47:03.266520 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.266569 read(3, "\1\0\31\0\0\0\0\0\255\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\32\0\0\0\0\0\t\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 320
17:47:03.266619 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.266654 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.266685 writev(3, [{"\20\0\5\0\t\0\0\0XdndAware_WI", 20}, {NULL, 0}, {"", 0}], 3) = 20
17:47:03.266750 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.266783 read(3, "\1\0#\0\0\0\0\0\231\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.266829 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.266861 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.266891 writev(3, [{"\20\0\5\0\t\0\0\0XdndEnter_WI", 20}, {NULL, 0}, {"", 0}], 3) = 20
17:47:03.266956 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.266989 read(3, "\1\0$\0\0\0\0\0G\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.267025 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.267054 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.267084 writev(3, [{"\20\0\5\0\t\0\0\0XdndLeave_WI", 20}, {NULL, 0}, {"", 0}], 3) = 20
17:47:03.267148 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.267181 read(3, "\1\0%\0\0\0\0\0H\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.267217 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.267247 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.267281 writev(3, [{"\20\0\5\0\f\0\0\0XdndPosition", 20}, {NULL, 0}, {"", 0}], 3) = 20
17:47:03.267348 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.267382 read(3, "\1\0&\0\0\0\0\0I\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.267419 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.267451 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.267483 writev(3, [{"\20\0\4\0\10\0\0\0XdndDrop", 16}, {NULL, 0}, {"", 0}], 3) = 16
17:47:03.267548 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.267582 read(3, "\1\0'\0\0\0\0\0L\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.267619 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.267651 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.267682 writev(3, [{"\20\0\5\0\f\0\0\0XdndFinished", 20}, {NULL, 0}, {"", 0}], 3) = 20
17:47:03.267747 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.267781 read(3, "\1\0(\0\0\0\0\0K\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.267818 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.267850 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.267881 writev(3, [{"\20\0\5\0\n\0\0\0XdndStatused", 20}, {NULL, 0}, {"", 0}], 3) = 20
17:47:03.267947 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.267981 read(3, "\1\0)\0\0\0\0\0J\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.268018 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.268050 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.268083 writev(3, [{"\20\0\6\0\16\0\0\0XdndActionCopy\5\0", 24}, {NULL, 0}, {"", 0}], 3) = 24
17:47:03.268170 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.268204 read(3, "\1\0*\0\0\0\0\0\313\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.268244 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.268275 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.268306 writev(3, [{"\20\0\6\0\16\0\0\0XdndActionMove\5\0", 24}, {NULL, 0}, {"", 0}], 3) = 24
17:47:03.268371 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.268404 read(3, "\1\0+\0\0\0\0\0\314\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.268440 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.268470 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.268500 writev(3, [{"\20\0\6\0\16\0\0\0XdndActionLink\5\0", 24}, {NULL, 0}, {"", 0}], 3) = 24
17:47:03.268564 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.268609 read(3, "\1\0,\0\0\0\0\0\320\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.268647 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.268678 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.268708 writev(3, [{"\20\0\6\0\r\0\0\0XdndActionAskk\5\0", 24}, {NULL, 0}, {"", 0}], 3) = 24
17:47:03.268773 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.268806 read(3, "\1\0-\0\0\0\0\0\316\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.268842 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.268873 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.268904 writev(3, [{"\20\0\7\0\21\0\0\0XdndActionPrivate\0\0\0", 28}, {NULL, 0}, {"", 0}], 3) = 28
17:47:03.268969 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.269002 read(3, "\1\0.\0\0\0\0\0\315\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.269038 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.269069 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.269099 writev(3, [{"\20\0\5\0\f\0\0\0XdndTypeList", 20}, {NULL, 0}, {"", 0}], 3) = 20
17:47:03.269162 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.269201 read(3, "\1\0/\0\0\0\0\0\312\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.269238 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.269269 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.269300 writev(3, [{"\20\0\6\0\r\0\0\0text/uri-listvat", 24}, {NULL, 0}, {"", 0}], 3) = 24
17:47:03.269364 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.269397 read(3, "\1\0000\0\0\0\0\0\303\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.269433 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.269463 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.269494 writev(3, [{"\20\0\7\0\23\0\0\0XdndSqueakSelection\0", 28}, {NULL, 0}, {"", 0}], 3) = 28
17:47:03.269558 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.269591 read(3, "\1\0001\0\0\0\0\0\335\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.269711 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.269785 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.269820 writev(3, [{"\22\0\7\0\1\0\300\3\231\1\0\0\4\0\0\0 kSe\1\0\0\0\3\0\0\0\10U\2\0\1\0\300\3\10R\2\0\2\0\300\3", 44}, {NULL, 0}, {"", 0}], 3) = 44
17:47:03.269913 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.269996 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.270147 open("/etc/ld.so.cache", O_RDONLY) = 4
17:47:03.270232 fstat(4, {st_mode=S_IFREG|0644, st_size=187980, ...}) = 0
17:47:03.270273 mmap(NULL, 187980, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7fe35837b000
17:47:03.270307 close(4)                = 0
17:47:03.270336 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.270376 open("/usr/lib/libXcursor.so.1", O_RDONLY) = 4
17:47:03.270411 read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240+\0\0\0\0\0\0@\0\0\0\0\0\0\0\30\226\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\33\0\32\0"..., 832) = 832
17:47:03.270451 fstat(4, {st_mode=S_IFREG|0644, st_size=40152, ...}) = 0
17:47:03.270490 mmap(NULL, 2135368, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fe313cf2000
17:47:03.270527 mprotect(0x7fe313cfb000, 2097152, PROT_NONE) = 0
17:47:03.270560 mmap(0x7fe313efb000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x9000) = 0x7fe313efb000
17:47:03.270602 close(4)                = 0
17:47:03.270668 munmap(0x7fe35837b000, 187980) = 0
17:47:03.270726 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.270761 writev(3, [{"5\1\4\0\4\0\300\3\16\1\0\0\20\0\20\0bk\4\0\6\0\0\0", 24}, {"RENDER", 6}, {"\0\0", 2}], 3) = 32
17:47:03.270812 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.271184 read(3, "\25\0004\0\1\0\300\3\1\0\300\3\351\353\366\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.271227 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.271447 read(3, "\26\0004\0\1\0\300\3\1\0\300\3\0\0\0\0\n\0\36\0\0\4\314\2\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.271485 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.273716 read(3, "\34\0004\0\16\1\0\0r\1\0\0\247F\215\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0004\0\16\1\0\0s\1\0\0\247F\215\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 64
17:47:03.273763 poll([{fd=3, events=POLLIN}], 1, -1) = ? ERESTART_RESTARTBLOCK (To be restarted)
17:47:03.275520 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.275544 rt_sigreturn(0xe)       = -1 EINTR (Interrupted system call)
17:47:03.275576 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.276815 read(3, "\1\0006\0\0\0\0\0\1\225\0\240\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.276876 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.276930 brk(0xce8000)           = 0xce8000
17:47:03.276978 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.277013 writev(3, [{"\225\0\3\0\0\0\0\0\v\0\0\0\225\1\1\0", 16}, {NULL, 0}, {"", 0}], 3) = 16
17:47:03.277099 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.277133 read(3, "\1\0007\0\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0008\0e\1\0\0\34\0\0\0\1\0\0\0\7\0\0\0H\0\0\0\1\0\0\0\0\0\0\0"..., 4096) = 1492
17:47:03.277176 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.277295 open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 4
17:47:03.277337 fstat(4, {st_mode=S_IFREG|0644, st_size=82003, ...}) = 0
17:47:03.277372 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.277402 read(4, "#\n#\tThis file contains alias name of locale.\n#\tEach alias name i"..., 4096) = 4096
17:47:03.277454 read(4, "r_FR.ISO-8859-1\t\t\t\tbr_FR.ISO8859-1\nbr_FR.iso885914\t\t\t\tbr_FR.ISO8"..., 4096) = 4096
17:47:03.277499 read(4, "1\nde_DE.ISO-8859-1\t\t\t\tde_DE.ISO8859-1\nde_DE.ISO_8859-1\t\t\t\tde_DE."..., 4096) = 4096
17:47:03.277543 read(4, "en_ZW.iso88591\t\t\t\t\ten_ZW.ISO8859-1\nen_ZW.ISO-8859-1\t\t\t\ten_ZW.ISO"..., 4096) = 4096
17:47:03.277587 read(4, "fa_IR.isiri3342\t\t\t\tfa_IR.ISIRI-3342\nfa_IR.utf8\t\t\t\t\tfa_IR.UTF-8\nf"..., 4096) = 4096
17:47:03.277631 read(4, "_IL.ISO8859-8\nhe_IL.ISO-8859-8\t\t\t\the_IL.ISO8859-8\nhe_IL.cp1255\t\t"..., 4096) = 4096
17:47:03.277676 read(4, "TF-8\nky_KG\t\t\t\t\t\t\tky_KG.UTF-8\nky_KG.utf8\t\t\t\t\t\tky_KG.UTF-8\nky_KG.U"..., 4096) = 4096
17:47:03.277721 read(4, "\t\t\toc_FR.ISO8859-15\noc_FR@euro\t\t\t\t\toc_FR.ISO8859-15\nor\t\t\t\t\t\tor_I"..., 4096) = 4096
17:47:03.277765 read(4, "TF-8@latin\nsr_RS\t\t\t\t\t\tsr_RS.UTF-8\nsr@latin\t\t\t\t\tsr_RS.UTF-8@latin"..., 4096) = 4096
17:47:03.277810 read(4, "\t\t\tzh_TW.big5\nzh_CN.euc\t\t\t\t\tzh_CN.eucCN\nzh_CN.utf8\t\t\t\t\tzh_CN.UTF"..., 4096) = 4096
17:47:03.277862 read(4, "859-1\naf_ZA.iso88591:\t\t\t\t\taf_ZA.ISO8859-1\naf_ZA.ISO-8859-1:\t\t\t\ta"..., 4096) = 4096
17:47:03.277912 read(4, "ISO8859-2\nca:\t\t\t\t\t\tca_ES.ISO8859-1\nca_AD:\t\t\t\t\t\tca_AD.ISO8859-1\nc"..., 4096) = 4096
17:47:03.277959 read(4, "\tde_DE.UTF-8\nde_DE.utf8:\t\t\t\t\tde_DE.UTF-8\nde_LU:\t\t\t\t\t\tde_LU.ISO88"..., 4096) = 4096
17:47:03.278005 read(4, "\t\t\teo_XX.ISO8859-3\nes:\t\t\t\t\t\tes_ES.ISO8859-1\nes.UTF-8:\t\t\t\t\tes_ES."..., 4096) = 4096
17:47:03.278051 read(4, "8859-15\nfi.ISO8859-15:\t\t\t\t\tfi_FI.ISO8859-15\nfi_FI:\t\t\t\t\t\tfi_FI.IS"..., 4096) = 4096
17:47:03.278098 read(4, "\t\t\the_IL.ISO8859-8\nhe_IL.iso88598:\t\t\t\t\the_IL.ISO8859-8\nhe_IL.ISO"..., 4096) = 4096
17:47:03.278145 read(4, "1\nkw_GB.iso885914:\t\t\t\tkw_GB.ISO8859-14\nkw_GB.ISO-8859-14:\t\t\t\tkw_"..., 4096) = 4096
17:47:03.278205 read(4, "\t\t\t\tny_NO.ISO8859-1\nny_NO.iso885915:\t\t\t\tny_NO.ISO8859-15\nno@nyno"..., 4096) = 4096
17:47:03.278254 read(4, "a&Montenegro (now separate RS and ME).\n# Some of these lines sho"..., 4096) = 4096
17:47:03.278302 read(4, "@euro:\t\t\t\twa_BE.ISO8859-15\nwa_BE@euro:\t\t\t\t\twa_BE.ISO8859-15\nxh:\t"..., 4096) = 4096
17:47:03.278350 read(4, "9-1:\t\t\t\t\ten_US.ISO8859-1\n\njapan:\t\t\t\t\t\tja_JP.eucJP\n\n\n\nJapanese-EU"..., 4096) = 83
17:47:03.278383 read(4, "", 4096)       = 0
17:47:03.278411 close(4)                = 0
17:47:03.278437 munmap(0x7fe35854b000, 4096) = 0
17:47:03.278473 open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 4
17:47:03.278507 fstat(4, {st_mode=S_IFREG|0644, st_size=82003, ...}) = 0
17:47:03.278542 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.278571 read(4, "#\n#\tThis file contains alias name of locale.\n#\tEach alias name i"..., 4096) = 4096
17:47:03.278621 read(4, "r_FR.ISO-8859-1\t\t\t\tbr_FR.ISO8859-1\nbr_FR.iso885914\t\t\t\tbr_FR.ISO8"..., 4096) = 4096
17:47:03.278666 read(4, "1\nde_DE.ISO-8859-1\t\t\t\tde_DE.ISO8859-1\nde_DE.ISO_8859-1\t\t\t\tde_DE."..., 4096) = 4096
17:47:03.278711 read(4, "en_ZW.iso88591\t\t\t\t\ten_ZW.ISO8859-1\nen_ZW.ISO-8859-1\t\t\t\ten_ZW.ISO"..., 4096) = 4096
17:47:03.278756 read(4, "fa_IR.isiri3342\t\t\t\tfa_IR.ISIRI-3342\nfa_IR.utf8\t\t\t\t\tfa_IR.UTF-8\nf"..., 4096) = 4096
17:47:03.278804 read(4, "_IL.ISO8859-8\nhe_IL.ISO-8859-8\t\t\t\the_IL.ISO8859-8\nhe_IL.cp1255\t\t"..., 4096) = 4096
17:47:03.278850 read(4, "TF-8\nky_KG\t\t\t\t\t\t\tky_KG.UTF-8\nky_KG.utf8\t\t\t\t\t\tky_KG.UTF-8\nky_KG.U"..., 4096) = 4096
17:47:03.278896 read(4, "\t\t\toc_FR.ISO8859-15\noc_FR@euro\t\t\t\t\toc_FR.ISO8859-15\nor\t\t\t\t\t\tor_I"..., 4096) = 4096
17:47:03.278941 read(4, "TF-8@latin\nsr_RS\t\t\t\t\t\tsr_RS.UTF-8\nsr@latin\t\t\t\t\tsr_RS.UTF-8@latin"..., 4096) = 4096
17:47:03.278986 read(4, "\t\t\tzh_TW.big5\nzh_CN.euc\t\t\t\t\tzh_CN.eucCN\nzh_CN.utf8\t\t\t\t\tzh_CN.UTF"..., 4096) = 4096
17:47:03.279032 read(4, "859-1\naf_ZA.iso88591:\t\t\t\t\taf_ZA.ISO8859-1\naf_ZA.ISO-8859-1:\t\t\t\ta"..., 4096) = 4096
17:47:03.279079 read(4, "ISO8859-2\nca:\t\t\t\t\t\tca_ES.ISO8859-1\nca_AD:\t\t\t\t\t\tca_AD.ISO8859-1\nc"..., 4096) = 4096
17:47:03.279125 read(4, "\tde_DE.UTF-8\nde_DE.utf8:\t\t\t\t\tde_DE.UTF-8\nde_LU:\t\t\t\t\t\tde_LU.ISO88"..., 4096) = 4096
17:47:03.279172 read(4, "\t\t\teo_XX.ISO8859-3\nes:\t\t\t\t\t\tes_ES.ISO8859-1\nes.UTF-8:\t\t\t\t\tes_ES."..., 4096) = 4096
17:47:03.279210 close(4)                = 0
17:47:03.279236 munmap(0x7fe35854b000, 4096) = 0
17:47:03.279274 open("/usr/share/X11/locale/locale.dir", O_RDONLY) = 4
17:47:03.279309 fstat(4, {st_mode=S_IFREG|0644, st_size=39853, ...}) = 0
17:47:03.279344 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.279373 read(4, "#\n#\tThis file contains locale database file names\n#\tThe first wo"..., 4096) = 4096
17:47:03.279421 read(4, "LE\t\t\tes_DO.ISO8859-1\niso8859-1/XLC_LOCALE\t\t\tes_EC.ISO8859-1\niso8"..., 4096) = 4096
17:47:03.279466 read(4, " for it, and the GNU C Library\n# doesn't support it.\n# iso8859-1"..., 4096) = 4096
17:47:03.279511 read(4, "ALE\t\t\tbr_FR.UTF-8\nen_US.UTF-8/XLC_LOCALE            byn_ER.UTF-8"..., 4096) = 4096
17:47:03.279554 read(4, "F-8/XLC_LOCALE\t\t\tml_IN.UTF-8\nen_US.UTF-8/XLC_LOCALE            m"..., 4096) = 4096
17:47:03.279598 read(4, ".ISO8859-6\niso8859-6/XLC_LOCALE:\t\t\tar_MA.ISO8859-6\niso8859-6/XLC"..., 4096) = 4096
17:47:03.279643 read(4, "ISO8859-4\niso8859-13/XLC_LOCALE: \t\t\tet_EE.ISO8859-13\niso8859-15/"..., 4096) = 4096
17:47:03.279688 read(4, "OCALE:           rw_RW.ISO8859-1\niso8859-2/XLC_LOCALE: \t\t\tsh_YU."..., 4096) = 4096
17:47:03.279734 read(4, "/XLC_LOCALE:\t\t\tde_DE.UTF-8\nen_US.UTF-8/XLC_LOCALE:\t\t\tde_LI.UTF-8"..., 4096) = 4096
17:47:03.279774 close(4)                = 0
17:47:03.279801 munmap(0x7fe35854b000, 4096) = 0
17:47:03.279833 access("/usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE", R_OK) = 0
17:47:03.279880 open("/usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE", O_RDONLY) = 4
17:47:03.279916 fstat(4, {st_mode=S_IFREG|0644, st_size=4206, ...}) = 0
17:47:03.279952 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.279981 read(4, "#  XLocale Database Sample for en_US.UTF-8\n# \n\n# \n# \tXLC_FONTSET"..., 4096) = 4096
17:47:03.280145 read(4, "ct_encoding\tJISX0201.1976-0:GR\n}\n \n#\tcs24 class\ncs16\t{\n\tside\t\tno"..., 4096) = 110
17:47:03.280189 read(4, "", 4096)       = 0
17:47:03.280218 close(4)                = 0
17:47:03.280244 munmap(0x7fe35854b000, 4096) = 0
17:47:03.280408 uname({sys="Linux", node="danu", ...}) = 0
17:47:03.280457 open("/home/inniyah/.Xdefaults-danu", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.280542 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.280586 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.280622 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.280659 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.280704 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.280741 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.280770 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.280808 close(4)                = 0
17:47:03.280835 munmap(0x7fe35854b000, 4096) = 0
17:47:03.280868 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.280907 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.280944 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.280978 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.281015 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.281048 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.281082 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.281111 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.281151 read(4, "", 4096)       = 0
17:47:03.281178 close(4)                = 0
17:47:03.281205 munmap(0x7fe35854b000, 4096) = 0
17:47:03.281237 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.281274 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283092 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283165 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283199 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283235 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.283272 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.283308 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.283338 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.283374 close(4)                = 0
17:47:03.283401 munmap(0x7fe35854b000, 4096) = 0
17:47:03.283434 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283471 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283507 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283557 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283600 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.283633 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.283669 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.283698 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.283738 read(4, "", 4096)       = 0
17:47:03.283765 close(4)                = 0
17:47:03.283791 munmap(0x7fe35854b000, 4096) = 0
17:47:03.283823 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283860 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.283920 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.283957 writev(3, [{"7\0\4\0\5\0\300\3\4\0\300\3\0\0\0\0H\1\26\0\4\0\300\3\5\0\300\3\20\0\20\0\0\0\0\0\0\1\2\0\0\0\300\3\2\0\0\0\6\0RG\16\0S\0\36\0\4\0>\0\377\0"..., 640}, {NULL, 0}, {"", 0}], 3) = 640
17:47:03.284149 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.284185 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.284255 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.284289 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.284333 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.284365 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.285304 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.285356 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.285924 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.285959 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.286020 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.286063 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.286097 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.286133 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.286171 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.286206 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.286239 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.286275 close(4)                = 0
17:47:03.286301 munmap(0x7fe35854b000, 4096) = 0
17:47:03.286337 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.286374 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.286410 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.286447 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.286485 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.286517 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.286551 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.286579 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.286618 read(4, "", 4096)       = 0
17:47:03.286644 close(4)                = 0
17:47:03.286670 munmap(0x7fe35854b000, 4096) = 0
17:47:03.286700 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.286736 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.288397 open("/etc/ld.so.cache", O_RDONLY) = 4
17:47:03.288482 fstat(4, {st_mode=S_IFREG|0644, st_size=187980, ...}) = 0
17:47:03.288528 mmap(NULL, 187980, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7fe35837b000
17:47:03.288568 close(4)                = 0
17:47:03.288603 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.288660 open("/lib/x86_64-linux-gnu/BitBltPlugin", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.288701 open("/usr/lib/x86_64-linux-gnu/BitBltPlugin", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.288740 open("/lib/BitBltPlugin", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.288770 open("/usr/lib/BitBltPlugin", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.288801 munmap(0x7fe35837b000, 187980) = 0
17:47:03.288844 open("/usr/lib/scratch/plugins//so.BitBltPlugin", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.288894 stat("/usr/lib/scratch/plugins//so.BitBltPlugin", 0x7fff765c24f0) = -1 ENOENT (No such file or directory)
17:47:03.288967 open("/usr/lib/squeak/4.4.7-2357//so.BitBltPlugin", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.289032 stat("/usr/lib/squeak/4.4.7-2357//so.BitBltPlugin", 0x7fff765c24f0) = -1 ENOENT (No such file or directory)
17:47:03.289113 open("/etc/ld.so.cache", O_RDONLY) = 4
17:47:03.289169 fstat(4, {st_mode=S_IFREG|0644, st_size=187980, ...}) = 0
17:47:03.289218 mmap(NULL, 187980, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7fe35837b000
17:47:03.289260 close(4)                = 0
17:47:03.289301 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
17:47:03.289360 open("/lib/x86_64-linux-gnu/libBitBltPlugin.so", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.289405 open("/usr/lib/x86_64-linux-gnu/libBitBltPlugin.so", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.289467 open("/lib/libBitBltPlugin.so", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.289517 open("/usr/lib/libBitBltPlugin.so", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.289576 munmap(0x7fe35837b000, 187980) = 0
17:47:03.290423 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLIN|POLLOUT}])
17:47:03.290512 read(3, "\226\0Q\0\1\0\300\3\1\0\300\3\0\0\0\0006\0000\0\0\4\314\2\0\0\0\0\0\0\0\0", 4096) = 32
17:47:03.290593 writev(3, [{"5\1\4\0\16\0\300\3\16\1\0\0\20\0\20\0007\1\4\0\17\0\300\3\16\0\300\3\0\0\0\0H\1\26\0\16\0\300\3\17\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.290696 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.290781 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.290857 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.291010 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.291116 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.291207 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.291304 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.291408 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.291480 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.291559 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.291653 close(4)                = 0
17:47:03.291726 munmap(0x7fe35854b000, 4096) = 0
17:47:03.291813 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.291930 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.292030 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.292163 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.292302 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.292398 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.292487 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.292564 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.292661 read(4, "", 4096)       = 0
17:47:03.292739 close(4)                = 0
17:47:03.292808 munmap(0x7fe35854b000, 4096) = 0
17:47:03.292896 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.292998 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.295499 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.295530 rt_sigreturn(0xe)       = 1587413277
17:47:03.295619 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLIN|POLLOUT}])
17:47:03.295657 read(3, "\23\0Q\0\1\0\300\3\1\0\300\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\17\0Q\0\2\0\300\3\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 192
17:47:03.295702 writev(3, [{"5\1\4\0\23\0\300\3\16\1\0\0\20\0\20\0007\1\4\0\24\0\300\3\23\0\300\3\0\0\0\0H\1\26\0\23\0\300\3\24\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.295749 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.295781 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.295811 writev(3, [{"&\1\2\0\2\0\300\3", 8}, {NULL, 0}, {"", 0}], 3) = 8
17:47:03.295845 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.296195 read(3, "\1\1l\0\0\0\0\0\16\1\0\0\0\0\0\0\237\3\20\2i\3\340\1\20\0\0\0\0\0\0\0", 4096) = 32
17:47:03.296232 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.296265 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.296296 writev(3, [{"*\0\3\0\2\0\300\3\0\0\0\0", 12}, {NULL, 0}, {"", 0}], 3) = 12
17:47:03.296388 read(3, "\n\5m\0\2\0\300\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\2m\0\1\0\300\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 96
17:47:03.296445 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.296482 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.296520 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.296701 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.296736 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.296792 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.296834 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.296869 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.296905 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.296942 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.296977 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.297014 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.297051 close(4)                = 0
17:47:03.297079 munmap(0x7fe35854b000, 4096) = 0
17:47:03.297114 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.297209 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.297294 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.297373 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.297433 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.297477 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.297514 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.297545 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.297586 read(4, "", 4096)       = 0
17:47:03.297615 close(4)                = 0
17:47:03.297640 munmap(0x7fe35854b000, 4096) = 0
17:47:03.297674 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.297709 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.299852 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.299910 writev(3, [{"5\1\4\0\30\0\300\3\16\1\0\0\20\0\20\0007\1\4\0\31\0\300\3\30\0\300\3\0\0\0\0H\1\26\0\30\0\300\3\31\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.301256 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.301292 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.301355 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.301395 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.301428 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.301462 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.301499 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.301532 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.301561 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.301595 close(4)                = 0
17:47:03.301620 munmap(0x7fe35854b000, 4096) = 0
17:47:03.301652 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.301688 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.301722 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.301755 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.301794 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.301826 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.301859 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.301885 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.301922 read(4, "", 4096)       = 0
17:47:03.301947 close(4)                = 0
17:47:03.301971 munmap(0x7fe35854b000, 4096) = 0
17:47:03.302001 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.302035 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.304331 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.304378 writev(3, [{"5\1\4\0\35\0\300\3\16\1\0\0\20\0\20\0007\1\4\0\36\0\300\3\35\0\300\3\0\0\0\0H\1\26\0\35\0\300\3\36\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.304515 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.304546 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.304598 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.304637 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.304675 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.304728 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.304763 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.304797 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.304825 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.304859 close(4)                = 0
17:47:03.304884 munmap(0x7fe35854b000, 4096) = 0
17:47:03.304915 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.304951 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.304985 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.305017 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.305051 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.305081 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.305113 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.305140 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.305176 read(4, "", 4096)       = 0
17:47:03.305201 close(4)                = 0
17:47:03.305224 munmap(0x7fe35854b000, 4096) = 0
17:47:03.305254 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.305288 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.305582 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.305621 writev(3, [{"5\1\4\0\"\0\300\3\16\1\0\0\20\0\20\0007\1\4\0#\0\300\3\"\0\300\3\0\0\0\0H\1\26\0\"\0\300\3#\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.305665 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.305692 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.307814 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.307853 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.307904 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.307943 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.307976 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.308010 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.308044 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.308078 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.308106 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.308149 close(4)                = 0
17:47:03.308174 munmap(0x7fe35854b000, 4096) = 0
17:47:03.308206 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.308242 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.308275 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.308307 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.308341 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.308371 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.308404 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.308430 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.308484 read(4, "", 4096)       = 0
17:47:03.308511 close(4)                = 0
17:47:03.308535 munmap(0x7fe35854b000, 4096) = 0
17:47:03.308565 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.308599 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.311077 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLIN|POLLOUT}])
17:47:03.311130 read(3, "\34\0\224\0\16\1\0\0r\1\0\0\314F\215\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\224\0\16\1\0\0s\1\0\0\314F\215\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 256
17:47:03.311177 writev(3, [{"5\1\4\0'\0\300\3\16\1\0\0\20\0\20\0007\1\4\0(\0\300\3'\0\300\3\0\0\0\0H\1\26\0'\0\300\3(\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.311418 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.311453 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.311482 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.311540 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.311581 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.311614 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.311648 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.311688 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.311724 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.311753 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.311788 close(4)                = 0
17:47:03.311814 munmap(0x7fe35854b000, 4096) = 0
17:47:03.311849 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.311886 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.311920 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.311952 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.311986 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.312017 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.312050 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.312077 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.312114 read(4, "", 4096)       = 0
17:47:03.312149 close(4)                = 0
17:47:03.312174 munmap(0x7fe35854b000, 4096) = 0
17:47:03.312204 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.312239 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.312717 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.312755 writev(3, [{"5\1\4\0,\0\300\3\16\1\0\0\20\0\20\0007\1\4\0-\0\300\3,\0\300\3\0\0\0\0H\1\26\0,\0\300\3-\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.312957 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.312990 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.315512 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.315580 rt_sigreturn(0xe)       = 140613268783088
17:47:03.315812 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.315871 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.315987 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.316104 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.316209 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.316290 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.316371 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.316432 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.316478 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.316554 close(4)                = 0
17:47:03.316599 munmap(0x7fe35854b000, 4096) = 0
17:47:03.316670 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.316742 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.316813 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.316891 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.316954 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.317008 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.317069 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.317121 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.317185 read(4, "", 4096)       = 0
17:47:03.317223 close(4)                = 0
17:47:03.317278 munmap(0x7fe35854b000, 4096) = 0
17:47:03.317348 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.317422 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.320875 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.320916 writev(3, [{"5\1\4\0001\0\300\3\16\1\0\0\20\0\20\0007\1\4\0002\0\300\0031\0\300\3\0\0\0\0H\1\26\0001\0\300\0032\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.320965 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.320994 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.321041 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.321079 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.321112 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.321145 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.321178 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.321211 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.321238 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.321271 close(4)                = 0
17:47:03.321296 munmap(0x7fe35854b000, 4096) = 0
17:47:03.321327 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.321363 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.321396 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.321429 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.321462 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.321493 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.321531 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.321568 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.321605 read(4, "", 4096)       = 0
17:47:03.321631 close(4)                = 0
17:47:03.321654 munmap(0x7fe35854b000, 4096) = 0
17:47:03.321685 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.321719 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.322404 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.322449 writev(3, [{"5\1\4\0006\0\300\3\16\1\0\0\20\0\20\0007\1\4\0007\0\300\0036\0\300\3\0\0\0\0H\1\26\0006\0\300\0037\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.322506 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.322540 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.326260 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.326350 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.326538 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.326599 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.326645 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.326696 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.326748 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.326791 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.326841 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.326896 close(4)                = 0
17:47:03.326931 munmap(0x7fe35854b000, 4096) = 0
17:47:03.326975 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.327026 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.327075 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.327119 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.327165 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.327206 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.327254 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.327292 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.327347 read(4, "", 4096)       = 0
17:47:03.327387 close(4)                = 0
17:47:03.327421 munmap(0x7fe35854b000, 4096) = 0
17:47:03.327464 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.327510 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.330774 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.330872 writev(3, [{"5\1\4\0;\0\300\3\16\1\0\0\20\0\20\0007\1\4\0<\0\300\3;\0\300\3\0\0\0\0H\1\26\0;\0\300\3<\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.330964 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.331036 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.331180 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.331311 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.331399 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.331518 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.331611 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.331697 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.331775 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.331907 close(4)                = 0
17:47:03.331987 munmap(0x7fe35854b000, 4096) = 0
17:47:03.332076 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.332208 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.332322 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.332456 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.332560 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.332654 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.332726 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.332813 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.332856 read(4, "", 4096)       = 0
17:47:03.332882 close(4)                = 0
17:47:03.332906 munmap(0x7fe35854b000, 4096) = 0
17:47:03.332943 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.332982 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.334057 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.334098 writev(3, [{"5\1\4\0@\0\300\3\16\1\0\0\20\0\20\0007\1\4\0A\0\300\3@\0\300\3\0\0\0\0H\1\26\0@\0\300\3A\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.334146 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.334306 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.335494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.335520 rt_sigreturn(0xe)       = 29
17:47:03.336013 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.336047 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.336100 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.336150 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.336185 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.336219 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.336254 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.336287 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.336316 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.336351 close(4)                = 0
17:47:03.336376 munmap(0x7fe35854b000, 4096) = 0
17:47:03.336408 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.336443 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.336477 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.336508 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.336542 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.336572 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.336605 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.336644 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.336682 read(4, "", 4096)       = 0
17:47:03.336707 close(4)                = 0
17:47:03.336731 munmap(0x7fe35854b000, 4096) = 0
17:47:03.336761 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.336795 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.338847 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.338886 writev(3, [{"5\1\4\0E\0\300\3\16\1\0\0\20\0\20\0007\1\4\0F\0\300\3E\0\300\3\0\0\0\0H\1\26\0E\0\300\3F\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.338932 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.338967 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.339028 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.339070 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.339105 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.339140 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.339176 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.339218 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.339248 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.339282 close(4)                = 0
17:47:03.339308 munmap(0x7fe35854b000, 4096) = 0
17:47:03.339340 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.339376 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.339410 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.339442 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.339476 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.339507 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.339540 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.339566 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.339602 read(4, "", 4096)       = 0
17:47:03.339628 close(4)                = 0
17:47:03.339652 munmap(0x7fe35854b000, 4096) = 0
17:47:03.339682 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.339717 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.340711 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.340753 writev(3, [{"5\1\4\0J\0\300\3\16\1\0\0\20\0\20\0007\1\4\0K\0\300\3J\0\300\3\0\0\0\0H\1\26\0J\0\300\3K\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.340797 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.340834 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.342437 read(3, "\3$\374\0\356F\215\10\16\1\0\0\2\0\300\3\0\0\0\0\237\3\20\2i\3\340\1\20\0\1\0", 4096) = 32
17:47:03.342489 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.342520 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.342554 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.342584 writev(3, [{"\221\10\7\0\0\1\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\300\3", 28}, {NULL, 0}, {"", 0}], 3) = 28
17:47:03.342622 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}])
17:47:03.342680 read(3, "\1\3\375\0\237\4\0\0\0\0\10\377\7\0\0\31\31\10\200\1\370\0\0\0\0\0\0\0\0\0\0\10\370\16\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\1\0\0\2\1\0\0\1\1\1\1\0\0\0\0"..., 4096) = 4096
17:47:03.342726 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\1\1\0\251\377\10\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 668) = 668
17:47:03.342766 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.342839 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.342873 writev(3, [{"\221\1\5\0\3\0\1\0\0\0\0\0\0\0\0\0\5\0\5\0\221\1\4\0\3\0\2\0\0\0\0\0\7\0\7\0", 36}, {NULL, 0}, {"", 0}], 3) = 36
17:47:03.342913 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.342950 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.342986 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.343014 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.343048 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.343076 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.343123 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.343152 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.343204 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.343244 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.343277 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.343310 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.343345 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.343379 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.343407 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.343441 close(4)                = 0
17:47:03.343467 munmap(0x7fe35854b000, 4096) = 0
17:47:03.343499 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.343534 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.343568 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.343600 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.343634 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.343665 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.343698 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.343724 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.343761 read(4, "", 4096)       = 0
17:47:03.343786 close(4)                = 0
17:47:03.343812 munmap(0x7fe35854b000, 4096) = 0
17:47:03.343843 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.343877 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.346138 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.346183 writev(3, [{"5\1\4\0O\0\300\3\16\1\0\0\20\0\20\0007\0\4\0P\0\300\3O\0\300\3\0\0\0\0H\1\26\0O\0\300\3P\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.346485 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.346525 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.346585 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.346631 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.346686 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.346730 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.346774 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.346816 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.346852 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.346893 close(4)                = 0
17:47:03.346922 munmap(0x7fe35854b000, 4096) = 0
17:47:03.346960 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.347006 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.347050 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.347097 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.347141 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.347180 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.347223 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.347257 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.347305 read(4, "", 4096)       = 0
17:47:03.347337 close(4)                = 0
17:47:03.347367 munmap(0x7fe35854b000, 4096) = 0
17:47:03.347407 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.347454 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.348592 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.348634 writev(3, [{"5\1\4\0T\0\300\3\16\1\0\0\20\0\20\0007\0\4\0U\0\300\3T\0\300\3\0\0\0\0H\1\26\0T\0\300\3U\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.348680 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.348717 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.350108 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.350144 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.350195 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.350233 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.350267 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.350300 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.350333 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.350367 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.350394 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.350427 close(4)                = 0
17:47:03.350451 munmap(0x7fe35854b000, 4096) = 0
17:47:03.350482 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.350523 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.350558 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.350591 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.350624 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.350655 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.350687 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.350725 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.350762 read(4, "", 4096)       = 0
17:47:03.350788 close(4)                = 0
17:47:03.350811 munmap(0x7fe35854b000, 4096) = 0
17:47:03.350841 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.350876 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.352920 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.352958 writev(3, [{"5\1\4\0Y\0\300\3\16\1\0\0\20\0\20\0007\0\4\0Z\0\300\3Y\0\300\3\0\0\0\0H\1\26\0Y\0\300\3Z\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.353002 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.353031 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.353078 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.353115 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.353148 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.353181 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.353214 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.353247 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.353274 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.353306 close(4)                = 0
17:47:03.353331 munmap(0x7fe35854b000, 4096) = 0
17:47:03.353361 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.353402 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.353436 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.353468 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.353502 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.353532 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.353564 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.353591 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.353627 read(4, "", 4096)       = 0
17:47:03.353652 close(4)                = 0
17:47:03.353675 munmap(0x7fe35854b000, 4096) = 0
17:47:03.353705 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.353740 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.354856 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.354892 writev(3, [{"5\1\4\0^\0\300\3\16\1\0\0\20\0\20\0007\0\4\0_\0\300\3^\0\300\3\0\0\0\0H\1\26\0^\0\300\3_\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.354935 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.354963 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.355493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.355516 rt_sigreturn(0xe)       = 1
17:47:03.356313 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.356349 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.356398 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.356438 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.356482 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.356517 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.356550 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.356584 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.356611 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.356643 close(4)                = 0
17:47:03.356668 munmap(0x7fe35854b000, 4096) = 0
17:47:03.356699 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.356734 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.356768 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.356801 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.356834 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.356865 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.356897 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.356924 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.356960 read(4, "", 4096)       = 0
17:47:03.356985 close(4)                = 0
17:47:03.357009 munmap(0x7fe35854b000, 4096) = 0
17:47:03.357039 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.357073 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.359354 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.359394 writev(3, [{"5\1\4\0c\0\300\3\16\1\0\0\20\0\20\0007\0\4\0d\0\300\3c\0\300\3\0\0\0\0H\1\26\0c\0\300\3d\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.359467 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.359506 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.359563 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.359603 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.359637 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.359677 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.359723 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.359759 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.359787 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.359851 close(4)                = 0
17:47:03.359880 munmap(0x7fe35854b000, 4096) = 0
17:47:03.359913 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.359950 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.359984 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.360016 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.360049 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.360085 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.360119 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.360153 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.360192 read(4, "", 4096)       = 0
17:47:03.360218 close(4)                = 0
17:47:03.360255 munmap(0x7fe35854b000, 4096) = 0
17:47:03.360335 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.360373 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.361434 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.361473 writev(3, [{"5\1\4\0h\0\300\3\16\1\0\0\20\0\20\0007\0\4\0i\0\300\3h\0\300\3\0\0\0\0H\1\26\0h\0\300\3i\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.361519 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.361556 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.362767 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.362802 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.362852 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.362890 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.362923 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.362962 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.362996 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.363029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.363056 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.363094 close(4)                = 0
17:47:03.363119 munmap(0x7fe35854b000, 4096) = 0
17:47:03.363150 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.363185 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.363219 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.363251 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.363285 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.363315 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.363348 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.363374 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.363410 read(4, "", 4096)       = 0
17:47:03.363435 close(4)                = 0
17:47:03.363459 munmap(0x7fe35854b000, 4096) = 0
17:47:03.363489 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.363523 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.365573 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.365613 writev(3, [{"5\1\4\0m\0\300\3\16\1\0\0\20\0\20\0007\0\4\0n\0\300\3m\0\300\3\0\0\0\0H\1\26\0m\0\300\3n\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.365656 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.365685 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.365733 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.365772 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.365808 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.365843 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.365877 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.365910 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.365954 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.365987 close(4)                = 0
17:47:03.366012 munmap(0x7fe35854b000, 4096) = 0
17:47:03.366042 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.366077 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.366111 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.366143 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.366177 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.366207 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.366239 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.366266 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.366302 read(4, "", 4096)       = 0
17:47:03.366328 close(4)                = 0
17:47:03.366352 munmap(0x7fe35854b000, 4096) = 0
17:47:03.366382 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.366416 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.367689 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.367730 writev(3, [{"5\1\4\0r\0\300\3\16\1\0\0\20\0\20\0007\0\4\0s\0\300\3r\0\300\3\0\0\0\0H\1\26\0r\0\300\3s\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.367774 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.367803 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.368795 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.368830 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.368880 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.368920 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.368953 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.368987 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.369024 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.369058 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.369085 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.369118 close(4)                = 0
17:47:03.369143 munmap(0x7fe35854b000, 4096) = 0
17:47:03.369174 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.369210 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.369244 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.369276 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.369310 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.369341 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.369373 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.369400 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.369436 read(4, "", 4096)       = 0
17:47:03.369461 close(4)                = 0
17:47:03.369485 munmap(0x7fe35854b000, 4096) = 0
17:47:03.369515 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.369558 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.371589 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.371627 writev(3, [{"5\1\4\0w\0\300\3\16\1\0\0\20\0\20\0007\0\4\0x\0\300\3w\0\300\3\0\0\0\0H\1\26\0w\0\300\3x\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.371670 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.371698 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.371745 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.371783 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.371815 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.371849 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.371882 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.371915 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.371942 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.371974 close(4)                = 0
17:47:03.371999 munmap(0x7fe35854b000, 4096) = 0
17:47:03.372030 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.372065 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.372099 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.372136 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.372172 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.372203 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.372235 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.372262 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.372299 read(4, "", 4096)       = 0
17:47:03.372324 close(4)                = 0
17:47:03.372348 munmap(0x7fe35854b000, 4096) = 0
17:47:03.372378 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.372413 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.373994 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.374031 writev(3, [{"5\1\4\0|\0\300\3\16\1\0\0\20\0\20\0007\0\4\0}\0\300\3|\0\300\3\0\0\0\0H\1\26\0|\0\300\3}\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.374074 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.374102 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.375449 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.375491 select(4, [3], [], [3], {0, 0}) = ? ERESTARTNOHAND (To be restarted)
17:47:03.375524 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.375542 rt_sigreturn(0xe)       = -1 EINTR (Interrupted system call)
17:47:03.375628 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.375669 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.375703 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.375767 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.375803 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.375837 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.375906 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.375944 close(4)                = 0
17:47:03.375971 munmap(0x7fe35854b000, 4096) = 0
17:47:03.376034 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.376074 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.376108 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.376160 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.376197 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.376227 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.376260 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.376287 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.376326 read(4, "", 4096)       = 0
17:47:03.376355 close(4)                = 0
17:47:03.376380 munmap(0x7fe35854b000, 4096) = 0
17:47:03.376411 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.376447 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.378498 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.378538 writev(3, [{"5\1\4\0\201\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\202\0\300\3\201\0\300\3\0\0\0\0H\1\26\0\201\0\300\3\202\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.378585 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.378621 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.378680 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.378724 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.378759 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.378793 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.378826 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.378860 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.378887 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.378920 close(4)                = 0
17:47:03.378946 munmap(0x7fe35854b000, 4096) = 0
17:47:03.378977 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.379013 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.379046 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.379078 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.379112 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.379142 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.379175 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.379206 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.379244 read(4, "", 4096)       = 0
17:47:03.379269 close(4)                = 0
17:47:03.379293 munmap(0x7fe35854b000, 4096) = 0
17:47:03.379323 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.379358 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.381288 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.381327 writev(3, [{"5\1\4\0\206\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\207\0\300\3\206\0\300\3\0\0\0\0H\1\26\0\206\0\300\3\207\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.381372 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.381402 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.381798 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.381831 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.381879 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.381917 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.381950 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.381983 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.382016 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.382053 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.382081 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.382114 close(4)                = 0
17:47:03.382138 munmap(0x7fe35854b000, 4096) = 0
17:47:03.382169 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.382205 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.382239 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.382271 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.382305 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.382335 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.382368 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.382394 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.382430 read(4, "", 4096)       = 0
17:47:03.382455 close(4)                = 0
17:47:03.382479 munmap(0x7fe35854b000, 4096) = 0
17:47:03.382509 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.382544 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.384576 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.384615 writev(3, [{"5\1\4\0\213\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\214\0\300\3\213\0\300\3\0\0\0\0H\1\26\0\213\0\300\3\214\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.384659 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.384687 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.384734 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.384771 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.384804 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.384837 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.384870 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.384903 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.384933 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.384968 close(4)                = 0
17:47:03.384993 munmap(0x7fe35854b000, 4096) = 0
17:47:03.385024 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.385069 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.385104 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.385137 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.385170 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.385201 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.385234 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.385261 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.385297 read(4, "", 4096)       = 0
17:47:03.385322 close(4)                = 0
17:47:03.385346 munmap(0x7fe35854b000, 4096) = 0
17:47:03.385376 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.385411 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.387556 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.387593 writev(3, [{"5\1\4\0\220\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\221\0\300\3\220\0\300\3\0\0\0\0H\1\26\0\220\0\300\3\221\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.387637 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.387665 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.387838 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.387871 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.387918 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.387955 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.387988 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.388021 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.388054 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.388087 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.388114 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.388161 close(4)                = 0
17:47:03.388187 munmap(0x7fe35854b000, 4096) = 0
17:47:03.388218 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.388254 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.388287 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.388320 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.388353 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.388383 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.388416 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.388442 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.388479 read(4, "", 4096)       = 0
17:47:03.388504 close(4)                = 0
17:47:03.388527 munmap(0x7fe35854b000, 4096) = 0
17:47:03.388557 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.388591 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.390614 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.390664 writev(3, [{"5\1\4\0\225\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\226\0\300\3\225\0\300\3\0\0\0\0H\1\26\0\225\0\300\3\226\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.391319 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.391353 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.391404 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.391444 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.391512 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.391551 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.391585 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.391620 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.391654 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.391691 close(4)                = 0
17:47:03.391716 munmap(0x7fe35854b000, 4096) = 0
17:47:03.391747 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.391824 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.391870 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.391915 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.391960 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.392000 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.392044 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.392080 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.392134 read(4, "", 4096)       = 0
17:47:03.392168 close(4)                = 0
17:47:03.392197 munmap(0x7fe35854b000, 4096) = 0
17:47:03.392234 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.392280 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.394743 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.394784 writev(3, [{"5\1\4\0\232\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\233\0\300\3\232\0\300\3\0\0\0\0H\1\26\0\232\0\300\3\233\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.394922 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.394954 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.395003 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.395042 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.395075 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.395108 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.395141 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.395174 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.395201 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.395234 close(4)                = 0
17:47:03.395259 munmap(0x7fe35854b000, 4096) = 0
17:47:03.395290 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.395325 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.395359 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.395404 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.395444 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.395476 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.395510 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.395526 rt_sigreturn(0xe)       = 0
17:47:03.395551 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.395578 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.395614 read(4, "", 4096)       = 0
17:47:03.395639 close(4)                = 0
17:47:03.395663 munmap(0x7fe35854b000, 4096) = 0
17:47:03.395692 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.395727 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.396027 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.396063 writev(3, [{"5\1\4\0\237\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\240\0\300\3\237\0\300\3\0\0\0\0H\1\26\0\237\0\300\3\240\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.396106 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.396139 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.398151 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.398185 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.398233 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.398271 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.398303 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.398342 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.398375 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.398408 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.398435 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.398467 close(4)                = 0
17:47:03.398492 munmap(0x7fe35854b000, 4096) = 0
17:47:03.398523 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.398558 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.398592 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.398623 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.398657 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.398687 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.398719 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.398745 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.398782 read(4, "", 4096)       = 0
17:47:03.398807 close(4)                = 0
17:47:03.398830 munmap(0x7fe35854b000, 4096) = 0
17:47:03.398860 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.398894 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.400978 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.401015 writev(3, [{"5\1\4\0\244\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\245\0\300\3\244\0\300\3\0\0\0\0H\1\26\0\244\0\300\3\245\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.401067 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.401096 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.401143 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.401182 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.401219 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.401253 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.401286 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.401319 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.401347 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.401380 close(4)                = 0
17:47:03.401405 munmap(0x7fe35854b000, 4096) = 0
17:47:03.401436 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.401472 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.401506 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.401539 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.401572 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.401603 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.401636 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.401662 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.401699 read(4, "", 4096)       = 0
17:47:03.401724 close(4)                = 0
17:47:03.401748 munmap(0x7fe35854b000, 4096) = 0
17:47:03.401778 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.401812 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.402260 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.402297 writev(3, [{"5\1\4\0\251\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\252\0\300\3\251\0\300\3\0\0\0\0H\1\26\0\251\0\300\3\252\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.402340 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.402369 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.404251 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.404288 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.404337 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.404376 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.404409 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.404443 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.404476 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.404509 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.404536 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.404569 close(4)                = 0
17:47:03.404594 munmap(0x7fe35854b000, 4096) = 0
17:47:03.404625 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.404661 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.404695 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.404737 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.404772 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.404802 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.404835 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.404862 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.404898 read(4, "", 4096)       = 0
17:47:03.404924 close(4)                = 0
17:47:03.404948 munmap(0x7fe35854b000, 4096) = 0
17:47:03.404979 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.405018 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.407070 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.407108 writev(3, [{"5\1\4\0\256\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\257\0\300\3\256\0\300\3\0\0\0\0H\1\26\0\256\0\300\3\257\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.407152 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.407181 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.407227 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.407265 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.407298 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.407331 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.407364 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.407397 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.408003 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.408045 close(4)                = 0
17:47:03.408076 munmap(0x7fe35854b000, 4096) = 0
17:47:03.408113 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.408176 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.408219 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.408261 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.408305 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.408344 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.408389 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.408425 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.408474 read(4, "", 4096)       = 0
17:47:03.408506 close(4)                = 0
17:47:03.408538 munmap(0x7fe35854b000, 4096) = 0
17:47:03.408576 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.408622 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.409440 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.409486 writev(3, [{"5\1\4\0\263\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\264\0\300\3\263\0\300\3\0\0\0\0H\1\26\0\263\0\300\3\264\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.409779 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.409816 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.411753 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.411803 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.411855 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.411894 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.411927 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.411961 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.411995 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.412029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.412056 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.412090 close(4)                = 0
17:47:03.412115 munmap(0x7fe35854b000, 4096) = 0
17:47:03.412161 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.412198 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.412232 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.412264 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.412298 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.412328 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.412361 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.412388 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.412424 read(4, "", 4096)       = 0
17:47:03.412450 close(4)                = 0
17:47:03.412473 munmap(0x7fe35854b000, 4096) = 0
17:47:03.412503 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.412538 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.414585 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.414625 writev(3, [{"5\1\4\0\270\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\271\0\300\3\270\0\300\3\0\0\0\0H\1\26\0\270\0\300\3\271\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.414761 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.414794 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.414845 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.414884 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.414917 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.414950 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.414985 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.415018 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.415046 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.415080 close(4)                = 0
17:47:03.415106 munmap(0x7fe35854b000, 4096) = 0
17:47:03.415138 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.415174 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.415208 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.415241 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.415275 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.415319 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.415352 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.415379 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.415415 read(4, "", 4096)       = 0
17:47:03.415446 close(4)                = 0
17:47:03.415470 munmap(0x7fe35854b000, 4096) = 0
17:47:03.415502 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.415520 rt_sigreturn(0xe)       = 0
17:47:03.415548 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.415583 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.416453 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.416494 writev(3, [{"5\1\4\0\275\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\276\0\300\3\275\0\300\3\0\0\0\0H\1\26\0\275\0\300\3\276\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.416540 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.416570 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.418209 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.418243 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.418298 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.418338 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.418377 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.418413 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.418447 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.418480 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.418508 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.418542 close(4)                = 0
17:47:03.418567 munmap(0x7fe35854b000, 4096) = 0
17:47:03.418600 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.418636 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.418670 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.418703 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.418736 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.418766 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.418799 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.418826 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.418863 read(4, "", 4096)       = 0
17:47:03.418888 close(4)                = 0
17:47:03.418915 munmap(0x7fe35854b000, 4096) = 0
17:47:03.418945 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.418980 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.421039 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.421077 writev(3, [{"5\1\4\0\302\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\303\0\300\3\302\0\300\3\0\0\0\0H\1\26\0\302\0\300\3\303\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.421120 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.421149 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.421201 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.421255 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.421289 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.421323 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.421356 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.421389 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.421416 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.421448 close(4)                = 0
17:47:03.421473 munmap(0x7fe35854b000, 4096) = 0
17:47:03.421503 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.421539 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.421573 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.421606 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.421639 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.421669 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.421702 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.421728 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.421765 read(4, "", 4096)       = 0
17:47:03.421790 close(4)                = 0
17:47:03.421813 munmap(0x7fe35854b000, 4096) = 0
17:47:03.421843 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.421878 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.422627 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.422665 writev(3, [{"5\1\4\0\307\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\310\0\300\3\307\0\300\3\0\0\0\0H\1\26\0\307\0\300\3\310\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.422709 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.422737 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.424841 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.424883 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.424940 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.424982 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.425019 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.425058 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.425097 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.425139 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.425171 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.425214 close(4)                = 0
17:47:03.425244 munmap(0x7fe35854b000, 4096) = 0
17:47:03.425288 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.425337 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.425384 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.425428 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.425476 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.425532 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.425575 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.425610 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.425661 read(4, "", 4096)       = 0
17:47:03.425695 close(4)                = 0
17:47:03.425725 munmap(0x7fe35854b000, 4096) = 0
17:47:03.425764 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.425812 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.428521 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.428586 writev(3, [{"5\1\4\0\314\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\315\0\300\3\314\0\300\3\0\0\0\0H\1\26\0\314\0\300\3\315\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.428769 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.428803 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.428863 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.428904 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.428937 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.428971 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.429007 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.429041 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.429071 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.429105 close(4)                = 0
17:47:03.429131 munmap(0x7fe35854b000, 4096) = 0
17:47:03.429163 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.429199 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.429233 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.429265 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.429298 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.429328 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.429361 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.429387 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.429424 read(4, "", 4096)       = 0
17:47:03.429449 close(4)                = 0
17:47:03.429473 munmap(0x7fe35854b000, 4096) = 0
17:47:03.429507 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.429544 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.430451 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.430490 writev(3, [{"5\1\4\0\321\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\322\0\300\3\321\0\300\3\0\0\0\0H\1\26\0\321\0\300\3\322\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.430534 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.430562 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.431952 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.431986 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.432034 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.432072 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.432121 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.432164 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.432197 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.432231 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.432259 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.432291 close(4)                = 0
17:47:03.432316 munmap(0x7fe35854b000, 4096) = 0
17:47:03.432348 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.432389 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.432424 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.432457 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.432491 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.432521 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.432554 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.432580 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.432617 read(4, "", 4096)       = 0
17:47:03.432642 close(4)                = 0
17:47:03.432666 munmap(0x7fe35854b000, 4096) = 0
17:47:03.432695 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.432730 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.434759 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.434796 writev(3, [{"5\1\4\0\326\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\327\0\300\3\326\0\300\3\0\0\0\0H\1\26\0\326\0\300\3\327\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.434839 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.434867 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.434914 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.434951 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.434984 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.435017 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.435050 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.435083 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.435111 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.435142 close(4)                = 0
17:47:03.435167 munmap(0x7fe35854b000, 4096) = 0
17:47:03.435197 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.435238 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.435274 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.435306 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.435339 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.435370 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.435402 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.435429 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.435474 read(4, "", 4096)       = 0
17:47:03.435503 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.435522 rt_sigreturn(0xe)       = 0
17:47:03.435547 close(4)                = 0
17:47:03.435570 munmap(0x7fe35854b000, 4096) = 0
17:47:03.435600 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.435645 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.436656 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.436694 writev(3, [{"5\1\4\0\333\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\334\0\300\3\333\0\300\3\0\0\0\0H\1\26\0\333\0\300\3\334\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.436738 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.436766 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.438061 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.438096 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.438149 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.438188 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.438221 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.438254 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.438287 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.438320 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.438348 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.438380 close(4)                = 0
17:47:03.438405 munmap(0x7fe35854b000, 4096) = 0
17:47:03.438436 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.438472 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.438505 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.438537 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.438571 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.438601 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.438634 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.438660 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.438697 read(4, "", 4096)       = 0
17:47:03.438722 close(4)                = 0
17:47:03.438746 munmap(0x7fe35854b000, 4096) = 0
17:47:03.438775 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.438810 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.440845 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.440946 writev(3, [{"5\1\4\0\340\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\341\0\300\3\340\0\300\3\0\0\0\0H\1\26\0\340\0\300\3\341\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.440999 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.441031 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.441089 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.441131 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.441165 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.441215 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.441256 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.441292 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.441320 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.441358 close(4)                = 0
17:47:03.441381 munmap(0x7fe35854b000, 4096) = 0
17:47:03.441415 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.441456 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.441491 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.441526 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.441561 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.441595 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.441634 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.441661 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.441701 read(4, "", 4096)       = 0
17:47:03.441725 close(4)                = 0
17:47:03.441747 munmap(0x7fe35854b000, 4096) = 0
17:47:03.441791 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.441834 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.443439 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.443492 writev(3, [{"5\1\4\0\345\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\346\0\300\3\345\0\300\3\0\0\0\0H\1\26\0\345\0\300\3\346\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.443796 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.443833 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.445295 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.445333 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.445392 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.445431 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.445464 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.445499 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.445535 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.445569 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.445598 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.445633 close(4)                = 0
17:47:03.445658 munmap(0x7fe35854b000, 4096) = 0
17:47:03.445691 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.445726 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.445761 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.445793 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.445827 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.445857 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.445890 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.445916 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.445953 read(4, "", 4096)       = 0
17:47:03.445992 close(4)                = 0
17:47:03.446017 munmap(0x7fe35854b000, 4096) = 0
17:47:03.446047 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.446081 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.448098 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.448153 writev(3, [{"5\1\4\0\352\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\353\0\300\3\352\0\300\3\0\0\0\0H\1\26\0\352\0\300\3\353\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.448289 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.448323 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.448371 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.448409 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.448442 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.448476 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.448509 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.448542 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.448569 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.448601 close(4)                = 0
17:47:03.448626 munmap(0x7fe35854b000, 4096) = 0
17:47:03.448656 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.448691 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.448725 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.448757 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.448791 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.448821 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.448854 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.448880 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.448917 read(4, "", 4096)       = 0
17:47:03.448942 close(4)                = 0
17:47:03.448965 munmap(0x7fe35854b000, 4096) = 0
17:47:03.448995 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.449029 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.450328 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.450366 writev(3, [{"5\1\4\0\357\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\360\0\300\3\357\0\300\3\0\0\0\0H\1\26\0\357\0\300\3\360\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.450410 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.450439 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.451458 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.451493 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.451540 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.451577 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.451610 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.451643 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.451676 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.451719 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.451746 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.451778 close(4)                = 0
17:47:03.451803 munmap(0x7fe35854b000, 4096) = 0
17:47:03.451833 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.451869 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.451902 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.451934 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.451968 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.451998 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.452031 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.452057 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.452093 read(4, "", 4096)       = 0
17:47:03.452118 close(4)                = 0
17:47:03.452148 munmap(0x7fe35854b000, 4096) = 0
17:47:03.452179 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.452214 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.454228 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.454267 writev(3, [{"5\1\4\0\364\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\365\0\300\3\364\0\300\3\0\0\0\0H\1\26\0\364\0\300\3\365\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.454313 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.454344 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.454390 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.454428 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.454461 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.454494 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.454527 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.454561 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.454588 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.454620 close(4)                = 0
17:47:03.454645 munmap(0x7fe35854b000, 4096) = 0
17:47:03.454675 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.454711 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.454745 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.454777 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.454811 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.454841 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.454873 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.454899 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.454936 read(4, "", 4096)       = 0
17:47:03.454961 close(4)                = 0
17:47:03.454985 munmap(0x7fe35854b000, 4096) = 0
17:47:03.455014 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.455058 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.455493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.455517 rt_sigreturn(0xe)       = 4370261
17:47:03.456673 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.456713 writev(3, [{"5\1\4\0\371\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\372\0\300\3\371\0\300\3\0\0\0\0H\1\26\0\371\0\300\3\372\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.456758 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.456789 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.457566 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.457650 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.457707 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.457751 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.457784 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.457820 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.457854 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.457891 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.457922 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.457955 close(4)                = 0
17:47:03.457980 munmap(0x7fe35854b000, 4096) = 0
17:47:03.458011 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.458048 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.458089 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.458125 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.458160 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.458192 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.458227 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.458255 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.458300 read(4, "", 4096)       = 0
17:47:03.458332 close(4)                = 0
17:47:03.458359 munmap(0x7fe35854b000, 4096) = 0
17:47:03.458392 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.458436 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.461176 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.461221 writev(3, [{"5\1\4\0\376\0\300\3\16\1\0\0\20\0\20\0007\0\4\0\377\0\300\3\376\0\300\3\0\0\0\0H\1\26\0\376\0\300\3\377\0\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.461356 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.461388 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.461441 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.461479 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.461512 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.461546 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.461580 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.461614 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.461642 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.461688 close(4)                = 0
17:47:03.461713 munmap(0x7fe35854b000, 4096) = 0
17:47:03.461745 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.461781 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.461815 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.461847 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.461882 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.461912 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.461945 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.461971 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.462008 read(4, "", 4096)       = 0
17:47:03.462033 close(4)                = 0
17:47:03.462057 munmap(0x7fe35854b000, 4096) = 0
17:47:03.462087 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.462121 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.464028 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.464066 writev(3, [{"5\1\4\0\3\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\4\1\300\3\3\1\300\3\0\0\0\0H\1\26\0\3\1\300\3\4\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.464110 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.464147 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.464609 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.464644 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.464692 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.464730 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.464763 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.464796 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.464829 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.464863 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.464890 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.464922 close(4)                = 0
17:47:03.464947 munmap(0x7fe35854b000, 4096) = 0
17:47:03.464978 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.465013 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.465047 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.465079 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.465113 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.465143 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.465176 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.465202 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.465239 read(4, "", 4096)       = 0
17:47:03.465264 close(4)                = 0
17:47:03.465287 munmap(0x7fe35854b000, 4096) = 0
17:47:03.465317 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.465351 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.467369 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.467406 writev(3, [{"5\1\4\0\10\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\t\1\300\3\10\1\300\3\0\0\0\0H\1\26\0\10\1\300\3\t\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.467450 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.467479 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.467526 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.467563 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.467600 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.467634 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.467666 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.467699 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.467726 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.467758 close(4)                = 0
17:47:03.467783 munmap(0x7fe35854b000, 4096) = 0
17:47:03.467813 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.467848 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.467882 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.467915 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.467949 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.467980 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.468012 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.468038 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.468075 read(4, "", 4096)       = 0
17:47:03.468100 close(4)                = 0
17:47:03.468124 munmap(0x7fe35854b000, 4096) = 0
17:47:03.468165 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.468199 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.470365 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.470403 writev(3, [{"5\1\4\0\r\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\16\1\300\3\r\1\300\3\0\0\0\0H\1\26\0\r\1\300\3\16\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.470446 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.470476 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.470688 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.470720 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.470766 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.470804 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.470837 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.470870 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.470903 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.470936 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.470963 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.470996 close(4)                = 0
17:47:03.471020 munmap(0x7fe35854b000, 4096) = 0
17:47:03.471060 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.471096 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.471130 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.471162 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.471195 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.471225 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.471258 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.471284 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.471321 read(4, "", 4096)       = 0
17:47:03.471346 close(4)                = 0
17:47:03.471370 munmap(0x7fe35854b000, 4096) = 0
17:47:03.471399 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.471433 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.473463 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.473502 writev(3, [{"5\1\4\0\22\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\23\1\300\3\22\1\300\3\0\0\0\0H\1\26\0\22\1\300\3\23\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.473547 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.473577 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.473623 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.473661 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.473694 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.473727 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.473760 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.473793 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.473820 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.473852 close(4)                = 0
17:47:03.473877 munmap(0x7fe35854b000, 4096) = 0
17:47:03.473907 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.473943 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.473976 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.474008 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.474042 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.474072 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.474105 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.474132 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.474168 read(4, "", 4096)       = 0
17:47:03.474194 close(4)                = 0
17:47:03.474218 munmap(0x7fe35854b000, 4096) = 0
17:47:03.474247 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.474282 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.475497 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.475523 rt_sigreturn(0xe)       = 4364502
17:47:03.477749 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.477804 writev(3, [{"5\1\4\0\27\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\30\1\300\3\27\1\300\3\0\0\0\0H\1\26\0\27\1\300\3\30\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.477946 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.477978 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.478023 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.478053 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.478104 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.478143 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.478177 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.478211 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.478244 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.478278 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.478306 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.478339 close(4)                = 0
17:47:03.478364 munmap(0x7fe35854b000, 4096) = 0
17:47:03.478397 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.478432 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.478466 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.478498 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.478532 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.478562 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.478595 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.478622 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.478658 read(4, "", 4096)       = 0
17:47:03.478684 close(4)                = 0
17:47:03.478708 munmap(0x7fe35854b000, 4096) = 0
17:47:03.478737 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.478772 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.480828 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.480872 writev(3, [{"5\1\4\0\34\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\35\1\300\3\34\1\300\3\0\0\0\0H\1\26\0\34\1\300\3\35\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.480919 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.480950 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.480999 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.481037 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.481070 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.481103 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.481136 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.481170 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.481197 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.481231 close(4)                = 0
17:47:03.481256 munmap(0x7fe35854b000, 4096) = 0
17:47:03.481287 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.481323 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.481368 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.481401 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.481434 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.481465 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.481497 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.481524 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.481561 read(4, "", 4096)       = 0
17:47:03.481586 close(4)                = 0
17:47:03.481610 munmap(0x7fe35854b000, 4096) = 0
17:47:03.481640 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.481674 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.483718 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.483755 writev(3, [{"5\1\4\0!\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\"\1\300\3!\1\300\3\0\0\0\0H\1\26\0!\1\300\3\"\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.483799 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.483828 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.483875 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.483912 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.483945 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.483978 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.484011 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.484044 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.484072 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.484105 close(4)                = 0
17:47:03.484142 munmap(0x7fe35854b000, 4096) = 0
17:47:03.484176 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.484213 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.484246 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.484279 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.484313 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.484344 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.484377 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.484403 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.484440 read(4, "", 4096)       = 0
17:47:03.484465 close(4)                = 0
17:47:03.484489 munmap(0x7fe35854b000, 4096) = 0
17:47:03.484519 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.484554 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.484835 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.484871 writev(3, [{"5\1\4\0&\1\300\3\16\1\0\0\20\0\20\0007\0\4\0'\1\300\3&\1\300\3\0\0\0\0H\1\26\0&\1\300\3'\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.484914 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.484951 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.486844 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.486880 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.486929 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.486968 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.487001 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.487034 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.487068 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.487101 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.487128 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.487161 close(4)                = 0
17:47:03.487186 munmap(0x7fe35854b000, 4096) = 0
17:47:03.487216 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.487252 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.487285 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.487318 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.487351 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.487381 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.487414 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.487440 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.487477 read(4, "", 4096)       = 0
17:47:03.487501 close(4)                = 0
17:47:03.487525 munmap(0x7fe35854b000, 4096) = 0
17:47:03.487555 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.487589 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.489634 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.489673 writev(3, [{"5\1\4\0+\1\300\3\16\1\0\0\20\0\20\0007\0\4\0,\1\300\3+\1\300\3\0\0\0\0H\1\26\0+\1\300\3,\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.489718 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.489747 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.489794 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.489832 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.489865 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.489898 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.489931 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.489964 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.489991 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.490023 close(4)                = 0
17:47:03.490047 munmap(0x7fe35854b000, 4096) = 0
17:47:03.490078 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.490113 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.490146 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.490179 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.490222 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.490253 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.490286 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.490313 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.490349 read(4, "", 4096)       = 0
17:47:03.490374 close(4)                = 0
17:47:03.490398 munmap(0x7fe35854b000, 4096) = 0
17:47:03.490428 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.490463 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.490895 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.490931 writev(3, [{"5\1\4\0000\1\300\3\16\1\0\0\20\0\20\0007\0\4\0001\1\300\0030\1\300\3\0\0\0\0H\1\26\0000\1\300\0031\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.490974 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.491002 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.493265 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.493302 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.493351 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.493390 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.493423 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.493457 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.493491 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.493524 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.493552 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.493586 close(4)                = 0
17:47:03.493611 munmap(0x7fe35854b000, 4096) = 0
17:47:03.493643 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.493678 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.493712 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.493745 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.493778 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.493808 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.493841 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.493867 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.493903 read(4, "", 4096)       = 0
17:47:03.493928 close(4)                = 0
17:47:03.493952 munmap(0x7fe35854b000, 4096) = 0
17:47:03.493982 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.494016 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.495495 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.495518 rt_sigreturn(0xe)       = 2
17:47:03.496123 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.496178 writev(3, [{"5\1\4\0005\1\300\3\16\1\0\0\20\0\20\0007\0\4\0006\1\300\0035\1\300\3\0\0\0\0H\1\26\0005\1\300\0036\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.496317 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.496350 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.496412 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.496450 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.496484 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.496517 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.496550 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.496583 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.496610 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.496643 close(4)                = 0
17:47:03.496668 munmap(0x7fe35854b000, 4096) = 0
17:47:03.496699 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.496735 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.496769 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.496801 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.496835 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.496865 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.496898 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.496925 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.496961 read(4, "", 4096)       = 0
17:47:03.496986 close(4)                = 0
17:47:03.497010 munmap(0x7fe35854b000, 4096) = 0
17:47:03.497040 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.497074 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.497677 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.497714 writev(3, [{"5\1\4\0:\1\300\3\16\1\0\0\20\0\20\0007\0\4\0;\1\300\3:\1\300\3\0\0\0\0H\1\26\0:\1\300\3;\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.497757 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.497786 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.499420 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.499455 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.499503 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.499542 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.499575 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.499609 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.499641 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.499674 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.499701 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.499734 close(4)                = 0
17:47:03.499759 munmap(0x7fe35854b000, 4096) = 0
17:47:03.499789 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.499825 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.499859 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.499891 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.499934 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.499966 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.499998 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.500025 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.500061 read(4, "", 4096)       = 0
17:47:03.500086 close(4)                = 0
17:47:03.500110 munmap(0x7fe35854b000, 4096) = 0
17:47:03.500149 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.500185 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.502209 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.502246 writev(3, [{"5\1\4\0?\1\300\3\16\1\0\0\20\0\20\0007\0\4\0@\1\300\3?\1\300\3\0\0\0\0H\1\26\0?\1\300\3@\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.502289 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.502319 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.502365 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.502403 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.502436 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.502469 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.502503 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.502539 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.502567 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.502600 close(4)                = 0
17:47:03.502625 munmap(0x7fe35854b000, 4096) = 0
17:47:03.502657 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.502692 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.502725 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.502757 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.502790 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.502821 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.502854 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.502880 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.502916 read(4, "", 4096)       = 0
17:47:03.502941 close(4)                = 0
17:47:03.502965 munmap(0x7fe35854b000, 4096) = 0
17:47:03.502995 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.503029 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.503796 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.503832 writev(3, [{"5\1\4\0D\1\300\3\16\1\0\0\20\0\20\0007\0\4\0E\1\300\3D\1\300\3\0\0\0\0H\1\26\0D\1\300\3E\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.503875 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.503903 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.505397 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.505433 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.505484 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.505524 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.505568 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.505603 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.505636 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.505669 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.505696 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.505729 close(4)                = 0
17:47:03.505754 munmap(0x7fe35854b000, 4096) = 0
17:47:03.505784 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.505819 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.505853 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.505885 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.505918 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.505949 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.505981 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.506007 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.506044 read(4, "", 4096)       = 0
17:47:03.506069 close(4)                = 0
17:47:03.506093 munmap(0x7fe35854b000, 4096) = 0
17:47:03.506122 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.506156 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.508428 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.508467 writev(3, [{"5\1\4\0I\1\300\3\16\1\0\0\20\0\20\0007\0\4\0J\1\300\3I\1\300\3\0\0\0\0H\1\26\0I\1\300\3J\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.508520 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.508555 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.508617 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.508659 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.508695 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.508729 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.508766 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.508810 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.508860 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.508898 close(4)                = 0
17:47:03.508924 munmap(0x7fe35854b000, 4096) = 0
17:47:03.508956 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.509023 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.509059 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.509092 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.509133 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.509173 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.509207 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.509234 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.509301 read(4, "", 4096)       = 0
17:47:03.509331 close(4)                = 0
17:47:03.509356 munmap(0x7fe35854b000, 4096) = 0
17:47:03.509387 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.509454 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.510389 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.510428 writev(3, [{"5\1\4\0N\1\300\3\16\1\0\0\20\0\20\0007\0\4\0O\1\300\3N\1\300\3\0\0\0\0H\1\26\0N\1\300\3O\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.510634 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.510666 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.512083 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.512117 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.512176 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.512216 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.512249 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.512283 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.512318 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.512352 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.512380 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.512413 close(4)                = 0
17:47:03.512438 munmap(0x7fe35854b000, 4096) = 0
17:47:03.512470 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.512506 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.512540 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.512572 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.512605 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.512636 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.512677 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.512706 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.512743 read(4, "", 4096)       = 0
17:47:03.512768 close(4)                = 0
17:47:03.512792 munmap(0x7fe35854b000, 4096) = 0
17:47:03.512822 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.512857 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.514879 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.514916 writev(3, [{"5\1\4\0S\1\300\3\16\1\0\0\20\0\20\0007\0\4\0T\1\300\3S\1\300\3\0\0\0\0H\1\26\0S\1\300\3T\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.515041 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.515072 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.515120 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.515158 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.515191 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.515225 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.515268 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.515302 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.515329 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.515361 close(4)                = 0
17:47:03.515386 munmap(0x7fe35854b000, 4096) = 0
17:47:03.515416 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.515451 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.515485 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.515518 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.515534 rt_sigreturn(0xe)       = -1 ENOENT (No such file or directory)
17:47:03.515567 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.515601 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.515631 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.515664 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.515691 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.515728 read(4, "", 4096)       = 0
17:47:03.515753 close(4)                = 0
17:47:03.515777 munmap(0x7fe35854b000, 4096) = 0
17:47:03.515806 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.515841 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.516869 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.516908 writev(3, [{"5\1\4\0X\1\300\3\16\1\0\0\20\0\20\0007\0\4\0Y\1\300\3X\1\300\3\0\0\0\0H\1\26\0X\1\300\3Y\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.516951 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.516979 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.518311 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.518346 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.518394 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.518438 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.518474 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.518508 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.518541 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.518575 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.518602 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.518635 close(4)                = 0
17:47:03.518659 munmap(0x7fe35854b000, 4096) = 0
17:47:03.518690 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.518725 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.518759 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.518791 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.518824 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.518855 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.518887 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.518914 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.518958 read(4, "", 4096)       = 0
17:47:03.518984 close(4)                = 0
17:47:03.519008 munmap(0x7fe35854b000, 4096) = 0
17:47:03.519037 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.519072 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.521115 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.521153 writev(3, [{"5\1\4\0]\1\300\3\16\1\0\0\20\0\20\0007\0\4\0^\1\300\3]\1\300\3\0\0\0\0H\1\26\0]\1\300\3^\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.521195 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.521224 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.521271 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.521313 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.521347 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.521381 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.521413 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.521447 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.521474 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.521506 close(4)                = 0
17:47:03.521530 munmap(0x7fe35854b000, 4096) = 0
17:47:03.521561 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.521596 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.521630 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.521662 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.521696 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.521726 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.521759 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.521785 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.521822 read(4, "", 4096)       = 0
17:47:03.521847 close(4)                = 0
17:47:03.521871 munmap(0x7fe35854b000, 4096) = 0
17:47:03.521900 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.521935 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.523062 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.523099 writev(3, [{"5\1\4\0b\1\300\3\16\1\0\0\20\0\20\0007\0\4\0c\1\300\3b\1\300\3\0\0\0\0H\1\26\0b\1\300\3c\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.523141 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.523170 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.524406 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.524443 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.524498 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.524971 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.525041 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.525077 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.525116 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.525159 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.525219 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.525257 close(4)                = 0
17:47:03.525282 munmap(0x7fe35854b000, 4096) = 0
17:47:03.525313 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.525382 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.525418 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.525451 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.525492 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.525532 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.525566 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.525593 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.525655 read(4, "", 4096)       = 0
17:47:03.525685 close(4)                = 0
17:47:03.525709 munmap(0x7fe35854b000, 4096) = 0
17:47:03.525740 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.525776 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.527814 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.527854 writev(3, [{"5\1\4\0g\1\300\3\16\1\0\0\20\0\20\0007\0\4\0h\1\300\3g\1\300\3\0\0\0\0H\1\26\0g\1\300\3h\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.527995 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.528027 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.528078 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.528116 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.528158 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.528193 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.528227 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.528260 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.528288 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.528322 close(4)                = 0
17:47:03.528348 munmap(0x7fe35854b000, 4096) = 0
17:47:03.528379 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.528414 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.528447 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.528479 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.528512 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.528542 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.528575 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.528601 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.528638 read(4, "", 4096)       = 0
17:47:03.528663 close(4)                = 0
17:47:03.528686 munmap(0x7fe35854b000, 4096) = 0
17:47:03.528716 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.528750 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.530077 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.530114 writev(3, [{"5\1\4\0l\1\300\3\16\1\0\0\20\0\20\0007\0\4\0m\1\300\3l\1\300\3\0\0\0\0H\1\26\0l\1\300\3m\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.530157 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.530185 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.531297 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.531330 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.531377 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.531415 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.531448 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.531481 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.531513 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.531547 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.531574 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.531606 close(4)                = 0
17:47:03.531631 munmap(0x7fe35854b000, 4096) = 0
17:47:03.531662 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.531697 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.531731 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.531763 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.531800 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.531831 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.531864 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.531890 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.531927 read(4, "", 4096)       = 0
17:47:03.531952 close(4)                = 0
17:47:03.531975 munmap(0x7fe35854b000, 4096) = 0
17:47:03.532005 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.532040 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.534106 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.534144 writev(3, [{"5\1\4\0q\1\300\3\16\1\0\0\20\0\20\0007\0\4\0r\1\300\3q\1\300\3\0\0\0\0H\1\26\0q\1\300\3r\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.534187 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.534216 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.534262 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.534300 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.534333 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.534366 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.534399 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.534431 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.534458 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.534490 close(4)                = 0
17:47:03.534515 munmap(0x7fe35854b000, 4096) = 0
17:47:03.534555 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.534592 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.534625 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.534661 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.534696 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.534727 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.534760 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.534786 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.534823 read(4, "", 4096)       = 0
17:47:03.534848 close(4)                = 0
17:47:03.534872 munmap(0x7fe35854b000, 4096) = 0
17:47:03.534901 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.534936 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.535494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.535516 rt_sigreturn(0xe)       = 1087112
17:47:03.536376 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.536413 writev(3, [{"5\1\4\0v\1\300\3\16\1\0\0\20\0\20\0007\0\4\0w\1\300\3v\1\300\3\0\0\0\0H\1\26\0v\1\300\3w\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.536456 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.536484 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.537333 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.537366 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.537413 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.537451 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.537484 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.537516 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.537554 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.537587 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.537614 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.537647 close(4)                = 0
17:47:03.537671 munmap(0x7fe35854b000, 4096) = 0
17:47:03.537702 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.537737 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.537770 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.537802 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.537836 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.537866 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.537898 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.537924 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.537960 read(4, "", 4096)       = 0
17:47:03.537985 close(4)                = 0
17:47:03.538008 munmap(0x7fe35854b000, 4096) = 0
17:47:03.538038 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.538072 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.540105 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.540148 writev(3, [{"5\1\4\0{\1\300\3\16\1\0\0\20\0\20\0007\0\4\0|\1\300\3{\1\300\3\0\0\0\0H\1\26\0{\1\300\3|\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.540191 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.540219 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.540265 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.540303 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.540335 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.540368 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.540404 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.540438 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.540465 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.540497 close(4)                = 0
17:47:03.540522 munmap(0x7fe35854b000, 4096) = 0
17:47:03.540552 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.540587 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.540621 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.540653 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.540686 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.540716 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.540748 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.540775 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.540811 read(4, "", 4096)       = 0
17:47:03.540836 close(4)                = 0
17:47:03.540859 munmap(0x7fe35854b000, 4096) = 0
17:47:03.540889 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.540923 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.543002 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.543040 writev(3, [{"5\1\4\0\200\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\201\1\300\3\200\1\300\3\0\0\0\0H\1\26\0\200\1\300\3\201\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.543236 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.543273 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.543840 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.543874 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.543924 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.543963 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.543995 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.544029 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.544063 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.544097 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.544125 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.544184 close(4)                = 0
17:47:03.544211 munmap(0x7fe35854b000, 4096) = 0
17:47:03.544247 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.544295 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.544330 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.544362 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.544396 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.544426 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.544459 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.544486 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.544522 read(4, "", 4096)       = 0
17:47:03.544547 close(4)                = 0
17:47:03.544571 munmap(0x7fe35854b000, 4096) = 0
17:47:03.544600 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.544635 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.546672 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.546709 writev(3, [{"5\1\4\0\205\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\206\1\300\3\205\1\300\3\0\0\0\0H\1\26\0\205\1\300\3\206\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.546840 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.546872 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.546919 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.546957 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.546990 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.547023 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.547055 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.547094 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.547122 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.547155 close(4)                = 0
17:47:03.547179 munmap(0x7fe35854b000, 4096) = 0
17:47:03.547209 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.547245 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.547278 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.547310 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.547344 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.547374 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.547407 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.547433 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.547470 read(4, "", 4096)       = 0
17:47:03.547495 close(4)                = 0
17:47:03.547519 munmap(0x7fe35854b000, 4096) = 0
17:47:03.547548 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.547583 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.549609 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.549647 writev(3, [{"5\1\4\0\212\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\213\1\300\3\212\1\300\3\0\0\0\0H\1\26\0\212\1\300\3\213\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.549700 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.549729 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.549987 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.550021 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.550070 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.550110 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.550143 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.550176 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.550209 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.550242 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.550269 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.550302 close(4)                = 0
17:47:03.550327 munmap(0x7fe35854b000, 4096) = 0
17:47:03.550357 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.550393 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.550426 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.550458 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.550491 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.550522 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.550554 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.550580 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.550616 read(4, "", 4096)       = 0
17:47:03.550642 close(4)                = 0
17:47:03.550665 munmap(0x7fe35854b000, 4096) = 0
17:47:03.550695 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.550728 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.552766 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.552804 writev(3, [{"5\1\4\0\217\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\220\1\300\3\217\1\300\3\0\0\0\0H\1\26\0\217\1\300\3\220\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.552855 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.552888 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.552939 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.552979 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.553015 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.553051 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.553087 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.553122 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.553151 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.553186 close(4)                = 0
17:47:03.553213 munmap(0x7fe35854b000, 4096) = 0
17:47:03.553245 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.553283 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.553320 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.553364 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.553401 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.553434 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.553469 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.553498 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.553537 read(4, "", 4096)       = 0
17:47:03.553565 close(4)                = 0
17:47:03.553591 munmap(0x7fe35854b000, 4096) = 0
17:47:03.553623 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.553660 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.555495 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.555519 rt_sigreturn(0xe)       = 4359227
17:47:03.555925 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.555965 writev(3, [{"5\1\4\0\224\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\225\1\300\3\224\1\300\3\0\0\0\0H\1\26\0\224\1\300\3\225\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.556012 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.556045 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.556148 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.556182 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.556231 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.556270 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.556304 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.556339 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.556374 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.556408 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.556437 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.556471 close(4)                = 0
17:47:03.556497 munmap(0x7fe35854b000, 4096) = 0
17:47:03.556528 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.556565 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.556601 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.556634 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.556674 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.556708 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.556743 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.556773 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.556813 read(4, "", 4096)       = 0
17:47:03.556840 close(4)                = 0
17:47:03.556866 munmap(0x7fe35854b000, 4096) = 0
17:47:03.556898 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.556935 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.559318 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.559359 writev(3, [{"5\1\4\0\231\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\232\1\300\3\231\1\300\3\0\0\0\0H\1\26\0\231\1\300\3\232\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.559573 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.559607 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.559659 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.559700 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.559736 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.559772 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.559808 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.559844 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.559874 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.559909 close(4)                = 0
17:47:03.559936 munmap(0x7fe35854b000, 4096) = 0
17:47:03.559970 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.560008 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.560045 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.560079 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.560115 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.560165 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.560200 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.560228 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.560267 read(4, "", 4096)       = 0
17:47:03.560294 close(4)                = 0
17:47:03.560319 munmap(0x7fe35854b000, 4096) = 0
17:47:03.560350 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.560387 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.562464 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.562503 writev(3, [{"5\1\4\0\236\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\237\1\300\3\236\1\300\3\0\0\0\0H\1\26\0\236\1\300\3\237\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.562640 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.562675 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.562726 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.562767 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.562803 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.562839 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.562875 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.562910 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.562939 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.562974 close(4)                = 0
17:47:03.563001 munmap(0x7fe35854b000, 4096) = 0
17:47:03.563034 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.563073 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.563109 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.563144 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.563191 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.563226 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.563261 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.563291 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.563330 read(4, "", 4096)       = 0
17:47:03.563357 close(4)                = 0
17:47:03.563383 munmap(0x7fe35854b000, 4096) = 0
17:47:03.563415 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.563452 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.563826 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.563865 writev(3, [{"5\1\4\0\243\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\244\1\300\3\243\1\300\3\0\0\0\0H\1\26\0\243\1\300\3\244\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.563911 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.563941 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.565868 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.565906 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.565960 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.566002 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.566040 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.566078 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.566113 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.566149 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.566178 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.566214 close(4)                = 0
17:47:03.566241 munmap(0x7fe35854b000, 4096) = 0
17:47:03.566273 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.566311 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.566347 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.566382 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.566418 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.566450 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.566485 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.566513 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.566552 read(4, "", 4096)       = 0
17:47:03.566580 close(4)                = 0
17:47:03.566606 munmap(0x7fe35854b000, 4096) = 0
17:47:03.566638 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.566675 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.568742 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.568781 writev(3, [{"5\1\4\0\250\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\251\1\300\3\250\1\300\3\0\0\0\0H\1\26\0\250\1\300\3\251\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.568828 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.568862 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.568913 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.568965 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.569001 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.569037 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.569072 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.569108 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.569137 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.569173 close(4)                = 0
17:47:03.569200 munmap(0x7fe35854b000, 4096) = 0
17:47:03.569233 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.569272 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.569308 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.569343 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.569379 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.569411 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.569452 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.569481 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.569521 read(4, "", 4096)       = 0
17:47:03.569548 close(4)                = 0
17:47:03.569575 munmap(0x7fe35854b000, 4096) = 0
17:47:03.569607 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.569643 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.570148 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.570187 writev(3, [{"5\1\4\0\255\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\256\1\300\3\255\1\300\3\0\0\0\0H\1\26\0\255\1\300\3\256\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.570232 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.570262 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.572051 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.572088 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.572146 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.572190 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.572228 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.572264 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.572300 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.572335 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.572364 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.572400 close(4)                = 0
17:47:03.572427 munmap(0x7fe35854b000, 4096) = 0
17:47:03.572461 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.572499 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.572536 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.572571 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.572607 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.572649 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.572685 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.572714 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.572753 read(4, "", 4096)       = 0
17:47:03.572780 close(4)                = 0
17:47:03.572806 munmap(0x7fe35854b000, 4096) = 0
17:47:03.572838 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.572876 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.575098 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.575137 writev(3, [{"5\1\4\0\262\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\263\1\300\3\262\1\300\3\0\0\0\0H\1\26\0\262\1\300\3\263\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.575190 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.575223 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.575493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.575516 rt_sigreturn(0xe)       = 4364203
17:47:03.575565 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.575599 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.575660 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.575737 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.575777 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.575811 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.575845 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.575878 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.575938 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.575976 close(4)                = 0
17:47:03.576002 munmap(0x7fe35854b000, 4096) = 0
17:47:03.576033 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.576100 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.576155 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.576192 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.576233 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.576273 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.576308 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.576335 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.576397 read(4, "", 4096)       = 0
17:47:03.576427 close(4)                = 0
17:47:03.576451 munmap(0x7fe35854b000, 4096) = 0
17:47:03.576482 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.576548 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.578576 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.578617 writev(3, [{"5\1\4\0\267\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\270\1\300\3\267\1\300\3\0\0\0\0H\1\26\0\267\1\300\3\270\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.578753 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.578785 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.578835 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.578884 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.578918 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.578951 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.578985 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.579018 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.579045 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.579078 close(4)                = 0
17:47:03.579103 munmap(0x7fe35854b000, 4096) = 0
17:47:03.579134 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.579169 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.579203 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.579235 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.579269 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.579299 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.579332 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.579359 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.579395 read(4, "", 4096)       = 0
17:47:03.579420 close(4)                = 0
17:47:03.579444 munmap(0x7fe35854b000, 4096) = 0
17:47:03.579474 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.579508 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.580473 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.580510 writev(3, [{"5\1\4\0\274\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\275\1\300\3\274\1\300\3\0\0\0\0H\1\26\0\274\1\300\3\275\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.580553 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.580581 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.581952 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.581989 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.582039 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.582078 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.582111 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.582144 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.582177 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.582210 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.582237 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.582269 close(4)                = 0
17:47:03.582294 munmap(0x7fe35854b000, 4096) = 0
17:47:03.582324 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.582359 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.582393 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.582425 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.582459 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.582499 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.582532 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.582558 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.582595 read(4, "", 4096)       = 0
17:47:03.582620 close(4)                = 0
17:47:03.582644 munmap(0x7fe35854b000, 4096) = 0
17:47:03.582673 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.582708 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.583834 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.583871 writev(3, [{"5\1\4\0\301\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\302\1\300\3\301\1\300\3\0\0\0\0H\1\26\0\301\1\300\3\302\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.583915 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.583944 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.585122 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.585159 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.585209 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.585249 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.585285 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.585318 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.585351 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.585384 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.585411 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.585444 close(4)                = 0
17:47:03.585468 munmap(0x7fe35854b000, 4096) = 0
17:47:03.585498 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.585534 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.585568 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.585600 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.585633 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.585664 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.585696 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.585722 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.585759 read(4, "", 4096)       = 0
17:47:03.585784 close(4)                = 0
17:47:03.585808 munmap(0x7fe35854b000, 4096) = 0
17:47:03.585837 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.585871 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.586807 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.586843 writev(3, [{"5\1\4\0\306\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\307\1\300\3\306\1\300\3\0\0\0\0H\1\26\0\306\1\300\3\307\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.586886 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.586915 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.588084 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.588119 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.588176 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.588226 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.588261 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.588295 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.588328 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.588362 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.588389 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.588421 close(4)                = 0
17:47:03.588445 munmap(0x7fe35854b000, 4096) = 0
17:47:03.588475 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.588510 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.588543 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.588575 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.588608 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.588638 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.588670 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.588697 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.588733 read(4, "", 4096)       = 0
17:47:03.588758 close(4)                = 0
17:47:03.588782 munmap(0x7fe35854b000, 4096) = 0
17:47:03.588811 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.588846 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.589576 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.589612 writev(3, [{"5\1\4\0\313\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\314\1\300\3\313\1\300\3\0\0\0\0H\1\26\0\313\1\300\3\314\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.589655 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.589684 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.591041 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.591076 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.591206 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.591238 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.591284 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.591322 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.591355 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.591393 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.591969 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.592038 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.592067 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.592100 close(4)                = 0
17:47:03.592126 munmap(0x7fe35854b000, 4096) = 0
17:47:03.592172 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.592234 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.592270 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.592303 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.592377 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.592409 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.592443 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.592498 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.592540 read(4, "", 4096)       = 0
17:47:03.592566 close(4)                = 0
17:47:03.592590 munmap(0x7fe35854b000, 4096) = 0
17:47:03.592654 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.592691 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.593465 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.593502 writev(3, [{"5\1\4\0\320\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\321\1\300\3\320\1\300\3\0\0\0\0H\1\26\0\320\1\300\3\321\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.593703 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.593735 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.594827 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.594861 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.595221 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.595255 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.595305 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.595343 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.595376 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.595409 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.595443 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.595476 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.595505 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.595522 rt_sigreturn(0xe)       = 140614416248832
17:47:03.595547 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.595580 close(4)                = 0
17:47:03.595605 munmap(0x7fe35854b000, 4096) = 0
17:47:03.595636 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.595671 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.595705 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.595737 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.595770 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.595800 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.595833 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.595860 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.595896 read(4, "", 4096)       = 0
17:47:03.595921 close(4)                = 0
17:47:03.595945 munmap(0x7fe35854b000, 4096) = 0
17:47:03.595974 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.596009 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.596409 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.596447 writev(3, [{"5\1\4\0\325\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\326\1\300\3\325\1\300\3\0\0\0\0H\1\26\0\325\1\300\3\326\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.596586 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.596618 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.597084 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.597119 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.597411 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.597444 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.598101 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.598136 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.598566 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.598600 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.598851 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.598883 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.599048 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.599080 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.599167 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.599198 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.599244 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.599282 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.599315 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.599348 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.599381 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.599414 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.599441 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.599473 close(4)                = 0
17:47:03.599498 munmap(0x7fe35854b000, 4096) = 0
17:47:03.599529 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.599564 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.599597 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.599630 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.599663 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.599693 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.599725 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.599752 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.599788 read(4, "", 4096)       = 0
17:47:03.599813 close(4)                = 0
17:47:03.599837 munmap(0x7fe35854b000, 4096) = 0
17:47:03.599866 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.599900 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.600038 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.600072 writev(3, [{"5\1\4\0\332\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\333\1\300\3\332\1\300\3\0\0\0\0H\1\26\0\332\1\300\3\333\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.600115 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.600150 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.600323 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.600356 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.600479 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.600519 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.600639 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.600670 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.600801 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.600832 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.600980 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.601011 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.601136 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.601167 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.601285 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.601316 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.601457 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.601488 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.601635 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.601667 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.601807 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.601839 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.601988 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.602019 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.602116 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.602146 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.602250 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.602281 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.602383 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.602413 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.602507 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.602537 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.615524 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.615599 rt_sigreturn(0xe)       = 8015116
17:47:03.617483 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.617568 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.619208 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.619246 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.619326 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.619379 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.619417 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.619456 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.619498 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.619536 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.619573 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.619615 close(4)                = 0
17:47:03.619643 munmap(0x7fe35854b000, 4096) = 0
17:47:03.619682 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.619721 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.619758 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.619793 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.619830 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.619863 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.619898 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.619927 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.619987 read(4, "", 4096)       = 0
17:47:03.620016 close(4)                = 0
17:47:03.620042 munmap(0x7fe35854b000, 4096) = 0
17:47:03.620075 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.620113 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.622228 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.622271 writev(3, [{"5\1\4\0\337\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\340\1\300\3\337\1\300\3\0\0\0\0H\1\26\0\337\1\300\3\340\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.622585 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.622622 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.622711 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.622754 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.622791 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.622827 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.622863 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.622898 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.622928 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.622968 close(4)                = 0
17:47:03.622995 munmap(0x7fe35854b000, 4096) = 0
17:47:03.623029 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.623067 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.623104 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.623139 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.623175 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.623208 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.623243 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.623272 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.623312 read(4, "", 4096)       = 0
17:47:03.623339 close(4)                = 0
17:47:03.623365 munmap(0x7fe35854b000, 4096) = 0
17:47:03.623398 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.623435 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.624243 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.624282 writev(3, [{"5\1\4\0\344\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\345\1\300\3\344\1\300\3\0\0\0\0H\1\26\0\344\1\300\3\345\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.624510 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.624547 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.625952 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.625990 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.626043 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.626086 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.626124 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.626161 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.626206 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.626242 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.626272 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.626307 close(4)                = 0
17:47:03.626334 munmap(0x7fe35854b000, 4096) = 0
17:47:03.626368 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.626406 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.626443 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.626478 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.626514 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.626547 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.626582 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.626611 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.626651 read(4, "", 4096)       = 0
17:47:03.626678 close(4)                = 0
17:47:03.626704 munmap(0x7fe35854b000, 4096) = 0
17:47:03.626736 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.626773 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.628810 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.628849 writev(3, [{"5\1\4\0\351\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\352\1\300\3\351\1\300\3\0\0\0\0H\1\26\0\351\1\300\3\352\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.629081 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.629120 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.629173 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.629215 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.629251 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.629288 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.629323 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.629359 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.629388 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.629423 close(4)                = 0
17:47:03.629450 munmap(0x7fe35854b000, 4096) = 0
17:47:03.629483 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.629521 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.629558 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.629594 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.629631 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.629664 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.629698 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.629727 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.629767 read(4, "", 4096)       = 0
17:47:03.629794 close(4)                = 0
17:47:03.629821 munmap(0x7fe35854b000, 4096) = 0
17:47:03.629853 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.629900 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.630828 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.630868 writev(3, [{"5\1\4\0\356\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\357\1\300\3\356\1\300\3\0\0\0\0H\1\26\0\356\1\300\3\357\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.631098 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.631135 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.632471 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.632509 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.632563 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.632606 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.632642 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.632679 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.632714 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.632750 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.632779 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.632815 close(4)                = 0
17:47:03.632843 munmap(0x7fe35854b000, 4096) = 0
17:47:03.632876 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.632914 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.632951 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.632985 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.633022 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.633054 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.633089 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.633118 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.633157 read(4, "", 4096)       = 0
17:47:03.633184 close(4)                = 0
17:47:03.633211 munmap(0x7fe35854b000, 4096) = 0
17:47:03.633243 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.633280 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.635292 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.635330 writev(3, [{"5\1\4\0\363\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\364\1\300\3\363\1\300\3\0\0\0\0H\1\26\0\363\1\300\3\364\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.635558 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.635584 rt_sigreturn(0xe)       = 328
17:47:03.635617 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.635649 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.635701 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.635742 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.635778 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.635814 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.635849 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.635884 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.635929 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.635965 close(4)                = 0
17:47:03.635992 munmap(0x7fe35854b000, 4096) = 0
17:47:03.636025 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.636064 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.636100 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.636144 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.636183 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.636217 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.636252 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.636281 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.636321 read(4, "", 4096)       = 0
17:47:03.636348 close(4)                = 0
17:47:03.636375 munmap(0x7fe35854b000, 4096) = 0
17:47:03.636407 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.636445 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.637278 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.637319 writev(3, [{"5\1\4\0\370\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\371\1\300\3\370\1\300\3\0\0\0\0H\1\26\0\370\1\300\3\371\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.637545 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.637582 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.638988 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.639026 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.639080 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.639124 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.639162 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.639198 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.639234 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.639270 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.639300 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.639335 close(4)                = 0
17:47:03.639362 munmap(0x7fe35854b000, 4096) = 0
17:47:03.639396 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.639434 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.639471 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.639506 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.639542 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.639575 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.639610 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.639639 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.639678 read(4, "", 4096)       = 0
17:47:03.639706 close(4)                = 0
17:47:03.639732 munmap(0x7fe35854b000, 4096) = 0
17:47:03.639764 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.639811 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.641715 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.641754 writev(3, [{"5\1\4\0\375\1\300\3\16\1\0\0\20\0\20\0007\0\4\0\376\1\300\3\375\1\300\3\0\0\0\0H\1\26\0\375\1\300\3\376\1\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.641957 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.642021 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.642341 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.642378 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.642430 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.642470 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.642506 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.642543 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.642579 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.642614 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.642644 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.642680 close(4)                = 0
17:47:03.642707 munmap(0x7fe35854b000, 4096) = 0
17:47:03.642740 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.642779 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.642815 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.642850 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.642886 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.642919 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.642954 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.642983 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.643022 read(4, "", 4096)       = 0
17:47:03.643050 close(4)                = 0
17:47:03.643077 munmap(0x7fe35854b000, 4096) = 0
17:47:03.643109 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.643146 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.645173 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.645214 writev(3, [{"5\1\4\0\2\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\3\2\300\3\2\2\300\3\0\0\0\0H\1\26\0\2\2\300\3\3\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.645443 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.645486 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.645542 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.645586 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.645623 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.645660 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.645695 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.645731 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.645760 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.645795 close(4)                = 0
17:47:03.645832 munmap(0x7fe35854b000, 4096) = 0
17:47:03.645866 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.645904 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.645941 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.645976 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.646013 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.646046 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.646081 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.646110 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.646149 read(4, "", 4096)       = 0
17:47:03.646177 close(4)                = 0
17:47:03.646203 munmap(0x7fe35854b000, 4096) = 0
17:47:03.646236 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.646273 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.646602 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.646640 writev(3, [{"5\1\4\0\7\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\10\2\300\3\7\2\300\3\0\0\0\0H\1\26\0\7\2\300\3\10\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.646837 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.646879 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.648911 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.648949 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.649032 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.649068 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.649120 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.649161 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.649196 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.649232 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.649268 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.649303 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.649333 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.649368 close(4)                = 0
17:47:03.649396 munmap(0x7fe35854b000, 4096) = 0
17:47:03.649429 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.649467 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.649503 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.649538 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.649574 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.649606 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.649641 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.649670 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.649710 read(4, "", 4096)       = 0
17:47:03.649737 close(4)                = 0
17:47:03.649763 munmap(0x7fe35854b000, 4096) = 0
17:47:03.649795 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.649842 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.651332 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.651370 writev(3, [{"5\1\4\0\f\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\r\2\300\3\f\2\300\3\0\0\0\0H\1\26\0\f\2\300\3\r\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.651600 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.651640 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.652388 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.652425 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.652475 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.652514 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.652549 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.652584 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.652618 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.652653 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.652682 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.652716 close(4)                = 0
17:47:03.652742 munmap(0x7fe35854b000, 4096) = 0
17:47:03.652773 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.652810 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.652845 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.652880 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.652915 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.652946 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.652980 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.653008 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.653046 read(4, "", 4096)       = 0
17:47:03.653072 close(4)                = 0
17:47:03.653098 munmap(0x7fe35854b000, 4096) = 0
17:47:03.653128 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.653165 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.654003 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.654040 writev(3, [{"5\1\4\0\21\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\22\2\300\3\21\2\300\3\0\0\0\0H\1\26\0\21\2\300\3\22\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.654264 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.654301 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.655493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.655519 rt_sigreturn(0xe)       = 12957028
17:47:03.655658 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.655693 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.656010 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.656045 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.656095 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.656140 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.656180 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.656225 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.656259 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.656292 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.656320 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.656360 close(4)                = 0
17:47:03.656385 munmap(0x7fe35854b000, 4096) = 0
17:47:03.656418 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.656453 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.656487 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.656519 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.656552 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.656582 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.656615 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.656641 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.656678 read(4, "", 4096)       = 0
17:47:03.656703 close(4)                = 0
17:47:03.656727 munmap(0x7fe35854b000, 4096) = 0
17:47:03.656757 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.656791 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.657491 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.657527 writev(3, [{"5\1\4\0\26\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\27\2\300\3\26\2\300\3\0\0\0\0H\1\26\0\26\2\300\3\27\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.657752 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.657786 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.658328 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.658363 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.659407 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.659441 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.659753 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.659786 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.659833 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.659871 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.659904 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.659937 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.659970 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.660004 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.660030 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.660063 close(4)                = 0
17:47:03.660088 munmap(0x7fe35854b000, 4096) = 0
17:47:03.660119 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.660164 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.660199 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.660231 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.660264 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.660304 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.660337 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.660363 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.660400 read(4, "", 4096)       = 0
17:47:03.660426 close(4)                = 0
17:47:03.660449 munmap(0x7fe35854b000, 4096) = 0
17:47:03.660480 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.660514 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.660825 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.660861 writev(3, [{"5\1\4\0\33\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\34\2\300\3\33\2\300\3\0\0\0\0H\1\26\0\33\2\300\3\34\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.661088 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.661125 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.661528 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.661561 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.661995 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.662028 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.662328 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.662361 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.662651 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.662684 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.662979 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.663015 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.663375 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.663409 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.663722 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.663755 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.664079 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.664112 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.664517 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.664551 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.664901 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.664941 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.675508 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.675574 rt_sigreturn(0xe)       = 20
17:47:03.676038 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.676081 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.676518 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.676555 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.676625 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.676671 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.676706 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.676742 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.676781 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.676816 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.676848 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.676888 close(4)                = 0
17:47:03.676914 munmap(0x7fe35854b000, 4096) = 0
17:47:03.676950 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.676987 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.677039 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.677072 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.677107 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.677138 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.677171 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.677198 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.677235 read(4, "", 4096)       = 0
17:47:03.677260 close(4)                = 0
17:47:03.677284 munmap(0x7fe35854b000, 4096) = 0
17:47:03.677314 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.677348 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.679509 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.679550 writev(3, [{"5\1\4\0 \2\300\3\16\1\0\0\20\0\20\0007\0\4\0!\2\300\3 \2\300\3\0\0\0\0H\1\26\0 \2\300\3!\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.679856 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.679887 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.679941 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.679989 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.680024 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.680057 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.680090 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.680124 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.680182 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.680217 close(4)                = 0
17:47:03.680247 munmap(0x7fe35854b000, 4096) = 0
17:47:03.680279 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.680315 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.680350 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.680382 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.680417 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.680451 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.680485 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.680511 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.680549 read(4, "", 4096)       = 0
17:47:03.680574 close(4)                = 0
17:47:03.680598 munmap(0x7fe35854b000, 4096) = 0
17:47:03.680628 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.680663 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.682798 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.682836 writev(3, [{"5\1\4\0%\2\300\3\16\1\0\0\20\0\20\0007\0\4\0&\2\300\3%\2\300\3\0\0\0\0H\1\26\0%\2\300\3&\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.683037 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.683100 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.683259 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.683297 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.683346 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.683384 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.683417 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.683450 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.683483 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.683516 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.683543 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.683576 close(4)                = 0
17:47:03.683601 munmap(0x7fe35854b000, 4096) = 0
17:47:03.683631 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.683667 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.683701 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.683733 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.683766 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.683797 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.683829 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.683856 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.683892 read(4, "", 4096)       = 0
17:47:03.683917 close(4)                = 0
17:47:03.683941 munmap(0x7fe35854b000, 4096) = 0
17:47:03.683970 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.684004 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.686048 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.686084 writev(3, [{"5\1\4\0*\2\300\3\16\1\0\0\20\0\20\0007\0\4\0+\2\300\3*\2\300\3\0\0\0\0H\1\26\0*\2\300\3+\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.686315 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.686352 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.686401 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.686440 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.686473 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.686506 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.686540 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.686574 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.686602 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.686634 close(4)                = 0
17:47:03.686659 munmap(0x7fe35854b000, 4096) = 0
17:47:03.686690 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.686725 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.686759 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.686791 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.686834 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.686866 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.686898 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.686925 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.686965 read(4, "", 4096)       = 0
17:47:03.686990 close(4)                = 0
17:47:03.687014 munmap(0x7fe35854b000, 4096) = 0
17:47:03.687044 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.687079 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.688955 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.688993 writev(3, [{"5\1\4\0/\2\300\3\16\1\0\0\20\0\20\0007\0\4\0000\2\300\3/\2\300\3\0\0\0\0H\1\26\0/\2\300\0030\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.689199 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.689258 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.689621 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.689655 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.689703 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.689741 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.689774 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.689812 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.689846 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.689880 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.689907 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.689940 close(4)                = 0
17:47:03.689964 munmap(0x7fe35854b000, 4096) = 0
17:47:03.690001 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.690037 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.690071 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.690103 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.690137 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.690167 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.690200 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.690226 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.690263 read(4, "", 4096)       = 0
17:47:03.690288 close(4)                = 0
17:47:03.690312 munmap(0x7fe35854b000, 4096) = 0
17:47:03.690342 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.690377 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.692419 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.692458 writev(3, [{"5\1\4\0004\2\300\3\16\1\0\0\20\0\20\0007\0\4\0005\2\300\0034\2\300\3\0\0\0\0H\1\26\0004\2\300\0035\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.692662 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.692703 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.692754 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.692801 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.692836 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.692873 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.692906 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.692939 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.692967 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.693000 close(4)                = 0
17:47:03.693024 munmap(0x7fe35854b000, 4096) = 0
17:47:03.693055 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.693091 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.693125 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.693157 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.693190 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.693220 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.693253 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.693279 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.693316 read(4, "", 4096)       = 0
17:47:03.693341 close(4)                = 0
17:47:03.693365 munmap(0x7fe35854b000, 4096) = 0
17:47:03.693394 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.693429 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.694219 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.694255 writev(3, [{"5\1\4\0009\2\300\3\16\1\0\0\20\0\20\0007\0\4\0:\2\300\0039\2\300\3\0\0\0\0H\1\26\0009\2\300\3:\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.694453 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.694494 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.695493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.695516 rt_sigreturn(0xe)       = 16
17:47:03.695987 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.696021 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.696069 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.696106 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.696153 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.696189 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.696223 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.696256 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.696283 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.696316 close(4)                = 0
17:47:03.696341 munmap(0x7fe35854b000, 4096) = 0
17:47:03.696371 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.696407 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.696440 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.696472 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.696506 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.696550 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.696584 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.696611 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.696648 read(4, "", 4096)       = 0
17:47:03.696677 close(4)                = 0
17:47:03.696702 munmap(0x7fe35854b000, 4096) = 0
17:47:03.696732 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.696767 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.697740 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.697777 writev(3, [{"5\1\4\0>\2\300\3\16\1\0\0\20\0\20\0007\0\4\0?\2\300\3>\2\300\3\0\0\0\0H\1\26\0>\2\300\3?\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.698000 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.698035 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.699268 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.699303 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.699351 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.699394 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.699428 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.699462 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.699494 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.699531 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.699559 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.699592 close(4)                = 0
17:47:03.699616 munmap(0x7fe35854b000, 4096) = 0
17:47:03.699647 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.699682 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.699716 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.699748 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.699782 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.699812 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.699845 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.699871 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.699908 read(4, "", 4096)       = 0
17:47:03.699933 close(4)                = 0
17:47:03.699957 munmap(0x7fe35854b000, 4096) = 0
17:47:03.699987 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.700022 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.701037 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.701074 writev(3, [{"5\1\4\0C\2\300\3\16\1\0\0\20\0\20\0007\0\4\0D\2\300\3C\2\300\3\0\0\0\0H\1\26\0C\2\300\3D\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.701303 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.701337 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.702579 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.702615 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.702665 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.702716 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.702750 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.702783 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.702817 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.702850 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.702877 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.702910 close(4)                = 0
17:47:03.702935 munmap(0x7fe35854b000, 4096) = 0
17:47:03.702965 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.703001 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.703035 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.703067 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.703100 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.703131 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.703163 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.703190 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.703231 read(4, "", 4096)       = 0
17:47:03.703256 close(4)                = 0
17:47:03.703280 munmap(0x7fe35854b000, 4096) = 0
17:47:03.703309 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.703347 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.704124 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.704178 writev(3, [{"5\1\4\0H\2\300\3\16\1\0\0\20\0\20\0007\0\4\0I\2\300\3H\2\300\3\0\0\0\0H\1\26\0H\2\300\3I\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.704407 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.704441 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.705813 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.705848 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.706095 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.706128 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.706176 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.706218 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.706253 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.706286 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.706319 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.706353 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.706380 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.706412 close(4)                = 0
17:47:03.706437 munmap(0x7fe35854b000, 4096) = 0
17:47:03.706467 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.706503 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.706537 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.706569 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.706612 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.706644 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.706676 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.706703 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.706740 read(4, "", 4096)       = 0
17:47:03.706765 close(4)                = 0
17:47:03.706789 munmap(0x7fe35854b000, 4096) = 0
17:47:03.706818 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.706853 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.707657 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.707693 writev(3, [{"5\1\4\0M\2\300\3\16\1\0\0\20\0\20\0007\0\4\0N\2\300\3M\2\300\3\0\0\0\0H\1\26\0M\2\300\3N\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.707889 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.707929 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.708910 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.708946 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.709808 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.709852 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.709910 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.709951 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.709985 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.710019 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.710059 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.710094 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.710122 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.710157 close(4)                = 0
17:47:03.710182 munmap(0x7fe35854b000, 4096) = 0
17:47:03.710214 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.710250 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.710285 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.710317 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.710351 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.710382 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.710414 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.710441 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.710478 read(4, "", 4096)       = 0
17:47:03.710503 close(4)                = 0
17:47:03.710527 munmap(0x7fe35854b000, 4096) = 0
17:47:03.710557 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.710592 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.710953 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.710992 writev(3, [{"5\1\4\0R\2\300\3\16\1\0\0\20\0\20\0007\0\4\0S\2\300\3R\2\300\3\0\0\0\0H\1\26\0R\2\300\3S\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.711219 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.711285 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.711898 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.711932 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.712321 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.712355 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.712903 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.712941 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.713704 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.713739 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.714077 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.714111 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.714354 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.714387 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.714472 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.714503 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.714550 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.714588 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.714621 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.714658 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.714692 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.714726 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.714753 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.714787 close(4)                = 0
17:47:03.714812 munmap(0x7fe35854b000, 4096) = 0
17:47:03.714848 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.714885 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.714918 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.714951 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.714985 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.715015 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.715048 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.715074 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.715111 read(4, "", 4096)       = 0
17:47:03.715136 close(4)                = 0
17:47:03.715160 munmap(0x7fe35854b000, 4096) = 0
17:47:03.715190 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.715226 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.715472 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.715510 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.715528 rt_sigreturn(0xe)       = 1
17:47:03.715553 writev(3, [{"5\1\4\0W\2\300\3\16\1\0\0\20\0\20\0007\0\4\0X\2\300\3W\2\300\3\0\0\0\0H\1\26\0W\2\300\3X\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.715784 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.715819 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.716038 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.716070 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.716278 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.716311 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.716516 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.716549 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.716785 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.716820 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.717026 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.717058 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.717262 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.717294 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.717486 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.717519 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.717742 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.717774 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.718008 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.718044 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.718262 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.718294 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.718523 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.718555 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.718731 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.718763 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.718953 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.718985 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.719159 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.719191 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.719362 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.719394 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.730500 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.730584 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.732257 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.732294 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.732365 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.732412 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.732448 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.732484 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.732522 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.732557 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.732590 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.732624 close(4)                = 0
17:47:03.732651 munmap(0x7fe35854b000, 4096) = 0
17:47:03.732685 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.732721 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.732755 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.732788 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.732823 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.732858 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.732891 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.732918 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.732955 read(4, "", 4096)       = 0
17:47:03.732980 close(4)                = 0
17:47:03.733009 munmap(0x7fe35854b000, 4096) = 0
17:47:03.733059 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.733094 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.735226 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.735267 writev(3, [{"5\1\4\0\\\2\300\3\16\1\0\0\20\0\20\0007\0\4\0]\2\300\3\\\2\300\3\0\0\0\0H\1\26\0\\\2\300\3]\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.735575 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.735596 rt_sigreturn(0xe)       = 328
17:47:03.735624 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.735688 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.735744 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.735783 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.735816 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.735852 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.735889 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.735923 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.735950 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.735983 close(4)                = 0
17:47:03.736008 munmap(0x7fe35854b000, 4096) = 0
17:47:03.736039 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.736074 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.736108 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.736166 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.736203 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.736233 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.736266 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.736293 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.736329 read(4, "", 4096)       = 0
17:47:03.736354 close(4)                = 0
17:47:03.736378 munmap(0x7fe35854b000, 4096) = 0
17:47:03.736408 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.736442 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.737266 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.737303 writev(3, [{"5\1\4\0a\2\300\3\16\1\0\0\20\0\20\0007\0\4\0b\2\300\3a\2\300\3\0\0\0\0H\1\26\0a\2\300\3b\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.737501 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.737559 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.738968 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.739002 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.739050 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.739088 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.739121 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.739155 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.739187 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.739230 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.739258 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.739291 close(4)                = 0
17:47:03.739316 munmap(0x7fe35854b000, 4096) = 0
17:47:03.739347 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.739382 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.739416 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.739448 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.739481 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.739511 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.739549 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.739576 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.739613 read(4, "", 4096)       = 0
17:47:03.739638 close(4)                = 0
17:47:03.739661 munmap(0x7fe35854b000, 4096) = 0
17:47:03.739695 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.739732 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.741775 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.741813 writev(3, [{"5\1\4\0f\2\300\3\16\1\0\0\20\0\20\0007\0\4\0g\2\300\3f\2\300\3\0\0\0\0H\1\26\0f\2\300\3g\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.742011 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.742069 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.742119 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.742157 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.742190 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.742223 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.742257 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.742290 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.742318 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.742352 close(4)                = 0
17:47:03.742377 munmap(0x7fe35854b000, 4096) = 0
17:47:03.742412 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.742448 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.742482 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.742515 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.742553 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.742587 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.742620 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.742647 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.742683 read(4, "", 4096)       = 0
17:47:03.742708 close(4)                = 0
17:47:03.742732 munmap(0x7fe35854b000, 4096) = 0
17:47:03.742763 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.742797 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.743595 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.743639 writev(3, [{"5\1\4\0k\2\300\3\16\1\0\0\20\0\20\0007\0\4\0l\2\300\3k\2\300\3\0\0\0\0H\1\26\0k\2\300\3l\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.743864 read(3, "\6\0{\6\177H\215\10\16\1\0\0\2\0\300\3\0\0\0\0\251\3\f\2s\3\334\1\20\0\1\0", 4096) = 32
17:47:03.743908 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.743941 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.743968 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.745454 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.745490 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.745539 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.745579 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.745614 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.745647 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.745680 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.745713 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.745741 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.745773 close(4)                = 0
17:47:03.745798 munmap(0x7fe35854b000, 4096) = 0
17:47:03.745829 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.745865 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.745899 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.745931 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.745965 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.745996 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.746028 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.746055 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.746092 read(4, "", 4096)       = 0
17:47:03.746117 close(4)                = 0
17:47:03.746141 munmap(0x7fe35854b000, 4096) = 0
17:47:03.746171 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.746205 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.748093 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.748146 writev(3, [{"5\1\4\0p\2\300\3\16\1\0\0\20\0\20\0007\0\4\0q\2\300\3p\2\300\3\0\0\0\0H\1\26\0p\2\300\3q\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.748387 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.748423 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.748737 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.748769 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.748817 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.748855 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.748888 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.748922 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.748955 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.748999 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.749026 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.749059 close(4)                = 0
17:47:03.749083 munmap(0x7fe35854b000, 4096) = 0
17:47:03.749117 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.749155 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.749189 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.749221 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.749262 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.749294 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.749327 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.749354 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.749391 read(4, "", 4096)       = 0
17:47:03.749416 close(4)                = 0
17:47:03.749440 munmap(0x7fe35854b000, 4096) = 0
17:47:03.749470 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.749505 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.751535 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.751572 writev(3, [{"5\1\4\0u\2\300\3\16\1\0\0\20\0\20\0007\0\4\0v\2\300\3u\2\300\3\0\0\0\0H\1\26\0u\2\300\3v\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.751794 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.751829 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.751877 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.751915 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.751948 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.751985 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.752020 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.752053 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.752080 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.752117 close(4)                = 0
17:47:03.752151 munmap(0x7fe35854b000, 4096) = 0
17:47:03.752182 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.752218 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.752252 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.752285 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.752319 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.752349 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.752382 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.752409 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.752445 read(4, "", 4096)       = 0
17:47:03.752470 close(4)                = 0
17:47:03.752494 munmap(0x7fe35854b000, 4096) = 0
17:47:03.752524 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.752558 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.752908 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.752945 writev(3, [{"5\1\4\0z\2\300\3\16\1\0\0\20\0\20\0007\0\4\0{\2\300\3z\2\300\3\0\0\0\0H\1\26\0z\2\300\3{\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.753147 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.753187 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.755087 read(3, "\6\0\257\6\211H\215\10\16\1\0\0\2\0\300\3\0\0\0\0\273\3\1\2\205\3\321\1\20\0\1\0", 4096) = 32
17:47:03.755133 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.755164 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.755191 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.755222 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.755249 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.755281 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.755308 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.755355 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.755393 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.755426 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.755460 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.755492 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.755508 rt_sigreturn(0xe)       = 4
17:47:03.755533 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.755566 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.755593 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.755625 close(4)                = 0
17:47:03.755650 munmap(0x7fe35854b000, 4096) = 0
17:47:03.755680 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.755716 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.755750 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.755782 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.755816 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.755847 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.755880 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.755906 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.755949 read(4, "", 4096)       = 0
17:47:03.755974 close(4)                = 0
17:47:03.755998 munmap(0x7fe35854b000, 4096) = 0
17:47:03.756028 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.756062 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.756355 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.756393 writev(3, [{"5\1\4\0\177\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\200\2\300\3\177\2\300\3\0\0\0\0H\1\26\0\177\2\300\3\200\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.756617 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.756651 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.758422 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.758457 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.758775 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.758821 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.758872 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.758910 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.758943 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.758976 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.759010 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.759043 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.759070 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.759103 close(4)                = 0
17:47:03.759128 munmap(0x7fe35854b000, 4096) = 0
17:47:03.759158 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.759194 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.759228 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.759261 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.759294 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.759324 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.759357 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.759383 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.759419 read(4, "", 4096)       = 0
17:47:03.759444 close(4)                = 0
17:47:03.759468 munmap(0x7fe35854b000, 4096) = 0
17:47:03.759498 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.759532 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.760482 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.760519 writev(3, [{"5\1\4\0\204\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\205\2\300\3\204\2\300\3\0\0\0\0H\1\26\0\204\2\300\3\205\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.760748 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.760784 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.762083 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.762119 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.762170 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.762209 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.762243 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.762276 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.762308 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.762342 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.762369 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.762401 close(4)                = 0
17:47:03.762426 munmap(0x7fe35854b000, 4096) = 0
17:47:03.762456 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.762492 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.762525 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.762557 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.762601 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.762639 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.762672 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.762699 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.762735 read(4, "", 4096)       = 0
17:47:03.762760 close(4)                = 0
17:47:03.762784 munmap(0x7fe35854b000, 4096) = 0
17:47:03.762814 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.762848 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.763069 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.763105 writev(3, [{"5\1\4\0\211\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\212\2\300\3\211\2\300\3\0\0\0\0H\1\26\0\211\2\300\3\212\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.763327 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.763361 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.764190 read(3, "\6\0\326\6\223H\215\10\16\1\0\0\2\0\300\3\0\0\0\0\326\3\363\1\240\3\303\1\20\0\1\0", 4096) = 32
17:47:03.764234 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.764264 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.764291 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.765048 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.765084 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.765982 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.766018 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.766110 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.766141 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.766189 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.766227 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.766260 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.766294 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.766327 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.766360 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.766387 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.766420 close(4)                = 0
17:47:03.766447 munmap(0x7fe35854b000, 4096) = 0
17:47:03.766479 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.766515 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.766549 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.766581 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.766614 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.766645 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.766677 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.766704 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.766740 read(4, "", 4096)       = 0
17:47:03.766765 close(4)                = 0
17:47:03.766789 munmap(0x7fe35854b000, 4096) = 0
17:47:03.766818 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.766862 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.767341 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.767377 writev(3, [{"5\1\4\0\216\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\217\2\300\3\216\2\300\3\0\0\0\0H\1\26\0\216\2\300\3\217\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.767603 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.767637 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.768117 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.768157 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.768475 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.768508 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.768815 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.768847 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.769315 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.769350 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.769861 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.769893 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.775504 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.775567 rt_sigreturn(0xe)       = 8900680
17:47:03.781695 read(3, "\6\0\343\6\236H\215\10\16\1\0\0\2\0\300\3\0\0\0\0\367\3\340\1\301\3\260\1\20\0\1\0", 4096) = 32
17:47:03.781804 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.781844 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.781875 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.782260 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.782300 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.782370 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.782414 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.782447 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.782482 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.782522 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.782557 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.782590 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.782624 close(4)                = 0
17:47:03.782650 munmap(0x7fe35854b000, 4096) = 0
17:47:03.782686 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.782723 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.782762 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.782795 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.782830 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.782861 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.782895 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.782922 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.782960 read(4, "", 4096)       = 0
17:47:03.782986 close(4)                = 0
17:47:03.783010 munmap(0x7fe35854b000, 4096) = 0
17:47:03.783041 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.783076 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.785341 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLIN|POLLOUT}])
17:47:03.785383 read(3, "\6\0\343\6\250H\215\10\16\1\0\0\2\0\300\3\0\0\0\0\26\4\317\1\340\3\237\1\20\0\1\0", 4096) = 32
17:47:03.785419 writev(3, [{"5\1\4\0\223\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\224\2\300\3\223\2\300\3\0\0\0\0H\1\26\0\223\2\300\3\224\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.785658 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.785690 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.785717 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.785807 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.785837 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.785870 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.785898 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.785946 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.785985 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.786018 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.786051 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.786084 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.786118 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.786145 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.786178 close(4)                = 0
17:47:03.786203 munmap(0x7fe35854b000, 4096) = 0
17:47:03.786234 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.786269 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.786303 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.786335 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.786368 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.786399 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.786431 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.786458 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.786494 read(4, "", 4096)       = 0
17:47:03.786519 close(4)                = 0
17:47:03.786543 munmap(0x7fe35854b000, 4096) = 0
17:47:03.786573 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.786607 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.788741 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.788780 writev(3, [{"5\1\4\0\230\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\231\2\300\3\230\2\300\3\0\0\0\0H\1\26\0\230\2\300\3\231\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.789006 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.789042 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.789185 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.789217 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.789266 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.789304 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.789337 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.789381 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.789415 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.789448 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.789476 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.789508 close(4)                = 0
17:47:03.789533 munmap(0x7fe35854b000, 4096) = 0
17:47:03.789570 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.789606 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.789640 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.789672 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.789706 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.789737 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.789769 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.789796 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.789833 read(4, "", 4096)       = 0
17:47:03.789858 close(4)                = 0
17:47:03.789882 munmap(0x7fe35854b000, 4096) = 0
17:47:03.789912 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.789946 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.791970 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.792007 writev(3, [{"5\1\4\0\235\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\236\2\300\3\235\2\300\3\0\0\0\0H\1\26\0\235\2\300\3\236\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.792213 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.792253 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.792305 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.792343 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.792376 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.792409 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.792447 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.792481 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.792508 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.792541 close(4)                = 0
17:47:03.792570 munmap(0x7fe35854b000, 4096) = 0
17:47:03.792602 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.792637 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.792671 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.792703 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.792737 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.792767 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.792800 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.792826 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.792863 read(4, "", 4096)       = 0
17:47:03.792888 close(4)                = 0
17:47:03.792912 munmap(0x7fe35854b000, 4096) = 0
17:47:03.792951 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.792986 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.794890 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLIN|POLLOUT}])
17:47:03.794941 read(3, "\6\0\n\7\262H\215\10\16\1\0\0\2\0\300\3\0\0\0\0004\4\272\1\376\3\212\1\20\0\1\0", 4096) = 32
17:47:03.794983 writev(3, [{"5\1\4\0\242\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\243\2\300\3\242\2\300\3\0\0\0\0H\1\26\0\242\2\300\3\243\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.795178 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.795236 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.795265 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.795491 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.795513 rt_sigreturn(0xe)       = 5
17:47:03.795641 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.795673 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.795722 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.795760 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.795793 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.795826 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.795858 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.795891 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.795918 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.795951 close(4)                = 0
17:47:03.795976 munmap(0x7fe35854b000, 4096) = 0
17:47:03.796007 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.796042 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.796076 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.796108 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.796156 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.796189 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.796222 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.796251 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.796292 read(4, "", 4096)       = 0
17:47:03.796318 close(4)                = 0
17:47:03.796342 munmap(0x7fe35854b000, 4096) = 0
17:47:03.796372 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.796407 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.798431 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.798469 writev(3, [{"5\1\4\0\247\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\250\2\300\3\247\2\300\3\0\0\0\0H\1\26\0\247\2\300\3\250\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.798694 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.798729 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.798779 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.798817 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.798850 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.798893 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.798927 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.798960 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.798987 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.799019 close(4)                = 0
17:47:03.799044 munmap(0x7fe35854b000, 4096) = 0
17:47:03.799075 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.799111 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.799149 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.799182 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.799216 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.799246 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.799279 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.799305 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.799342 read(4, "", 4096)       = 0
17:47:03.799367 close(4)                = 0
17:47:03.799391 munmap(0x7fe35854b000, 4096) = 0
17:47:03.799421 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.799455 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.800349 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.800387 writev(3, [{"5\1\4\0\254\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\255\2\300\3\254\2\300\3\0\0\0\0H\1\26\0\254\2\300\3\255\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.800610 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.800644 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.801973 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.802012 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.802063 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.802101 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.802134 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.802168 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.802201 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.802234 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.802261 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.802293 close(4)                = 0
17:47:03.802318 munmap(0x7fe35854b000, 4096) = 0
17:47:03.802348 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.802384 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.802417 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.802449 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.802482 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.802512 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.802545 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.802571 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.802617 read(4, "", 4096)       = 0
17:47:03.802643 close(4)                = 0
17:47:03.802666 munmap(0x7fe35854b000, 4096) = 0
17:47:03.802696 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.802731 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.804108 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.804151 writev(3, [{"5\1\4\0\261\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\262\2\300\3\261\2\300\3\0\0\0\0H\1\26\0\261\2\300\3\262\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.804376 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.804412 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.805329 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.805368 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.805428 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.805477 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.805520 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.805559 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.805598 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.805636 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.805666 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.805702 close(4)                = 0
17:47:03.805727 munmap(0x7fe35854b000, 4096) = 0
17:47:03.805759 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.805805 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.805849 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.805883 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.805987 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.806021 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.806055 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.806082 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.806120 read(4, "", 4096)       = 0
17:47:03.806145 close(4)                = 0
17:47:03.806169 munmap(0x7fe35854b000, 4096) = 0
17:47:03.806200 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.806235 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.807652 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.807690 writev(3, [{"5\1\4\0\266\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\267\2\300\3\266\2\300\3\0\0\0\0H\1\26\0\266\2\300\3\267\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.807787 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.807818 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.808649 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.808685 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.808737 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.808777 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.808813 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.808858 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.808892 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.808926 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.808953 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.808986 close(4)                = 0
17:47:03.809011 munmap(0x7fe35854b000, 4096) = 0
17:47:03.809041 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.809078 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.809112 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.809144 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.809177 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.809208 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.809240 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.809267 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.809303 read(4, "", 4096)       = 0
17:47:03.809328 close(4)                = 0
17:47:03.809352 munmap(0x7fe35854b000, 4096) = 0
17:47:03.809381 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.809416 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.810389 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.810425 writev(3, [{"5\1\4\0\273\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\274\2\300\3\273\2\300\3\0\0\0\0H\1\26\0\273\2\300\3\274\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.810516 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.810546 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.811773 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.811807 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.811857 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.811896 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.811930 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.811963 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.811996 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.812030 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.812057 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.812089 close(4)                = 0
17:47:03.812114 munmap(0x7fe35854b000, 4096) = 0
17:47:03.812150 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.812187 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.812222 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.812254 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.812288 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.812318 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.812351 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.812377 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.812422 read(4, "", 4096)       = 0
17:47:03.812448 close(4)                = 0
17:47:03.812472 munmap(0x7fe35854b000, 4096) = 0
17:47:03.812501 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.812536 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.813124 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.813160 writev(3, [{"5\1\4\0\300\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\301\2\300\3\300\2\300\3\0\0\0\0H\1\26\0\300\2\300\3\301\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.813252 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.813282 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.814199 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.814234 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.815127 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.815160 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.815209 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.815247 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.815281 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.815314 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.815347 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.815381 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.815477 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.815523 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.815544 rt_sigreturn(0xe)       = 32
17:47:03.815576 close(4)                = 0
17:47:03.815607 munmap(0x7fe35854b000, 4096) = 0
17:47:03.815643 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.815681 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.815716 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.815748 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.815782 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.815813 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.815846 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.815872 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.815909 read(4, "", 4096)       = 0
17:47:03.815934 close(4)                = 0
17:47:03.815959 munmap(0x7fe35854b000, 4096) = 0
17:47:03.815988 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.816023 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.816468 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.816504 writev(3, [{"5\1\4\0\305\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\306\2\300\3\305\2\300\3\0\0\0\0H\1\26\0\305\2\300\3\306\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.816598 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.816628 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.817258 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.817291 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.817903 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.817947 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.818734 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.818769 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.819072 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.819104 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.819153 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.819191 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.819224 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.819257 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.819290 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.819324 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.819351 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.819383 close(4)                = 0
17:47:03.819407 munmap(0x7fe35854b000, 4096) = 0
17:47:03.819438 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.819473 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.819507 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.819539 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.819572 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.819603 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.819635 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.819662 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.819698 read(4, "", 4096)       = 0
17:47:03.819723 close(4)                = 0
17:47:03.819747 munmap(0x7fe35854b000, 4096) = 0
17:47:03.819777 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.819811 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.820062 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.820098 writev(3, [{"5\1\4\0\312\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\313\2\300\3\312\2\300\3\0\0\0\0H\1\26\0\312\2\300\3\313\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.820200 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.820231 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.820593 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.820626 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.821002 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.821035 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.821367 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.821401 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.821661 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.821693 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.821949 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.821981 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.822237 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.822269 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.822495 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.822528 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.822703 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.822744 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.834394 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.834481 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.835499 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.835524 rt_sigreturn(0xe)       = 4359227
17:47:03.835840 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.835874 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.835964 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.836018 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.836056 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.836097 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.836153 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.836191 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.836224 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.836265 close(4)                = 0
17:47:03.836295 munmap(0x7fe35854b000, 4096) = 0
17:47:03.836336 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.836378 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.836418 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.836460 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.836503 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.836535 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.836569 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.836596 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.836633 read(4, "", 4096)       = 0
17:47:03.836659 close(4)                = 0
17:47:03.836684 munmap(0x7fe35854b000, 4096) = 0
17:47:03.836714 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.836749 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.838868 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.838906 writev(3, [{"5\1\4\0\317\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\320\2\300\3\317\2\300\3\0\0\0\0H\1\26\0\317\2\300\3\320\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.839029 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.839060 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.839110 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.839149 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.839182 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.839215 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.839249 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.839282 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.839309 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.839342 close(4)                = 0
17:47:03.839367 munmap(0x7fe35854b000, 4096) = 0
17:47:03.839398 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.839434 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.839486 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.839520 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.839553 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.839584 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.839617 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.839643 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.839680 read(4, "", 4096)       = 0
17:47:03.839705 close(4)                = 0
17:47:03.839729 munmap(0x7fe35854b000, 4096) = 0
17:47:03.839759 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.839794 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.841057 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.841097 writev(3, [{"5\1\4\0\324\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\325\2\300\3\324\2\300\3\0\0\0\0H\1\26\0\324\2\300\3\325\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.841191 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.841224 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.842198 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.842233 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.842284 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.842322 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.842355 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.842389 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.842422 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.842455 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.842482 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.842515 close(4)                = 0
17:47:03.842540 munmap(0x7fe35854b000, 4096) = 0
17:47:03.842571 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.842606 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.842640 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.842672 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.842706 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.842736 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.842769 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.842795 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.842832 read(4, "", 4096)       = 0
17:47:03.842856 close(4)                = 0
17:47:03.842880 munmap(0x7fe35854b000, 4096) = 0
17:47:03.842910 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.842944 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.844983 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.845023 writev(3, [{"5\1\4\0\331\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\332\2\300\3\331\2\300\3\0\0\0\0H\1\26\0\331\2\300\3\332\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.845126 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.845159 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.845211 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.845250 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.845283 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.845317 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.845350 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.845383 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.845410 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.845443 close(4)                = 0
17:47:03.845468 munmap(0x7fe35854b000, 4096) = 0
17:47:03.845498 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.845534 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.845568 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.845600 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.845633 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.845664 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.845697 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.845723 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.845760 read(4, "", 4096)       = 0
17:47:03.845785 close(4)                = 0
17:47:03.845809 munmap(0x7fe35854b000, 4096) = 0
17:47:03.845838 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.845874 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.847368 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.847408 writev(3, [{"5\1\4\0\336\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\337\2\300\3\336\2\300\3\0\0\0\0H\1\26\0\336\2\300\3\337\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.847500 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.847531 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.848272 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.848313 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.848370 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.848415 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.848456 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.848493 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.848529 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.848565 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.848594 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.848633 close(4)                = 0
17:47:03.848661 munmap(0x7fe35854b000, 4096) = 0
17:47:03.848694 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.848733 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.848779 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.848815 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.848852 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.848885 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.848920 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.848950 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.848989 read(4, "", 4096)       = 0
17:47:03.849017 close(4)                = 0
17:47:03.849044 munmap(0x7fe35854b000, 4096) = 0
17:47:03.849076 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.849114 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.851118 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.851156 writev(3, [{"5\1\4\0\343\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\344\2\300\3\343\2\300\3\0\0\0\0H\1\26\0\343\2\300\3\344\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.851252 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.851287 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.851341 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.851385 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.851421 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.851457 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.851492 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.851527 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.851557 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.851592 close(4)                = 0
17:47:03.851619 munmap(0x7fe35854b000, 4096) = 0
17:47:03.851652 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.851691 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.851727 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.851762 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.851799 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.851833 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.851868 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.851897 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.851937 read(4, "", 4096)       = 0
17:47:03.851965 close(4)                = 0
17:47:03.851991 munmap(0x7fe35854b000, 4096) = 0
17:47:03.852024 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.852061 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.852914 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.852955 writev(3, [{"5\1\4\0\350\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\351\2\300\3\350\2\300\3\0\0\0\0H\1\26\0\350\2\300\3\351\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.853049 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.853082 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.854444 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.854490 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.854545 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.854590 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.854627 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.854664 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.854699 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.854735 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.854765 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.854800 close(4)                = 0
17:47:03.854827 munmap(0x7fe35854b000, 4096) = 0
17:47:03.854860 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.854898 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.854935 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.854970 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.855010 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.855049 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.855088 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.855118 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.855166 read(4, "", 4096)       = 0
17:47:03.855195 close(4)                = 0
17:47:03.855221 munmap(0x7fe35854b000, 4096) = 0
17:47:03.855253 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.855288 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.855493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.855514 rt_sigreturn(0xe)       = 16
17:47:03.856755 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.856793 writev(3, [{"5\1\4\0\355\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\356\2\300\3\355\2\300\3\0\0\0\0H\1\26\0\355\2\300\3\356\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.856887 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.856918 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.857722 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.857757 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.857806 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.857844 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.857877 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.857910 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.857944 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.857977 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.858005 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.858037 close(4)                = 0
17:47:03.858062 munmap(0x7fe35854b000, 4096) = 0
17:47:03.858092 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.858127 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.858160 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.858202 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.858237 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.858267 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.858300 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.858326 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.858363 read(4, "", 4096)       = 0
17:47:03.858388 close(4)                = 0
17:47:03.858411 munmap(0x7fe35854b000, 4096) = 0
17:47:03.858440 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.858475 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.860109 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.860154 writev(3, [{"5\1\4\0\362\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\363\2\300\3\362\2\300\3\0\0\0\0H\1\26\0\362\2\300\3\363\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.860248 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.860280 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.860841 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.860876 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.860926 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.860965 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.860998 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.861031 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.861064 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.861097 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.861124 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.861156 close(4)                = 0
17:47:03.861181 munmap(0x7fe35854b000, 4096) = 0
17:47:03.861211 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.861246 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.861280 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.861312 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.861346 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.861376 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.861409 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.861435 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.861472 read(4, "", 4096)       = 0
17:47:03.861501 close(4)                = 0
17:47:03.861564 munmap(0x7fe35854b000, 4096) = 0
17:47:03.861596 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.861631 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.862653 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.862691 writev(3, [{"5\1\4\0\367\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\370\2\300\3\367\2\300\3\0\0\0\0H\1\26\0\367\2\300\3\370\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.862783 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.862822 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.863993 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.864027 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.864077 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.864116 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.864158 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.864192 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.864225 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.864259 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.864286 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.864318 close(4)                = 0
17:47:03.864342 munmap(0x7fe35854b000, 4096) = 0
17:47:03.864373 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.864408 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.864442 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.864474 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.864507 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.864537 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.864570 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.864597 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.864633 read(4, "", 4096)       = 0
17:47:03.864659 close(4)                = 0
17:47:03.864682 munmap(0x7fe35854b000, 4096) = 0
17:47:03.864712 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.864746 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.865483 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.865519 writev(3, [{"5\1\4\0\374\2\300\3\16\1\0\0\20\0\20\0007\0\4\0\375\2\300\3\374\2\300\3\0\0\0\0H\1\26\0\374\2\300\3\375\2\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.865611 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.865641 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.866932 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.866967 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.867325 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.867359 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.867408 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.867446 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.867478 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.867512 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.867545 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.867578 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.867605 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.867637 close(4)                = 0
17:47:03.867662 munmap(0x7fe35854b000, 4096) = 0
17:47:03.867692 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.867736 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.867771 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.867803 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.867837 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.867866 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.867899 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.867926 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.867963 read(4, "", 4096)       = 0
17:47:03.868017 close(4)                = 0
17:47:03.868042 munmap(0x7fe35854b000, 4096) = 0
17:47:03.868072 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.868107 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.868809 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.868847 writev(3, [{"5\1\4\0\1\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\2\3\300\3\1\3\300\3\0\0\0\0H\1\26\0\1\3\300\3\2\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.868939 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.868969 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.869490 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.869523 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.870553 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.870586 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.870899 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.870932 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.870981 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.871018 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.871051 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.871084 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.871117 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.871151 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.871178 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.871210 close(4)                = 0
17:47:03.871235 munmap(0x7fe35854b000, 4096) = 0
17:47:03.871265 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.871301 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.871334 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.871367 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.871400 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.871430 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.871463 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.871489 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.871526 read(4, "", 4096)       = 0
17:47:03.871551 close(4)                = 0
17:47:03.871575 munmap(0x7fe35854b000, 4096) = 0
17:47:03.871604 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.871638 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.871974 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.872010 writev(3, [{"5\1\4\0\6\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\7\3\300\3\6\3\300\3\0\0\0\0H\1\26\0\6\3\300\3\7\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.872100 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.872135 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.872622 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.872656 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.873026 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.873060 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.873363 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.873395 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.873680 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.873712 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.874133 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.874166 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.874562 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.874594 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.875040 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.875072 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.875493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.875514 rt_sigreturn(0xe)       = 69200
17:47:03.888535 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.888611 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.889123 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.889162 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.889234 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.889277 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.889310 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.889345 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.889397 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.889705 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.889738 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.889773 close(4)                = 0
17:47:03.889798 munmap(0x7fe35854b000, 4096) = 0
17:47:03.889830 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.889867 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.889901 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.890026 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.890064 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.890095 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.890129 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.890156 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.890194 read(4, "", 4096)       = 0
17:47:03.890219 close(4)                = 0
17:47:03.890243 munmap(0x7fe35854b000, 4096) = 0
17:47:03.890274 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.890309 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.892635 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.892677 writev(3, [{"5\1\4\0\v\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\f\3\300\3\v\3\300\3\0\0\0\0H\1\26\0\v\3\300\3\f\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.892862 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.892894 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.892947 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.892986 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.893025 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.893060 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.893094 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.893127 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.893154 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.893187 close(4)                = 0
17:47:03.893212 munmap(0x7fe35854b000, 4096) = 0
17:47:03.893250 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.893297 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.893332 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.893365 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.893399 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.893429 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.893462 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.893489 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.893532 read(4, "", 4096)       = 0
17:47:03.893558 close(4)                = 0
17:47:03.893582 munmap(0x7fe35854b000, 4096) = 0
17:47:03.893613 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.893649 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.895495 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.895519 rt_sigreturn(0xe)       = 3
17:47:03.895875 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.895912 writev(3, [{"5\1\4\0\20\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\21\3\300\3\20\3\300\3\0\0\0\0H\1\26\0\20\3\300\3\21\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.896004 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.896035 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.896189 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.896225 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.896276 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.896316 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.896349 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.896383 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.896416 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.896449 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.896477 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.896509 close(4)                = 0
17:47:03.896534 munmap(0x7fe35854b000, 4096) = 0
17:47:03.896575 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.896611 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.896645 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.896677 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.896715 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.896760 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.896794 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.896820 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.896857 read(4, "", 4096)       = 0
17:47:03.896883 close(4)                = 0
17:47:03.896907 munmap(0x7fe35854b000, 4096) = 0
17:47:03.896937 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.896971 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.899005 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.899044 writev(3, [{"5\1\4\0\25\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\26\3\300\3\25\3\300\3\0\0\0\0H\1\26\0\25\3\300\3\26\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.899137 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.899169 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.899218 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.899256 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.899290 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.899323 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.899359 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.899393 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.899420 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.899452 close(4)                = 0
17:47:03.899477 munmap(0x7fe35854b000, 4096) = 0
17:47:03.899508 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.899544 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.899578 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.899610 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.899644 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.899674 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.899707 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.899733 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.899770 read(4, "", 4096)       = 0
17:47:03.899795 close(4)                = 0
17:47:03.899819 munmap(0x7fe35854b000, 4096) = 0
17:47:03.899849 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.899883 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.901996 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.902035 writev(3, [{"5\1\4\0\32\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\33\3\300\3\32\3\300\3\0\0\0\0H\1\26\0\32\3\300\3\33\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.902138 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.902171 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.902292 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.902324 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.902373 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.902411 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.902443 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.902476 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.902509 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.902542 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.902569 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.902602 close(4)                = 0
17:47:03.902627 munmap(0x7fe35854b000, 4096) = 0
17:47:03.902658 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.902693 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.902727 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.902759 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.902793 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.902823 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.902856 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.902883 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.902919 read(4, "", 4096)       = 0
17:47:03.902945 close(4)                = 0
17:47:03.902969 munmap(0x7fe35854b000, 4096) = 0
17:47:03.902998 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.903033 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.905074 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.905113 writev(3, [{"5\1\4\0\37\3\300\3\16\1\0\0\20\0\20\0007\0\4\0 \3\300\3\37\3\300\3\0\0\0\0H\1\26\0\37\3\300\3 \3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.905206 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.905239 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.905291 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.905330 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.905363 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.905397 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.905430 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.905463 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.905490 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.905523 close(4)                = 0
17:47:03.905548 munmap(0x7fe35854b000, 4096) = 0
17:47:03.905578 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.905614 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.905657 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.905690 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.905724 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.905755 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.905788 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.905814 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.905851 read(4, "", 4096)       = 0
17:47:03.905876 close(4)                = 0
17:47:03.905900 munmap(0x7fe35854b000, 4096) = 0
17:47:03.905930 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.905965 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.907016 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.907054 writev(3, [{"5\1\4\0$\3\300\3\16\1\0\0\20\0\20\0007\0\4\0%\3\300\3$\3\300\3\0\0\0\0H\1\26\0$\3\300\3%\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.907145 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.907178 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.908361 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.908397 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.908449 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.908490 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.908523 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.908556 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.908590 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.908623 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.908651 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.908683 close(4)                = 0
17:47:03.908708 munmap(0x7fe35854b000, 4096) = 0
17:47:03.908738 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.908774 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.908809 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.908841 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.908875 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.908905 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.908938 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.908964 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.909001 read(4, "", 4096)       = 0
17:47:03.909026 close(4)                = 0
17:47:03.909050 munmap(0x7fe35854b000, 4096) = 0
17:47:03.909080 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.909114 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.911105 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.911144 writev(3, [{"5\1\4\0)\3\300\3\16\1\0\0\20\0\20\0007\0\4\0*\3\300\3)\3\300\3\0\0\0\0H\1\26\0)\3\300\3*\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.911237 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.911278 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.911475 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.911507 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.911556 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.911593 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.911626 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.911659 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.911692 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.911725 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.911752 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.911784 close(4)                = 0
17:47:03.911809 munmap(0x7fe35854b000, 4096) = 0
17:47:03.911839 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.911875 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.911908 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.911940 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.911974 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.912005 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.912038 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.912064 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.912101 read(4, "", 4096)       = 0
17:47:03.912131 close(4)                = 0
17:47:03.912158 munmap(0x7fe35854b000, 4096) = 0
17:47:03.912188 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.912223 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.914266 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.914303 writev(3, [{"5\1\4\0.\3\300\3\16\1\0\0\20\0\20\0007\0\4\0/\3\300\3.\3\300\3\0\0\0\0H\1\26\0.\3\300\3/\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.914395 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.914426 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.914574 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.914606 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.914655 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.914693 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.914725 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.914759 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.914791 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.914825 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.914852 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.914884 close(4)                = 0
17:47:03.914909 munmap(0x7fe35854b000, 4096) = 0
17:47:03.914939 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.914975 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.915017 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.915051 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.915085 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.915115 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.915148 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.915174 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.915211 read(4, "", 4096)       = 0
17:47:03.915236 close(4)                = 0
17:47:03.915259 munmap(0x7fe35854b000, 4096) = 0
17:47:03.915289 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.915323 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.915491 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.915512 rt_sigreturn(0xe)       = 0
17:47:03.917024 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.917065 writev(3, [{"5\1\4\0003\3\300\3\16\1\0\0\20\0\20\0007\0\4\0004\3\300\0033\3\300\3\0\0\0\0H\1\26\0003\3\300\0034\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.917159 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.917192 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.917778 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.917815 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.917866 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.917907 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.917944 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.917980 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.918016 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.918148 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.918183 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.918218 close(4)                = 0
17:47:03.918242 munmap(0x7fe35854b000, 4096) = 0
17:47:03.918278 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.918324 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.918365 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.918402 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.918444 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.918487 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.918525 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.918556 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.918597 read(4, "", 4096)       = 0
17:47:03.918625 close(4)                = 0
17:47:03.918651 munmap(0x7fe35854b000, 4096) = 0
17:47:03.918683 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.918717 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.919637 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.919673 writev(3, [{"5\1\4\0008\3\300\3\16\1\0\0\20\0\20\0007\0\4\0009\3\300\0038\3\300\3\0\0\0\0H\1\26\0008\3\300\0039\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.919774 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.919805 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.921118 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.921153 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.921204 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.921244 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.921278 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.921312 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.921345 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.921378 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.921405 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.921437 close(4)                = 0
17:47:03.921462 munmap(0x7fe35854b000, 4096) = 0
17:47:03.921493 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.921528 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.921562 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.921594 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.921627 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.921657 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.921690 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.921717 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.921754 read(4, "", 4096)       = 0
17:47:03.921779 close(4)                = 0
17:47:03.921802 munmap(0x7fe35854b000, 4096) = 0
17:47:03.921832 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.921866 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.922129 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.922165 writev(3, [{"5\1\4\0=\3\300\3\16\1\0\0\20\0\20\0007\0\4\0>\3\300\3=\3\300\3\0\0\0\0H\1\26\0=\3\300\3>\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.922255 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.922286 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.923082 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.923117 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.924186 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.924222 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.924683 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.924719 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.924770 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.924808 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.924846 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.924879 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.924912 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.924945 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.924972 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.925012 close(4)                = 0
17:47:03.925038 munmap(0x7fe35854b000, 4096) = 0
17:47:03.925068 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.925103 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.925136 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.925168 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.925202 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.925232 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.925264 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.925291 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.925327 read(4, "", 4096)       = 0
17:47:03.925352 close(4)                = 0
17:47:03.925376 munmap(0x7fe35854b000, 4096) = 0
17:47:03.925405 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.925439 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.925793 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.925829 writev(3, [{"5\1\4\0B\3\300\3\16\1\0\0\20\0\20\0007\0\4\0C\3\300\3B\3\300\3\0\0\0\0H\1\26\0B\3\300\3C\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.925920 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.925950 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.926517 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.926551 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.926905 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.926937 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.927262 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.927296 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.927930 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.927963 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.928645 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.928682 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.928941 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.928977 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.929205 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.929239 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.929451 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.929483 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.929694 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.929726 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.929916 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.929948 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.930148 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.930180 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.930387 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.930419 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.930617 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.930649 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.930683 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.930711 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.930759 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.930805 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.930839 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.930873 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.930906 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.930940 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.930967 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.930999 close(4)                = 0
17:47:03.931023 munmap(0x7fe35854b000, 4096) = 0
17:47:03.931053 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.931089 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.931122 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.931155 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.931188 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.931219 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.931251 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.931278 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.931314 read(4, "", 4096)       = 0
17:47:03.931340 close(4)                = 0
17:47:03.931364 munmap(0x7fe35854b000, 4096) = 0
17:47:03.931393 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.931428 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.931624 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.931658 writev(3, [{"5\1\4\0G\3\300\3\16\1\0\0\20\0\20\0007\0\4\0H\3\300\3G\3\300\3\0\0\0\0H\1\26\0G\3\300\3H\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.931749 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.931779 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.935501 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.935546 rt_sigreturn(0xe)       = 4487268
17:47:03.944313 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.944400 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.946584 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.946620 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.946695 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.946744 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.946780 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.946815 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.946854 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.946889 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.946921 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.946956 close(4)                = 0
17:47:03.946983 munmap(0x7fe35854b000, 4096) = 0
17:47:03.947018 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.947054 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.947088 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.947121 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.947175 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.947207 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.947240 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.947267 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.947304 read(4, "", 4096)       = 0
17:47:03.947329 close(4)                = 0
17:47:03.947352 munmap(0x7fe35854b000, 4096) = 0
17:47:03.947382 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.947417 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.949538 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.949579 writev(3, [{"5\1\4\0L\3\300\3\16\1\0\0\20\0\20\0007\0\4\0M\3\300\3L\3\300\3\0\0\0\0H\1\26\0L\3\300\3M\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.949765 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.949797 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.949847 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.949885 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.949918 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.949951 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.949984 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.950018 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.950045 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.950077 close(4)                = 0
17:47:03.950102 munmap(0x7fe35854b000, 4096) = 0
17:47:03.950133 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.950168 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.950203 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.950235 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.950269 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.950299 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.950332 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.950358 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.950395 read(4, "", 4096)       = 0
17:47:03.950420 close(4)                = 0
17:47:03.950443 munmap(0x7fe35854b000, 4096) = 0
17:47:03.950473 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.950508 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.950815 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.950852 writev(3, [{"5\1\4\0Q\3\300\3\16\1\0\0\20\0\20\0007\0\4\0R\3\300\3Q\3\300\3\0\0\0\0H\1\26\0Q\3\300\3R\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.950942 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.950973 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.953100 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.953139 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.953191 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.953241 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.953275 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.953308 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.953341 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.953375 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.953402 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.953435 close(4)                = 0
17:47:03.953460 munmap(0x7fe35854b000, 4096) = 0
17:47:03.953490 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.953525 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.953559 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.953592 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.953625 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.953656 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.953689 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.953715 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.953751 read(4, "", 4096)       = 0
17:47:03.953777 close(4)                = 0
17:47:03.953801 munmap(0x7fe35854b000, 4096) = 0
17:47:03.953830 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.953865 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.955494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.955520 rt_sigreturn(0xe)       = 0
17:47:03.955977 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.956013 writev(3, [{"5\1\4\0V\3\300\3\16\1\0\0\20\0\20\0007\0\4\0W\3\300\3V\3\300\3\0\0\0\0H\1\26\0V\3\300\3W\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.956108 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.956146 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.956199 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.956237 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.956270 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.956304 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.956336 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.956370 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.956397 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.956430 close(4)                = 0
17:47:03.956455 munmap(0x7fe35854b000, 4096) = 0
17:47:03.956485 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.956521 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.956555 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.956587 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.956620 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.956651 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.956693 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.956720 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.956756 read(4, "", 4096)       = 0
17:47:03.956781 close(4)                = 0
17:47:03.956805 munmap(0x7fe35854b000, 4096) = 0
17:47:03.956835 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.956869 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.957328 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.957365 writev(3, [{"5\1\4\0[\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\\\3\300\3[\3\300\3\0\0\0\0H\1\26\0[\3\300\3\\\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.957456 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.957487 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.959279 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.959317 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.959378 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.959425 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.959463 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.959502 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.959544 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.959581 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.959610 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.959644 close(4)                = 0
17:47:03.959669 munmap(0x7fe35854b000, 4096) = 0
17:47:03.959701 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.959738 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.959772 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.959804 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.959838 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.959868 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.959901 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.959928 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.959965 read(4, "", 4096)       = 0
17:47:03.959990 close(4)                = 0
17:47:03.960014 munmap(0x7fe35854b000, 4096) = 0
17:47:03.960044 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.960078 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.961955 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.961994 writev(3, [{"5\1\4\0`\3\300\3\16\1\0\0\20\0\20\0007\0\4\0a\3\300\3`\3\300\3\0\0\0\0H\1\26\0`\3\300\3a\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.962089 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.962121 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.962435 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.962467 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.962525 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.962577 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.962611 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.962644 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.962678 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.962711 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.962738 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.962771 close(4)                = 0
17:47:03.962796 munmap(0x7fe35854b000, 4096) = 0
17:47:03.962827 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.962862 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.962896 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.962928 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.962961 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.962992 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.963024 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.963050 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.963087 read(4, "", 4096)       = 0
17:47:03.963112 close(4)                = 0
17:47:03.963136 munmap(0x7fe35854b000, 4096) = 0
17:47:03.963165 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.963199 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.965233 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.965272 writev(3, [{"5\1\4\0e\3\300\3\16\1\0\0\20\0\20\0007\0\4\0f\3\300\3e\3\300\3\0\0\0\0H\1\26\0e\3\300\3f\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.965365 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.965396 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.965446 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.965485 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.965519 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.965553 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.965586 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.965619 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.965646 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.965678 close(4)                = 0
17:47:03.965703 munmap(0x7fe35854b000, 4096) = 0
17:47:03.965733 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.965768 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.965802 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.965834 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.965868 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.965898 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.965933 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.965969 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.966007 read(4, "", 4096)       = 0
17:47:03.966032 close(4)                = 0
17:47:03.966056 munmap(0x7fe35854b000, 4096) = 0
17:47:03.966085 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.966120 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.966826 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.966863 writev(3, [{"5\1\4\0j\3\300\3\16\1\0\0\20\0\20\0007\0\4\0k\3\300\3j\3\300\3\0\0\0\0H\1\26\0j\3\300\3k\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.966953 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.966984 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.968501 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.968538 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.968590 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.968631 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.968667 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.968701 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.968734 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.968768 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.968795 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.968831 close(4)                = 0
17:47:03.968856 munmap(0x7fe35854b000, 4096) = 0
17:47:03.968886 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.968922 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.968955 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.968987 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.969021 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.969051 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.969083 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.969109 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.969146 read(4, "", 4096)       = 0
17:47:03.969171 close(4)                = 0
17:47:03.969195 munmap(0x7fe35854b000, 4096) = 0
17:47:03.969224 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.969258 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.970166 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.970204 writev(3, [{"5\1\4\0o\3\300\3\16\1\0\0\20\0\20\0007\0\4\0p\3\300\3o\3\300\3\0\0\0\0H\1\26\0o\3\300\3p\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.970295 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.970326 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.971697 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.971731 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.971782 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.971821 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.971864 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.971899 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.971932 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.971965 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.971992 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.972025 close(4)                = 0
17:47:03.972049 munmap(0x7fe35854b000, 4096) = 0
17:47:03.972080 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.972115 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.972156 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.972189 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.972222 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.972253 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.972286 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.972312 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.972349 read(4, "", 4096)       = 0
17:47:03.972373 close(4)                = 0
17:47:03.972397 munmap(0x7fe35854b000, 4096) = 0
17:47:03.972426 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.972461 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.973216 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.973253 writev(3, [{"5\1\4\0t\3\300\3\16\1\0\0\20\0\20\0007\0\4\0u\3\300\3t\3\300\3\0\0\0\0H\1\26\0t\3\300\3u\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.973344 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.973374 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.974828 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.974862 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.974912 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.974951 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.974985 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.975018 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.975051 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.975084 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.975111 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.975143 close(4)                = 0
17:47:03.975167 munmap(0x7fe35854b000, 4096) = 0
17:47:03.975197 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.975233 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.975266 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.975299 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.975332 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.975362 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.975395 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.975421 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.975467 read(4, "", 4096)       = 0
17:47:03.975492 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.975508 rt_sigreturn(0xe)       = 0
17:47:03.975533 close(4)                = 0
17:47:03.975556 munmap(0x7fe35854b000, 4096) = 0
17:47:03.975587 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.975621 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.975832 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.975868 writev(3, [{"5\1\4\0y\3\300\3\16\1\0\0\20\0\20\0007\0\4\0z\3\300\3y\3\300\3\0\0\0\0H\1\26\0y\3\300\3z\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.975958 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.975988 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.976982 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.977018 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.978213 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.978250 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.978302 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.978341 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.978374 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.978407 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.978440 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.978474 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.978502 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.978535 close(4)                = 0
17:47:03.978560 munmap(0x7fe35854b000, 4096) = 0
17:47:03.978590 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.978625 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.978658 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.978690 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.978724 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.978755 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.978788 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.978815 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.978851 read(4, "", 4096)       = 0
17:47:03.978877 close(4)                = 0
17:47:03.978900 munmap(0x7fe35854b000, 4096) = 0
17:47:03.978930 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.978964 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.979301 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.979340 writev(3, [{"5\1\4\0~\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\177\3\300\3~\3\300\3\0\0\0\0H\1\26\0~\3\300\3\177\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.979431 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.979461 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.980265 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.980302 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.980981 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.981026 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.981928 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.981963 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.982128 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.982161 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.982210 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.982248 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.982281 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.982315 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:03.982348 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:03.982381 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.982408 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:03.982441 close(4)                = 0
17:47:03.982465 munmap(0x7fe35854b000, 4096) = 0
17:47:03.982496 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.982531 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.982565 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.982597 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.982631 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:03.982815 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:03.982852 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:03.982882 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:03.982919 read(4, "", 4096)       = 0
17:47:03.982945 close(4)                = 0
17:47:03.982968 munmap(0x7fe35854b000, 4096) = 0
17:47:03.982999 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.983033 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:03.983413 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:03.983450 writev(3, [{"5\1\4\0\203\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\204\3\300\3\203\3\300\3\0\0\0\0H\1\26\0\203\3\300\3\204\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:03.983542 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.983573 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.984047 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.984080 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.984430 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.984464 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.984762 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.984796 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.985099 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.985133 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.985521 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.985555 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.985884 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.985917 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.986335 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.986367 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.986744 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:03.986788 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:03.995510 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:03.995579 rt_sigreturn(0xe)       = 4243968
17:47:03.999962 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.000040 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.000540 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.000580 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.000669 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.000718 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.000752 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.000788 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.000827 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.000862 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.000894 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.000930 close(4)                = 0
17:47:04.000956 munmap(0x7fe35854b000, 4096) = 0
17:47:04.000991 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.001027 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.001061 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.001100 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.001136 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.001167 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.001199 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.001226 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.001263 read(4, "", 4096)       = 0
17:47:04.001288 close(4)                = 0
17:47:04.001312 munmap(0x7fe35854b000, 4096) = 0
17:47:04.001342 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.001376 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.003544 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.003583 writev(3, [{"5\1\4\0\210\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\211\3\300\3\210\3\300\3\0\0\0\0H\1\26\0\210\3\300\3\211\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.003706 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.003736 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.003786 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.003823 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.003857 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.003890 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.003923 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.003960 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.003988 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.004021 close(4)                = 0
17:47:04.004046 munmap(0x7fe35854b000, 4096) = 0
17:47:04.004077 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.004112 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.004176 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.004210 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.004244 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.004274 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.004307 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.004334 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.004371 read(4, "", 4096)       = 0
17:47:04.004396 close(4)                = 0
17:47:04.004420 munmap(0x7fe35854b000, 4096) = 0
17:47:04.004450 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.004484 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.006602 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.006640 writev(3, [{"5\1\4\0\215\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\216\3\300\3\215\3\300\3\0\0\0\0H\1\26\0\215\3\300\3\216\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.006732 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.006763 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.006907 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.006939 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.006990 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.007028 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.007061 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.007094 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.007127 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.007161 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.007189 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.007222 close(4)                = 0
17:47:04.007247 munmap(0x7fe35854b000, 4096) = 0
17:47:04.007277 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.007313 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.007347 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.007379 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.007413 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.007443 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.007476 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.007502 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.007539 read(4, "", 4096)       = 0
17:47:04.007564 close(4)                = 0
17:47:04.007587 munmap(0x7fe35854b000, 4096) = 0
17:47:04.007617 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.007652 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.009692 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.009731 writev(3, [{"5\1\4\0\222\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\223\3\300\3\222\3\300\3\0\0\0\0H\1\26\0\222\3\300\3\223\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.009832 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.009864 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.009915 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.009953 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.009986 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.010020 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.010053 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.010086 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.010113 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.010146 close(4)                = 0
17:47:04.010170 munmap(0x7fe35854b000, 4096) = 0
17:47:04.010200 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.010236 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.010269 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.010301 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.010334 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.010365 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.010397 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.010424 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.010525 read(4, "", 4096)       = 0
17:47:04.010559 close(4)                = 0
17:47:04.010588 munmap(0x7fe35854b000, 4096) = 0
17:47:04.010627 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.010674 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.012758 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.012796 writev(3, [{"5\1\4\0\227\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\230\3\300\3\227\3\300\3\0\0\0\0H\1\26\0\227\3\300\3\230\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.012890 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.012922 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.012973 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.013011 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.013044 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.013077 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.013110 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.013144 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.013171 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.013204 close(4)                = 0
17:47:04.013229 munmap(0x7fe35854b000, 4096) = 0
17:47:04.013260 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.013296 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.013329 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.013361 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.013405 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.013436 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.013469 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.013496 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.013534 read(4, "", 4096)       = 0
17:47:04.013563 close(4)                = 0
17:47:04.013588 munmap(0x7fe35854b000, 4096) = 0
17:47:04.013619 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.013655 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.013868 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.013905 writev(3, [{"5\1\4\0\234\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\235\3\300\3\234\3\300\3\0\0\0\0H\1\26\0\234\3\300\3\235\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.013996 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.014027 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.015493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.015516 rt_sigreturn(0xe)       = 84944
17:47:04.016072 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.016105 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.016161 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.016200 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.016233 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.016266 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.016301 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.016334 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.016361 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.016394 close(4)                = 0
17:47:04.016423 munmap(0x7fe35854b000, 4096) = 0
17:47:04.016454 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.016489 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.016524 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.016556 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.016590 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.016621 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.016653 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.016680 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.016716 read(4, "", 4096)       = 0
17:47:04.016741 close(4)                = 0
17:47:04.016765 munmap(0x7fe35854b000, 4096) = 0
17:47:04.016795 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.016829 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.018448 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.018494 writev(3, [{"5\1\4\0\241\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\242\3\300\3\241\3\300\3\0\0\0\0H\1\26\0\241\3\300\3\242\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.018619 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.018668 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.019837 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.019879 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.019946 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.019996 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.020041 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.020085 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.020125 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.020174 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.020209 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.020251 close(4)                = 0
17:47:04.020281 munmap(0x7fe35854b000, 4096) = 0
17:47:04.020317 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.020364 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.020409 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.020454 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.020496 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.020536 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.020576 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.020610 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.020656 read(4, "", 4096)       = 0
17:47:04.020689 close(4)                = 0
17:47:04.020720 munmap(0x7fe35854b000, 4096) = 0
17:47:04.020757 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.020799 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.023722 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.023814 writev(3, [{"5\1\4\0\246\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\247\3\300\3\246\3\300\3\0\0\0\0H\1\26\0\246\3\300\3\247\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.024053 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.024090 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.024212 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.024264 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.024306 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.024341 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.024381 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.024418 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.024452 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.024495 close(4)                = 0
17:47:04.024522 munmap(0x7fe35854b000, 4096) = 0
17:47:04.024557 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.024597 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.024632 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.024664 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.024721 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.024754 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.024786 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.024813 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.024853 read(4, "", 4096)       = 0
17:47:04.024878 close(4)                = 0
17:47:04.024903 munmap(0x7fe35854b000, 4096) = 0
17:47:04.024934 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.024971 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.025695 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.025755 writev(3, [{"5\1\4\0\253\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\254\3\300\3\253\3\300\3\0\0\0\0H\1\26\0\253\3\300\3\254\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.025959 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.025995 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.028451 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.028517 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.028604 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.028656 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.028695 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.028735 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.028781 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.028823 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.028858 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.028902 close(4)                = 0
17:47:04.028929 munmap(0x7fe35854b000, 4096) = 0
17:47:04.028968 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.029009 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.029048 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.029085 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.029132 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.029169 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.029203 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.029230 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.029268 read(4, "", 4096)       = 0
17:47:04.029294 close(4)                = 0
17:47:04.029318 munmap(0x7fe35854b000, 4096) = 0
17:47:04.029348 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.029383 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.030113 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.030151 writev(3, [{"5\1\4\0\260\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\261\3\300\3\260\3\300\3\0\0\0\0H\1\26\0\260\3\300\3\261\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.030314 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.030345 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.031988 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.032043 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.032096 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.032140 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.032177 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.032212 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.032245 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.032279 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.032306 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.032339 close(4)                = 0
17:47:04.032364 munmap(0x7fe35854b000, 4096) = 0
17:47:04.032395 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.032431 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.032464 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.032497 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.032530 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.032561 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.032594 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.032621 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.032657 read(4, "", 4096)       = 0
17:47:04.032683 close(4)                = 0
17:47:04.032707 munmap(0x7fe35854b000, 4096) = 0
17:47:04.032736 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.032771 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.033226 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.033263 writev(3, [{"5\1\4\0\265\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\266\3\300\3\265\3\300\3\0\0\0\0H\1\26\0\265\3\300\3\266\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.033356 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.033387 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.034999 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.035037 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.035352 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.035387 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.035438 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.035477 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.035509 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.035525 rt_sigreturn(0xe)       = -1 ENOENT (No such file or directory)
17:47:04.035553 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.035587 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.035620 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.035654 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.035681 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.035714 close(4)                = 0
17:47:04.035739 munmap(0x7fe35854b000, 4096) = 0
17:47:04.035770 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.035805 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.035849 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.035882 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.035916 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.035947 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.035980 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.036007 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.036043 read(4, "", 4096)       = 0
17:47:04.036069 close(4)                = 0
17:47:04.036093 munmap(0x7fe35854b000, 4096) = 0
17:47:04.036123 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.036190 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.037067 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.037105 writev(3, [{"5\1\4\0\272\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\273\3\300\3\272\3\300\3\0\0\0\0H\1\26\0\272\3\300\3\273\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.037197 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.037227 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.038439 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.038474 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.038789 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.038822 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.038871 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.038910 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.038943 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.038977 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.039010 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.039043 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.039070 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.039103 close(4)                = 0
17:47:04.039128 munmap(0x7fe35854b000, 4096) = 0
17:47:04.039159 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.039195 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.039229 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.039262 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.039296 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.039326 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.039359 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.039386 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.039422 read(4, "", 4096)       = 0
17:47:04.039448 close(4)                = 0
17:47:04.039471 munmap(0x7fe35854b000, 4096) = 0
17:47:04.039501 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.039536 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.040174 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.040220 writev(3, [{"5\1\4\0\277\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\300\3\300\3\277\3\300\3\0\0\0\0H\1\26\0\277\3\300\3\300\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.040312 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.040342 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.040863 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.040897 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.041860 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.041897 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.042535 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.042570 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.042688 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.042719 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.042768 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.042807 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.042840 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.042874 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.042907 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.042940 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.042968 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.043001 close(4)                = 0
17:47:04.043026 munmap(0x7fe35854b000, 4096) = 0
17:47:04.043056 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.043092 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.043125 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.043158 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.043191 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.043222 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.043255 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.043281 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.043318 read(4, "", 4096)       = 0
17:47:04.043343 close(4)                = 0
17:47:04.043367 munmap(0x7fe35854b000, 4096) = 0
17:47:04.043396 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.043431 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.043783 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.043819 writev(3, [{"5\1\4\0\304\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\305\3\300\3\304\3\300\3\0\0\0\0H\1\26\0\304\3\300\3\305\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.043911 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.043942 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.044322 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.044356 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.044741 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.044775 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.045040 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.045073 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.045335 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.045376 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.045633 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.045666 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.045923 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.045955 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.055513 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.055584 rt_sigreturn(0xe)       = 57026831
17:47:04.059111 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.059191 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.060550 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.060590 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.060668 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.060717 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.060753 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.060791 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.060830 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.060865 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.060897 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.060932 close(4)                = 0
17:47:04.060958 munmap(0x7fe35854b000, 4096) = 0
17:47:04.060993 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.061030 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.061064 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.061097 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.061132 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.061163 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.061196 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.061223 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.061260 read(4, "", 4096)       = 0
17:47:04.061285 close(4)                = 0
17:47:04.061309 munmap(0x7fe35854b000, 4096) = 0
17:47:04.061339 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.061375 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.063646 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.063690 writev(3, [{"5\1\4\0\311\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\312\3\300\3\311\3\300\3\0\0\0\0H\1\26\0\311\3\300\3\312\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.063814 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.063845 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.063899 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.063938 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.063972 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.064006 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.064039 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.064072 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.064100 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.064155 close(4)                = 0
17:47:04.064182 munmap(0x7fe35854b000, 4096) = 0
17:47:04.064214 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.064250 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.064284 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.064317 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.064351 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.064381 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.064414 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.064441 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.064478 read(4, "", 4096)       = 0
17:47:04.064503 close(4)                = 0
17:47:04.064527 munmap(0x7fe35854b000, 4096) = 0
17:47:04.064556 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.064591 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.065842 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.065880 writev(3, [{"5\1\4\0\316\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\317\3\300\3\316\3\300\3\0\0\0\0H\1\26\0\316\3\300\3\317\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.065973 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.066005 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.066982 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.067016 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.067066 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.067104 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.067137 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.067170 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.067203 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.067237 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.067264 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.067297 close(4)                = 0
17:47:04.067322 munmap(0x7fe35854b000, 4096) = 0
17:47:04.067353 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.067389 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.067422 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.067455 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.067488 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.067519 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.067552 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.067578 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.067615 read(4, "", 4096)       = 0
17:47:04.067640 close(4)                = 0
17:47:04.067663 munmap(0x7fe35854b000, 4096) = 0
17:47:04.067693 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.067728 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.069765 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.069804 writev(3, [{"5\1\4\0\323\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\324\3\300\3\323\3\300\3\0\0\0\0H\1\26\0\323\3\300\3\324\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.069899 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.069935 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.069991 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.070033 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.070069 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.070105 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.070141 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.070177 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.070207 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.070242 close(4)                = 0
17:47:04.070270 munmap(0x7fe35854b000, 4096) = 0
17:47:04.070303 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.070341 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.070379 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.070414 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.070450 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.070484 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.070519 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.070549 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.070588 read(4, "", 4096)       = 0
17:47:04.070616 close(4)                = 0
17:47:04.070642 munmap(0x7fe35854b000, 4096) = 0
17:47:04.070675 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.070713 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.072333 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.072377 writev(3, [{"5\1\4\0\330\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\331\3\300\3\330\3\300\3\0\0\0\0H\1\26\0\330\3\300\3\331\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.072472 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.072506 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.073200 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.073236 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.073290 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.073331 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.073367 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.073404 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.073440 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.073476 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.073506 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.073542 close(4)                = 0
17:47:04.073570 munmap(0x7fe35854b000, 4096) = 0
17:47:04.073604 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.073653 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.073691 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.073726 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.073762 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.073796 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.073831 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.073861 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.073901 read(4, "", 4096)       = 0
17:47:04.073929 close(4)                = 0
17:47:04.073955 munmap(0x7fe35854b000, 4096) = 0
17:47:04.073988 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.074026 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.075494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.075518 rt_sigreturn(0xe)       = 0
17:47:04.076110 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.076155 writev(3, [{"5\1\4\0\335\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\336\3\300\3\335\3\300\3\0\0\0\0H\1\26\0\335\3\300\3\336\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.076251 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.076286 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.076340 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.076381 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.076417 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.076454 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.076490 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.076526 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.076556 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.076591 close(4)                = 0
17:47:04.076618 munmap(0x7fe35854b000, 4096) = 0
17:47:04.076651 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.076690 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.076727 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.076762 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.076799 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.076832 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.076867 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.076897 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.076936 read(4, "", 4096)       = 0
17:47:04.076964 close(4)                = 0
17:47:04.076990 munmap(0x7fe35854b000, 4096) = 0
17:47:04.077022 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.077060 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.078044 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.078085 writev(3, [{"5\1\4\0\342\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\343\3\300\3\342\3\300\3\0\0\0\0H\1\26\0\342\3\300\3\343\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.078187 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.078221 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.079467 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.079505 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.079560 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.079603 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.079640 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.079677 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.079713 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.079749 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.079779 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.079815 close(4)                = 0
17:47:04.079843 munmap(0x7fe35854b000, 4096) = 0
17:47:04.079876 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.079915 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.079952 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.079987 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.080024 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.080057 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.080093 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.080122 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.080168 read(4, "", 4096)       = 0
17:47:04.080196 close(4)                = 0
17:47:04.080224 munmap(0x7fe35854b000, 4096) = 0
17:47:04.080257 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.080295 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.082401 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.082447 writev(3, [{"5\1\4\0\347\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\350\3\300\3\347\3\300\3\0\0\0\0H\1\26\0\347\3\300\3\350\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.082507 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.082544 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.082675 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.082713 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.082768 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.082808 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.082841 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.082875 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.082907 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.082941 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.082969 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.083002 close(4)                = 0
17:47:04.083027 munmap(0x7fe35854b000, 4096) = 0
17:47:04.083059 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.083105 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.083140 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.083172 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.083206 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.083236 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.083269 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.083296 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.083333 read(4, "", 4096)       = 0
17:47:04.083358 close(4)                = 0
17:47:04.083382 munmap(0x7fe35854b000, 4096) = 0
17:47:04.083412 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.083446 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.085482 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.085522 writev(3, [{"5\1\4\0\354\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\355\3\300\3\354\3\300\3\0\0\0\0H\1\26\0\354\3\300\3\355\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.085616 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.085647 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.085697 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.085735 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.085769 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.085802 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.085835 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.085868 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.085896 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.085928 close(4)                = 0
17:47:04.085953 munmap(0x7fe35854b000, 4096) = 0
17:47:04.085983 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.086019 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.086053 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.086085 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.086119 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.086149 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.086182 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.086209 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.086245 read(4, "", 4096)       = 0
17:47:04.086271 close(4)                = 0
17:47:04.086295 munmap(0x7fe35854b000, 4096) = 0
17:47:04.086324 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.086359 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.086683 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.086719 writev(3, [{"5\1\4\0\361\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\362\3\300\3\361\3\300\3\0\0\0\0H\1\26\0\361\3\300\3\362\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.086817 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.086848 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.088753 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.088790 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.088956 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.088990 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.089041 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.089082 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.089121 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.089155 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.089188 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.089222 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.089249 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.089281 close(4)                = 0
17:47:04.089306 munmap(0x7fe35854b000, 4096) = 0
17:47:04.089337 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.089372 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.089406 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.089438 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.089472 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.089502 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.089535 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.089562 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.089598 read(4, "", 4096)       = 0
17:47:04.089623 close(4)                = 0
17:47:04.089647 munmap(0x7fe35854b000, 4096) = 0
17:47:04.089677 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.089711 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.090735 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.090772 writev(3, [{"5\1\4\0\366\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\367\3\300\3\366\3\300\3\0\0\0\0H\1\26\0\366\3\300\3\367\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.090863 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.090894 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.092069 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.092104 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.092161 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.092203 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.092238 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.092272 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.092305 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.092339 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.092366 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.092398 close(4)                = 0
17:47:04.092423 munmap(0x7fe35854b000, 4096) = 0
17:47:04.092462 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.092498 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.092532 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.092618 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.092668 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.092708 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.092751 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.092787 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.092828 read(4, "", 4096)       = 0
17:47:04.092854 close(4)                = 0
17:47:04.092878 munmap(0x7fe35854b000, 4096) = 0
17:47:04.092909 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.092945 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.093578 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.093614 writev(3, [{"5\1\4\0\373\3\300\3\16\1\0\0\20\0\20\0007\0\4\0\374\3\300\3\373\3\300\3\0\0\0\0H\1\26\0\373\3\300\3\374\3\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.093706 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.093737 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.094571 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.094605 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.095492 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.095513 rt_sigreturn(0xe)       = 17404232
17:47:04.095599 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.095630 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.095679 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.095717 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.095751 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.095785 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.095818 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.095852 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.095880 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.095912 close(4)                = 0
17:47:04.095938 munmap(0x7fe35854b000, 4096) = 0
17:47:04.095969 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.096004 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.096038 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.096071 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.096104 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.096148 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.096183 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.096210 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.096247 read(4, "", 4096)       = 0
17:47:04.096272 close(4)                = 0
17:47:04.096296 munmap(0x7fe35854b000, 4096) = 0
17:47:04.096326 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.096371 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.096706 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.096742 writev(3, [{"5\1\4\0\0\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\1\4\300\3\0\4\300\3\0\0\0\0H\1\26\0\0\4\300\3\1\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.096833 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.096864 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.097527 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.097561 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.097985 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.098018 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.099053 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.099087 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.099535 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.099569 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.099628 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.099659 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.099707 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.099745 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.099778 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.099812 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.099845 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.099878 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.099906 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.099938 close(4)                = 0
17:47:04.099963 munmap(0x7fe35854b000, 4096) = 0
17:47:04.099993 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.100029 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.100063 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.100096 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.100151 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.100186 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.100219 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.100246 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.100282 read(4, "", 4096)       = 0
17:47:04.100308 close(4)                = 0
17:47:04.100331 munmap(0x7fe35854b000, 4096) = 0
17:47:04.100361 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.100396 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.100750 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.100785 writev(3, [{"5\1\4\0\5\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\6\4\300\3\5\4\300\3\0\0\0\0H\1\26\0\5\4\300\3\6\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.100876 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.100907 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.101237 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.101269 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.101645 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.101677 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.101962 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.101995 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.102232 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.102264 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.102501 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.102533 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.102771 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.102803 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.103039 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.103071 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.103304 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.103335 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.115511 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.115578 rt_sigreturn(0xe)       = 494416391
17:47:04.116571 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.116618 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.117930 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.117968 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.118044 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.118093 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.118129 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.118164 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.118203 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.118238 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.118271 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.118307 close(4)                = 0
17:47:04.118333 munmap(0x7fe35854b000, 4096) = 0
17:47:04.118368 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.118405 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.118438 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.118471 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.118505 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.118536 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.118569 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.118595 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.118632 read(4, "", 4096)       = 0
17:47:04.118658 close(4)                = 0
17:47:04.118681 munmap(0x7fe35854b000, 4096) = 0
17:47:04.118711 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.118746 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.120899 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.120941 writev(3, [{"5\1\4\0\n\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\v\4\300\3\n\4\300\3\0\0\0\0H\1\26\0\n\4\300\3\v\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.121131 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.121164 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.121216 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.121272 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.121306 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.121340 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.121373 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.121406 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.121433 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.121466 close(4)                = 0
17:47:04.121491 munmap(0x7fe35854b000, 4096) = 0
17:47:04.121522 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.121557 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.121591 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.121623 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.121657 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.121688 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.121720 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.121747 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.121783 read(4, "", 4096)       = 0
17:47:04.121808 close(4)                = 0
17:47:04.121832 munmap(0x7fe35854b000, 4096) = 0
17:47:04.121862 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.121896 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.123146 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.123185 writev(3, [{"5\1\4\0\17\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\20\4\300\3\17\4\300\3\0\0\0\0H\1\26\0\17\4\300\3\20\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.123280 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.123314 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.124300 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.124337 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.124388 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.124428 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.124463 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.124497 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.124530 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.124563 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.124590 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.124623 close(4)                = 0
17:47:04.124648 munmap(0x7fe35854b000, 4096) = 0
17:47:04.124679 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.124714 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.124748 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.124780 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.124814 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.124854 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.124887 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.124914 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.124951 read(4, "", 4096)       = 0
17:47:04.124976 close(4)                = 0
17:47:04.125000 munmap(0x7fe35854b000, 4096) = 0
17:47:04.125030 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.125064 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.127070 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.127108 writev(3, [{"5\1\4\0\24\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\25\4\300\3\24\4\300\3\0\0\0\0H\1\26\0\24\4\300\3\25\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.127201 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.127234 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.127286 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.127324 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.127357 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.127390 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.127424 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.127457 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.127484 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.127516 close(4)                = 0
17:47:04.127541 munmap(0x7fe35854b000, 4096) = 0
17:47:04.127571 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.127606 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.127640 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.127672 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.127706 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.127737 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.127769 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.127796 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.127832 read(4, "", 4096)       = 0
17:47:04.127858 close(4)                = 0
17:47:04.127881 munmap(0x7fe35854b000, 4096) = 0
17:47:04.127911 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.127946 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.129495 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.129535 writev(3, [{"5\1\4\0\31\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\32\4\300\3\31\4\300\3\0\0\0\0H\1\26\0\31\4\300\3\32\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.129628 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.129661 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.130352 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.130387 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.130437 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.130476 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.130518 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.130552 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.130585 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.130618 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.130645 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.130678 close(4)                = 0
17:47:04.130703 munmap(0x7fe35854b000, 4096) = 0
17:47:04.130734 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.130770 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.130804 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.130836 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.130869 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.130900 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.130932 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.130958 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.130994 read(4, "", 4096)       = 0
17:47:04.131019 close(4)                = 0
17:47:04.131043 munmap(0x7fe35854b000, 4096) = 0
17:47:04.131073 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.131107 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.133146 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.133185 writev(3, [{"5\1\4\0\36\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\37\4\300\3\36\4\300\3\0\0\0\0H\1\26\0\36\4\300\3\37\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.133278 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.133309 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.133359 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.133397 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.133430 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.133464 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.133496 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.133529 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.133556 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.133589 close(4)                = 0
17:47:04.133613 munmap(0x7fe35854b000, 4096) = 0
17:47:04.133644 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.133679 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.133713 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.133746 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.133779 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.133810 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.133842 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.133869 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.133914 read(4, "", 4096)       = 0
17:47:04.133940 close(4)                = 0
17:47:04.133964 munmap(0x7fe35854b000, 4096) = 0
17:47:04.133994 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.134028 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.135049 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.135086 writev(3, [{"5\1\4\0#\4\300\3\16\1\0\0\20\0\20\0007\0\4\0$\4\300\3#\4\300\3\0\0\0\0H\1\26\0#\4\300\3$\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.135178 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.135211 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.135493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.135515 rt_sigreturn(0xe)       = 26
17:47:04.136475 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.136511 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.136562 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.136602 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.136636 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.136669 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.136702 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.136737 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.136764 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.136797 close(4)                = 0
17:47:04.136821 munmap(0x7fe35854b000, 4096) = 0
17:47:04.136852 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.136888 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.136922 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.136954 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.136987 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.137018 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.137050 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.137077 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.137114 read(4, "", 4096)       = 0
17:47:04.137140 close(4)                = 0
17:47:04.137163 munmap(0x7fe35854b000, 4096) = 0
17:47:04.137193 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.137227 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.139236 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.139274 writev(3, [{"5\1\4\0(\4\300\3\16\1\0\0\20\0\20\0007\0\4\0)\4\300\3(\4\300\3\0\0\0\0H\1\26\0(\4\300\3)\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.139366 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.139399 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.139450 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.139488 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.139521 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.139563 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.139597 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.139630 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.139657 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.139689 close(4)                = 0
17:47:04.139714 munmap(0x7fe35854b000, 4096) = 0
17:47:04.139745 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.139780 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.139814 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.139846 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.139879 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.139910 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.139943 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.139969 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.140005 read(4, "", 4096)       = 0
17:47:04.140031 close(4)                = 0
17:47:04.140055 munmap(0x7fe35854b000, 4096) = 0
17:47:04.140085 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.140119 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.140436 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.140474 writev(3, [{"5\1\4\0-\4\300\3\16\1\0\0\20\0\20\0007\0\4\0.\4\300\3-\4\300\3\0\0\0\0H\1\26\0-\4\300\3.\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.140565 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.140596 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.142507 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.142542 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.142592 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.142631 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.142664 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.142698 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.142731 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.142764 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.142791 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.142824 close(4)                = 0
17:47:04.142849 munmap(0x7fe35854b000, 4096) = 0
17:47:04.142880 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.142915 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.142949 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.142981 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.143015 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.143045 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.143077 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.143104 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.143141 read(4, "", 4096)       = 0
17:47:04.143179 close(4)                = 0
17:47:04.143204 munmap(0x7fe35854b000, 4096) = 0
17:47:04.143234 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.143268 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.143748 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.143785 writev(3, [{"5\1\4\0002\4\300\3\16\1\0\0\20\0\20\0007\0\4\0003\4\300\0032\4\300\3\0\0\0\0H\1\26\0002\4\300\0033\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.143876 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.143906 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.145639 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.145677 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.145729 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.145768 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.145801 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.145835 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.145867 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.145901 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.145928 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.145960 close(4)                = 0
17:47:04.145985 munmap(0x7fe35854b000, 4096) = 0
17:47:04.146016 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.146051 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.146085 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.146117 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.146151 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.146181 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.146214 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.146240 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.146277 read(4, "", 4096)       = 0
17:47:04.146302 close(4)                = 0
17:47:04.146326 munmap(0x7fe35854b000, 4096) = 0
17:47:04.146355 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.146390 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.146718 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.146755 writev(3, [{"5\1\4\0007\4\300\3\16\1\0\0\20\0\20\0007\0\4\0008\4\300\0037\4\300\3\0\0\0\0H\1\26\0007\4\300\0038\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.146846 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.146877 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.148453 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.148490 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.148996 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.149031 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.149082 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.149122 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.149167 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.149202 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.149235 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.149268 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.149295 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.149328 close(4)                = 0
17:47:04.149353 munmap(0x7fe35854b000, 4096) = 0
17:47:04.149383 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.149418 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.149452 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.149484 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.149518 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.149548 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.149581 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.149607 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.149643 read(4, "", 4096)       = 0
17:47:04.149668 close(4)                = 0
17:47:04.149692 munmap(0x7fe35854b000, 4096) = 0
17:47:04.149722 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.149757 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.150612 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.150649 writev(3, [{"5\1\4\0<\4\300\3\16\1\0\0\20\0\20\0007\0\4\0=\4\300\3<\4\300\3\0\0\0\0H\1\26\0<\4\300\3=\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.150740 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.150771 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.151997 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.152032 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.152355 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.152391 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.152442 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.152483 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.152518 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.152553 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.152587 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.152620 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.152647 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.152680 close(4)                = 0
17:47:04.152704 munmap(0x7fe35854b000, 4096) = 0
17:47:04.152735 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.152770 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.152804 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.152837 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.152870 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.152909 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.152943 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.152969 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.153006 read(4, "", 4096)       = 0
17:47:04.153031 close(4)                = 0
17:47:04.153055 munmap(0x7fe35854b000, 4096) = 0
17:47:04.153085 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.153120 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.153789 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.153825 writev(3, [{"5\1\4\0A\4\300\3\16\1\0\0\20\0\20\0007\0\4\0B\4\300\3A\4\300\3\0\0\0\0H\1\26\0A\4\300\3B\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.153916 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.153947 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.154453 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.154486 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.155492 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.155513 rt_sigreturn(0xe)       = 292096
17:47:04.155634 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.155666 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.155984 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.156017 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.156065 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.156103 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.156148 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.156185 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.156218 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.156252 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.156279 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.156311 close(4)                = 0
17:47:04.156336 munmap(0x7fe35854b000, 4096) = 0
17:47:04.156367 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.156403 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.156437 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.156470 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.156503 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.156533 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.156566 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.156592 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.156629 read(4, "", 4096)       = 0
17:47:04.156655 close(4)                = 0
17:47:04.156678 munmap(0x7fe35854b000, 4096) = 0
17:47:04.156708 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.156743 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.157042 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.157078 writev(3, [{"5\1\4\0F\4\300\3\16\1\0\0\20\0\20\0007\0\4\0G\4\300\3F\4\300\3\0\0\0\0H\1\26\0F\4\300\3G\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.157177 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.157207 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.157579 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.157613 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.158025 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.158058 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.158359 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.158392 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.158668 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.158700 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.158974 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.159006 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.159266 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.159299 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.159514 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.159546 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.159751 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.159784 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.160051 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.160084 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.160347 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.160382 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.160629 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.160663 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.160901 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.160934 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.161179 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.161211 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.161470 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.161502 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.161785 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.161818 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.162086 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.162118 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.162353 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.162385 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.162675 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.162709 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.162968 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.163000 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.163265 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.163298 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.175521 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.175589 rt_sigreturn(0xe)       = 15
17:47:04.176681 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.176732 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.177135 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.177173 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.177252 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.177302 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.177341 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.177379 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.177421 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.177458 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.177512 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.177550 close(4)                = 0
17:47:04.177579 munmap(0x7fe35854b000, 4096) = 0
17:47:04.177618 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.177657 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.177694 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.177729 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.177767 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.177801 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.177836 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.177865 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.177905 read(4, "", 4096)       = 0
17:47:04.177932 close(4)                = 0
17:47:04.177958 munmap(0x7fe35854b000, 4096) = 0
17:47:04.177991 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.178029 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.180210 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.180254 writev(3, [{"5\1\4\0K\4\300\3\16\1\0\0\20\0\20\0007\0\4\0L\4\300\3K\4\300\3\0\0\0\0H\1\26\0K\4\300\3L\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.180443 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.180479 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.180534 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.180575 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.180612 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.180648 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.180684 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.180719 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.180748 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.180783 close(4)                = 0
17:47:04.180811 munmap(0x7fe35854b000, 4096) = 0
17:47:04.180844 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.180883 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.180919 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.180954 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.180991 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.181023 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.181059 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.181088 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.181127 read(4, "", 4096)       = 0
17:47:04.181155 close(4)                = 0
17:47:04.181181 munmap(0x7fe35854b000, 4096) = 0
17:47:04.181213 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.181251 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.183381 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.183421 writev(3, [{"5\1\4\0P\4\300\3\16\1\0\0\20\0\20\0007\0\4\0Q\4\300\3P\4\300\3\0\0\0\0H\1\26\0P\4\300\3Q\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.183517 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.183553 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.183698 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.183734 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.183786 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.183832 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.183869 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.183905 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.183941 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.183977 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.184007 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.184042 close(4)                = 0
17:47:04.184070 munmap(0x7fe35854b000, 4096) = 0
17:47:04.184104 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.184158 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.184196 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.184231 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.184268 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.184301 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.184337 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.184366 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.184405 read(4, "", 4096)       = 0
17:47:04.184433 close(4)                = 0
17:47:04.184460 munmap(0x7fe35854b000, 4096) = 0
17:47:04.184493 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.184530 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.187569 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLIN|POLLOUT}])
17:47:04.187638 read(3, "\34\0u\v\16\1\0\0r\1\0\0009J\215\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0u\v\16\1\0\0s\1\0\0009J\215\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 128
17:47:04.187687 writev(3, [{"5\1\4\0U\4\300\3\16\1\0\0\20\0\20\0007\0\4\0V\4\300\3U\4\300\3\0\0\0\0H\1\26\0U\4\300\3V\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.187793 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.187831 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.187862 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.187928 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.187973 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.188010 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.188049 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.188089 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.188126 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.188197 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.188238 close(4)                = 0
17:47:04.188267 munmap(0x7fe35854b000, 4096) = 0
17:47:04.188303 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.188343 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.188380 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.188416 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.188453 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.188486 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.188522 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.188551 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.188591 read(4, "", 4096)       = 0
17:47:04.188620 close(4)                = 0
17:47:04.188647 munmap(0x7fe35854b000, 4096) = 0
17:47:04.188680 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.188718 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.190807 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.190846 writev(3, [{"5\1\4\0Z\4\300\3\16\1\0\0\20\0\20\0007\0\4\0[\4\300\3Z\4\300\3\0\0\0\0H\1\26\0Z\4\300\3[\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.190944 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.190977 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.191030 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.191071 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.191108 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.191145 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.191180 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.191216 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.191246 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.191281 close(4)                = 0
17:47:04.191309 munmap(0x7fe35854b000, 4096) = 0
17:47:04.191342 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.191381 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.191418 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.191453 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.191489 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.191522 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.191557 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.191586 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.191626 read(4, "", 4096)       = 0
17:47:04.191653 close(4)                = 0
17:47:04.191680 munmap(0x7fe35854b000, 4096) = 0
17:47:04.191712 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.191750 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.192003 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.192042 writev(3, [{"5\1\4\0_\4\300\3\16\1\0\0\20\0\20\0007\0\4\0`\4\300\3_\4\300\3\0\0\0\0H\1\26\0_\4\300\3`\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.192150 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.192228 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.195498 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.195540 rt_sigreturn(0xe)       = 4364043
17:47:04.195724 read(3, "\34\0\234\v\16\1\0\0r\1\0\0BJ\215\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\234\v\16\1\0\0s\1\0\0BJ\215\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 256
17:47:04.195786 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.195827 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.195862 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.195937 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.195988 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.196031 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.196073 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.196120 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.196172 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.196212 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.196264 close(4)                = 0
17:47:04.196296 munmap(0x7fe35854b000, 4096) = 0
17:47:04.196338 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.196387 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.196432 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.196474 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.196522 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.196563 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.196604 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.196636 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.196683 read(4, "", 4096)       = 0
17:47:04.196715 close(4)                = 0
17:47:04.196746 munmap(0x7fe35854b000, 4096) = 0
17:47:04.196784 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.196827 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.199460 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.199508 writev(3, [{"5\1\4\0d\4\300\3\16\1\0\0\20\0\20\0007\0\4\0e\4\300\3d\4\300\3\0\0\0\0H\1\26\0d\4\300\3e\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.199557 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.199589 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.199910 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.199946 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.200001 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.200043 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.200080 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.200154 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.200193 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.200229 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.200259 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.200294 close(4)                = 0
17:47:04.200322 munmap(0x7fe35854b000, 4096) = 0
17:47:04.200357 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.200395 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.200432 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.200467 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.200504 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.200537 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.200572 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.200601 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.200641 read(4, "", 4096)       = 0
17:47:04.200669 close(4)                = 0
17:47:04.200695 munmap(0x7fe35854b000, 4096) = 0
17:47:04.200727 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.200765 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.202783 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.202821 writev(3, [{"5\1\4\0i\4\300\3\16\1\0\0\20\0\20\0007\0\4\0j\4\300\3i\4\300\3\0\0\0\0H\1\26\0i\4\300\3j\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.202866 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.202898 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.202949 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.202990 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.203026 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.203062 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.203098 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.203133 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.203163 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.203198 close(4)                = 0
17:47:04.203226 munmap(0x7fe35854b000, 4096) = 0
17:47:04.203258 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.203297 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.203333 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.203368 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.203404 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.203438 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.203473 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.203502 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.203541 read(4, "", 4096)       = 0
17:47:04.203569 close(4)                = 0
17:47:04.203595 munmap(0x7fe35854b000, 4096) = 0
17:47:04.203628 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.203675 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.204533 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.204572 writev(3, [{"5\1\4\0n\4\300\3\16\1\0\0\20\0\20\0007\0\4\0o\4\300\3n\4\300\3\0\0\0\0H\1\26\0n\4\300\3o\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.204617 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.204648 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.206037 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.206073 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.206126 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.206167 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.206203 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.206240 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.206275 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.206311 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.206340 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.206375 close(4)                = 0
17:47:04.206403 munmap(0x7fe35854b000, 4096) = 0
17:47:04.206436 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.206474 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.206511 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.206545 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.206581 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.206614 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.206649 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.206678 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.206717 read(4, "", 4096)       = 0
17:47:04.206745 close(4)                = 0
17:47:04.206771 munmap(0x7fe35854b000, 4096) = 0
17:47:04.206803 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.206840 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.208359 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.208405 writev(3, [{"5\1\4\0s\4\300\3\16\1\0\0\20\0\20\0007\0\4\0t\4\300\3s\4\300\3\0\0\0\0H\1\26\0s\4\300\3t\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.208526 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.208562 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.210303 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.210344 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.210412 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.210462 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.210506 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.210552 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.210596 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.210639 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.210690 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.210733 close(4)                = 0
17:47:04.210764 munmap(0x7fe35854b000, 4096) = 0
17:47:04.210803 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.210848 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.210894 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.210938 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.210986 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.211027 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.211071 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.211107 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.211155 read(4, "", 4096)       = 0
17:47:04.211188 close(4)                = 0
17:47:04.211219 munmap(0x7fe35854b000, 4096) = 0
17:47:04.211258 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.211303 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.212821 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.212865 writev(3, [{"5\1\4\0x\4\300\3\16\1\0\0\20\0\20\0007\0\4\0y\4\300\3x\4\300\3\0\0\0\0H\1\26\0x\4\300\3y\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.212990 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.213025 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.214683 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.214726 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.214796 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.214840 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.214879 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.214922 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.214966 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.215020 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.215054 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.215094 close(4)                = 0
17:47:04.215120 munmap(0x7fe35854b000, 4096) = 0
17:47:04.215153 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.215199 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.215243 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.215286 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.215331 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.215368 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.215407 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.215438 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.215490 read(4, "", 4096)       = 0
17:47:04.215521 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.215544 rt_sigreturn(0xe)       = 0
17:47:04.215576 close(4)                = 0
17:47:04.215606 munmap(0x7fe35854b000, 4096) = 0
17:47:04.215658 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.215705 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.216968 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.217011 writev(3, [{"5\1\4\0}\4\300\3\16\1\0\0\20\0\20\0007\0\4\0~\4\300\3}\4\300\3\0\0\0\0H\1\26\0}\4\300\3~\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.217118 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.217151 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.218543 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.218580 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.218636 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.218678 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.218714 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.218751 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.218788 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.218824 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.218854 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.218890 close(4)                = 0
17:47:04.218919 munmap(0x7fe35854b000, 4096) = 0
17:47:04.218952 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.218991 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.219028 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.219062 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.219181 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.219219 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.219255 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.219285 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.219325 read(4, "", 4096)       = 0
17:47:04.219353 close(4)                = 0
17:47:04.219380 munmap(0x7fe35854b000, 4096) = 0
17:47:04.219412 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.219451 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.219666 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.219704 writev(3, [{"5\1\4\0\202\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\203\4\300\3\202\4\300\3\0\0\0\0H\1\26\0\202\4\300\3\203\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.219798 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.219831 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.220755 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.220791 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.221953 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.221990 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.222309 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.222344 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.222397 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.222438 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.222487 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.222524 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.222559 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.222595 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.222625 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.222660 close(4)                = 0
17:47:04.222687 munmap(0x7fe35854b000, 4096) = 0
17:47:04.222721 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.222759 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.222797 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.222832 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.222868 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.222901 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.222937 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.222966 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.223006 read(4, "", 4096)       = 0
17:47:04.223034 close(4)                = 0
17:47:04.223061 munmap(0x7fe35854b000, 4096) = 0
17:47:04.223093 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.223131 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.223636 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.223675 writev(3, [{"5\1\4\0\207\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\210\4\300\3\207\4\300\3\0\0\0\0H\1\26\0\207\4\300\3\210\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.223769 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.223803 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.224385 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.224422 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.224792 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.224827 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.225781 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.225819 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.226376 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.226415 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.226770 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.226806 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.226843 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.226874 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.226925 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.226966 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.227002 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.227038 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.227074 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.227110 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.227140 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.227175 close(4)                = 0
17:47:04.227202 munmap(0x7fe35854b000, 4096) = 0
17:47:04.227244 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.227283 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.227320 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.227355 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.227391 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.227424 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.227459 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.227488 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.227528 read(4, "", 4096)       = 0
17:47:04.227555 close(4)                = 0
17:47:04.227582 munmap(0x7fe35854b000, 4096) = 0
17:47:04.227614 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.227652 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.227992 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.228031 writev(3, [{"5\1\4\0\214\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\215\4\300\3\214\4\300\3\0\0\0\0H\1\26\0\214\4\300\3\215\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.228139 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.228175 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.228482 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.228517 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.228773 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.228808 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.229103 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.229139 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.229439 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.229474 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.229714 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.229749 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.229981 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.230015 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.230235 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.230270 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.230488 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.230522 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.230741 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.230776 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.230993 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.231028 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.231247 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.231282 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.231502 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.231536 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.231750 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.231784 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.232002 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.232037 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.232274 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.232309 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.232523 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.232568 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.232783 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.232819 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.233031 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.233066 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.233277 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.233311 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.233522 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.233556 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.233771 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.233805 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.234016 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.234050 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.234263 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.234298 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.235496 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.235521 rt_sigreturn(0xe)       = 1058232
17:47:04.248150 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.248238 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.249566 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.249605 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.249685 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.249736 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.249774 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.249813 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.249854 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.249892 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.249926 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.249964 close(4)                = 0
17:47:04.249993 munmap(0x7fe35854b000, 4096) = 0
17:47:04.250031 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.250070 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.250107 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.250142 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.250180 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.250214 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.250249 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.250278 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.250317 read(4, "", 4096)       = 0
17:47:04.250345 close(4)                = 0
17:47:04.250372 munmap(0x7fe35854b000, 4096) = 0
17:47:04.250404 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.250442 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.252584 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.252624 writev(3, [{"5\1\4\0\221\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\222\4\300\3\221\4\300\3\0\0\0\0H\1\26\0\221\4\300\3\222\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.252814 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.252849 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.252919 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.252961 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.252997 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.253034 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.253070 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.253105 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.253135 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.253170 close(4)                = 0
17:47:04.253197 munmap(0x7fe35854b000, 4096) = 0
17:47:04.253231 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.253270 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.253307 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.253341 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.253377 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.253410 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.253445 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.253474 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.253513 read(4, "", 4096)       = 0
17:47:04.253541 close(4)                = 0
17:47:04.253567 munmap(0x7fe35854b000, 4096) = 0
17:47:04.253599 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.253636 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.254886 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.254924 writev(3, [{"5\1\4\0\226\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\227\4\300\3\226\4\300\3\0\0\0\0H\1\26\0\226\4\300\3\227\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.255020 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.255054 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.255493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.255515 rt_sigreturn(0xe)       = 4357012
17:47:04.256093 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.256141 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.256197 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.256237 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.256271 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.256306 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.256341 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.256376 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.256404 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.256438 close(4)                = 0
17:47:04.256464 munmap(0x7fe35854b000, 4096) = 0
17:47:04.256497 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.256534 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.256570 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.256614 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.256652 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.256684 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.256718 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.256746 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.256784 read(4, "", 4096)       = 0
17:47:04.256811 close(4)                = 0
17:47:04.256837 munmap(0x7fe35854b000, 4096) = 0
17:47:04.256868 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.256904 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.258950 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.258993 writev(3, [{"5\1\4\0\233\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\234\4\300\3\233\4\300\3\0\0\0\0H\1\26\0\233\4\300\3\234\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.259112 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.259151 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.259207 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.259251 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.259288 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.259324 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.259360 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.259395 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.259425 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.259460 close(4)                = 0
17:47:04.259488 munmap(0x7fe35854b000, 4096) = 0
17:47:04.259521 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.259559 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.259596 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.259631 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.259667 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.259700 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.259735 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.259764 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.259803 read(4, "", 4096)       = 0
17:47:04.259831 close(4)                = 0
17:47:04.259857 munmap(0x7fe35854b000, 4096) = 0
17:47:04.259890 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.259928 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.261483 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.261522 writev(3, [{"5\1\4\0\240\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\241\4\300\3\240\4\300\3\0\0\0\0H\1\26\0\240\4\300\3\241\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.261626 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.261665 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.262357 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.262392 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.262453 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.262493 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.262526 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.262559 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.262597 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.262631 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.262658 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.262691 close(4)                = 0
17:47:04.262716 munmap(0x7fe35854b000, 4096) = 0
17:47:04.262748 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.262784 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.262818 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.262850 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.262884 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.262914 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.262947 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.262974 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.263010 read(4, "", 4096)       = 0
17:47:04.263036 close(4)                = 0
17:47:04.263060 munmap(0x7fe35854b000, 4096) = 0
17:47:04.263090 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.263124 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.265197 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.265237 writev(3, [{"5\1\4\0\245\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\246\4\300\3\245\4\300\3\0\0\0\0H\1\26\0\245\4\300\3\246\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.265330 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.265361 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.265411 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.265453 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.265488 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.265522 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.265555 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.265588 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.265616 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.265648 close(4)                = 0
17:47:04.265673 munmap(0x7fe35854b000, 4096) = 0
17:47:04.265704 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.265739 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.265773 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.265805 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.265839 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.265869 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.265910 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.265937 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.265974 read(4, "", 4096)       = 0
17:47:04.265999 close(4)                = 0
17:47:04.266023 munmap(0x7fe35854b000, 4096) = 0
17:47:04.266053 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.266087 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.267317 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.267354 writev(3, [{"5\1\4\0\252\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\253\4\300\3\252\4\300\3\0\0\0\0H\1\26\0\252\4\300\3\253\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.267451 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.267483 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.268523 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.268558 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.268609 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.268649 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.268682 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.268715 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.268748 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.268782 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.268809 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.268841 close(4)                = 0
17:47:04.268866 munmap(0x7fe35854b000, 4096) = 0
17:47:04.268896 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.268931 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.268965 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.268997 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.269031 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.269061 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.269093 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.269120 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.269156 read(4, "", 4096)       = 0
17:47:04.269181 close(4)                = 0
17:47:04.269205 munmap(0x7fe35854b000, 4096) = 0
17:47:04.269235 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.269271 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.271288 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.271326 writev(3, [{"5\1\4\0\257\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\260\4\300\3\257\4\300\3\0\0\0\0H\1\26\0\257\4\300\3\260\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.271418 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.271449 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.271498 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.271536 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.271578 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.271613 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.271646 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.271679 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.271706 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.271739 close(4)                = 0
17:47:04.271763 munmap(0x7fe35854b000, 4096) = 0
17:47:04.271793 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.271829 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.271863 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.271895 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.271929 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.271959 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.271992 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.272018 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.272054 read(4, "", 4096)       = 0
17:47:04.272080 close(4)                = 0
17:47:04.272104 munmap(0x7fe35854b000, 4096) = 0
17:47:04.272140 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.272180 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.272717 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.272753 writev(3, [{"5\1\4\0\264\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\265\4\300\3\264\4\300\3\0\0\0\0H\1\26\0\264\4\300\3\265\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.272845 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.272875 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.274555 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.274589 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.274638 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.274676 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.274709 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.274743 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.274776 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.274809 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.274836 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.274870 close(4)                = 0
17:47:04.274894 munmap(0x7fe35854b000, 4096) = 0
17:47:04.274928 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.274963 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.274997 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.275035 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.275069 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.275100 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.275133 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.275286 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.275327 read(4, "", 4096)       = 0
17:47:04.275352 close(4)                = 0
17:47:04.275376 munmap(0x7fe35854b000, 4096) = 0
17:47:04.275407 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.275443 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.275491 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.275510 rt_sigreturn(0xe)       = 320920
17:47:04.276367 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.276405 writev(3, [{"5\1\4\0\271\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\272\4\300\3\271\4\300\3\0\0\0\0H\1\26\0\271\4\300\3\272\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.276499 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.276530 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.277893 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.277929 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.277981 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.278021 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.278055 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.278089 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.278122 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.278156 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.278183 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.278215 close(4)                = 0
17:47:04.278239 munmap(0x7fe35854b000, 4096) = 0
17:47:04.278270 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.278306 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.278339 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.278371 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.278405 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.278435 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.278467 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.278494 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.278530 read(4, "", 4096)       = 0
17:47:04.278555 close(4)                = 0
17:47:04.278579 munmap(0x7fe35854b000, 4096) = 0
17:47:04.278608 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.278643 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.279497 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.279533 writev(3, [{"5\1\4\0\276\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\277\4\300\3\276\4\300\3\0\0\0\0H\1\26\0\276\4\300\3\277\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.279625 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.279655 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.281039 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.281075 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.281126 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.281175 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.281211 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.281245 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.281278 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.281311 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.281338 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.281370 close(4)                = 0
17:47:04.281395 munmap(0x7fe35854b000, 4096) = 0
17:47:04.281425 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.281460 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.281494 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.281526 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.281560 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.281591 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.281623 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.281650 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.281687 read(4, "", 4096)       = 0
17:47:04.281718 close(4)                = 0
17:47:04.281743 munmap(0x7fe35854b000, 4096) = 0
17:47:04.281772 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.281807 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.282324 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.282360 writev(3, [{"5\1\4\0\303\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\304\4\300\3\303\4\300\3\0\0\0\0H\1\26\0\303\4\300\3\304\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.282451 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.282482 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.283884 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.283918 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.284435 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.284469 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.284519 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.284557 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.284595 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.284629 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.284662 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.284695 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.284722 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.284755 close(4)                = 0
17:47:04.284779 munmap(0x7fe35854b000, 4096) = 0
17:47:04.284810 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.284846 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.284880 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.284912 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.284955 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.284986 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.285019 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.285045 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.285081 read(4, "", 4096)       = 0
17:47:04.285106 close(4)                = 0
17:47:04.285130 munmap(0x7fe35854b000, 4096) = 0
17:47:04.285159 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.285194 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.285976 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.286014 writev(3, [{"5\1\4\0\310\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\311\4\300\3\310\4\300\3\0\0\0\0H\1\26\0\310\4\300\3\311\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.286107 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.286137 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.286862 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.286897 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.288148 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.288184 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.288217 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.288245 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.288294 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.288333 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.288366 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.288406 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.288441 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.288475 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.288502 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.288535 close(4)                = 0
17:47:04.288560 munmap(0x7fe35854b000, 4096) = 0
17:47:04.288590 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.288626 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.288659 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.288692 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.288725 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.288755 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.288788 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.288814 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.288851 read(4, "", 4096)       = 0
17:47:04.288876 close(4)                = 0
17:47:04.288899 munmap(0x7fe35854b000, 4096) = 0
17:47:04.288929 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.288963 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.289659 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.289697 writev(3, [{"5\1\4\0\315\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\316\4\300\3\315\4\300\3\0\0\0\0H\1\26\0\315\4\300\3\316\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.289801 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.289831 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.290246 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.290279 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.290617 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.290649 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.291421 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.291457 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.291963 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.292007 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.292339 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.292375 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.292647 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.292679 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.292796 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.292827 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.292876 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.292915 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.292948 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.292981 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.293014 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.293048 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.293075 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.293107 close(4)                = 0
17:47:04.293132 munmap(0x7fe35854b000, 4096) = 0
17:47:04.293162 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.293203 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.293237 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.293269 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.293302 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.293332 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.293365 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.293391 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.293428 read(4, "", 4096)       = 0
17:47:04.293453 close(4)                = 0
17:47:04.293477 munmap(0x7fe35854b000, 4096) = 0
17:47:04.293507 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.293541 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.293741 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.293775 writev(3, [{"5\1\4\0\322\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\323\4\300\3\322\4\300\3\0\0\0\0H\1\26\0\322\4\300\3\323\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.293867 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.294142 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.294691 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.294729 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.294956 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.294988 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.295216 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.295249 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.295452 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.295483 select(4, [3], [], [3], {0, 0}) = ? ERESTARTNOHAND (To be restarted)
17:47:04.295515 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.295531 rt_sigreturn(0xe)       = -1 EINTR (Interrupted system call)
17:47:04.295754 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.295786 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.296031 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.296067 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.296297 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.296332 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.296540 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.296571 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.296786 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.296817 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.297030 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.297064 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.297283 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.297315 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.297528 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.297560 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.297786 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.297817 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.298059 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.298092 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.298323 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.298354 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.298567 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.298598 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.312611 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.312697 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.314427 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.314463 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.314538 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.314586 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.314621 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.314656 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.314695 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.314730 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.314763 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.314798 close(4)                = 0
17:47:04.314824 munmap(0x7fe35854b000, 4096) = 0
17:47:04.314859 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.314895 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.314929 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.314961 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.314996 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.315027 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.315077 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.315105 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.315142 read(4, "", 4096)       = 0
17:47:04.315168 close(4)                = 0
17:47:04.315196 munmap(0x7fe35854b000, 4096) = 0
17:47:04.315228 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.315264 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.315493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.315516 rt_sigreturn(0xe)       = 4370261
17:47:04.317470 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.317511 writev(3, [{"5\1\4\0\327\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\330\4\300\3\327\4\300\3\0\0\0\0H\1\26\0\327\4\300\3\330\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.317699 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.317730 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.317780 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.317818 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.317851 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.317884 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.317917 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.317950 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.317977 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.318010 close(4)                = 0
17:47:04.318035 munmap(0x7fe35854b000, 4096) = 0
17:47:04.318074 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.318111 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.318145 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.318177 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.318211 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.318241 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.318273 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.318300 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.318336 read(4, "", 4096)       = 0
17:47:04.318361 close(4)                = 0
17:47:04.318385 munmap(0x7fe35854b000, 4096) = 0
17:47:04.318414 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.318449 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.319228 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.319266 writev(3, [{"5\1\4\0\334\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\335\4\300\3\334\4\300\3\0\0\0\0H\1\26\0\334\4\300\3\335\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.319359 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.319390 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.320836 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.320871 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.320924 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.320968 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.321014 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.321049 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.321082 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.321115 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.321142 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.321175 close(4)                = 0
17:47:04.321199 munmap(0x7fe35854b000, 4096) = 0
17:47:04.321230 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.321265 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.321299 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.321331 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.321364 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.321394 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.321427 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.321453 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.321489 read(4, "", 4096)       = 0
17:47:04.321514 close(4)                = 0
17:47:04.321537 munmap(0x7fe35854b000, 4096) = 0
17:47:04.321567 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.321601 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.323723 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.323787 writev(3, [{"5\1\4\0\341\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\342\4\300\3\341\4\300\3\0\0\0\0H\1\26\0\341\4\300\3\342\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.323911 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.323948 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.324015 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.324063 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.324106 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.324172 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.324210 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.324251 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.324279 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.324314 close(4)                = 0
17:47:04.324339 munmap(0x7fe35854b000, 4096) = 0
17:47:04.324371 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.324408 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.324442 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.324475 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.324516 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.324547 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.324581 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.324608 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.324661 read(4, "", 4096)       = 0
17:47:04.324689 close(4)                = 0
17:47:04.324715 munmap(0x7fe35854b000, 4096) = 0
17:47:04.324751 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.324794 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.325714 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.325752 writev(3, [{"5\1\4\0\346\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\347\4\300\3\346\4\300\3\0\0\0\0H\1\26\0\346\4\300\3\347\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.325855 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.325886 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.327243 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.327278 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.327328 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.327367 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.327400 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.327433 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.327466 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.327500 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.327527 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.327560 close(4)                = 0
17:47:04.327585 munmap(0x7fe35854b000, 4096) = 0
17:47:04.327616 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.327652 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.327686 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.327724 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.327758 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.327789 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.327821 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.327848 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.327884 read(4, "", 4096)       = 0
17:47:04.327909 close(4)                = 0
17:47:04.327933 munmap(0x7fe35854b000, 4096) = 0
17:47:04.327970 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.328005 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.330055 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.330093 writev(3, [{"5\1\4\0\353\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\354\4\300\3\353\4\300\3\0\0\0\0H\1\26\0\353\4\300\3\354\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.330187 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.330218 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.330267 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.330305 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.330338 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.330371 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.330414 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.330447 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.330474 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.330506 close(4)                = 0
17:47:04.330531 munmap(0x7fe35854b000, 4096) = 0
17:47:04.330561 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.330601 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.330635 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.330668 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.330702 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.330732 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.330765 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.330792 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.330835 read(4, "", 4096)       = 0
17:47:04.330860 close(4)                = 0
17:47:04.330884 munmap(0x7fe35854b000, 4096) = 0
17:47:04.330914 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.330948 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.331900 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.331937 writev(3, [{"5\1\4\0\360\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\361\4\300\3\360\4\300\3\0\0\0\0H\1\26\0\360\4\300\3\361\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.332030 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.332061 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.333386 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.333421 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.333476 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.333514 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.333548 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.333581 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.333614 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.333647 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.333677 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.333713 close(4)                = 0
17:47:04.333738 munmap(0x7fe35854b000, 4096) = 0
17:47:04.333769 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.333804 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.333838 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.333871 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.333904 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.333934 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.333967 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.333993 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.334029 read(4, "", 4096)       = 0
17:47:04.334055 close(4)                = 0
17:47:04.334088 munmap(0x7fe35854b000, 4096) = 0
17:47:04.334118 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.334153 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.335492 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.335516 rt_sigreturn(0xe)       = 32
17:47:04.336300 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.336341 writev(3, [{"5\1\4\0\365\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\366\4\300\3\365\4\300\3\0\0\0\0H\1\26\0\365\4\300\3\366\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.336434 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.336465 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.336515 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.336558 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.336595 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.336629 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.336664 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.336697 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.336725 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.336758 close(4)                = 0
17:47:04.336782 munmap(0x7fe35854b000, 4096) = 0
17:47:04.336813 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.336849 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.336883 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.336915 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.336949 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.336979 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.337012 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.337039 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.337075 read(4, "", 4096)       = 0
17:47:04.337100 close(4)                = 0
17:47:04.337124 munmap(0x7fe35854b000, 4096) = 0
17:47:04.337154 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.337188 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.337547 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.337584 writev(3, [{"5\1\4\0\372\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\373\4\300\3\372\4\300\3\0\0\0\0H\1\26\0\372\4\300\3\373\4\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.337680 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.337710 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.339603 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.339637 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.339686 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.339725 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.339758 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.339791 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.339833 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.339867 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.339894 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.339926 close(4)                = 0
17:47:04.339951 munmap(0x7fe35854b000, 4096) = 0
17:47:04.339981 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.340017 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.340051 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.340083 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.340116 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.340156 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.340190 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.340216 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.340253 read(4, "", 4096)       = 0
17:47:04.340278 close(4)                = 0
17:47:04.340302 munmap(0x7fe35854b000, 4096) = 0
17:47:04.340332 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.340370 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.341226 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.341264 writev(3, [{"5\1\4\0\377\4\300\3\16\1\0\0\20\0\20\0007\0\4\0\0\5\300\3\377\4\300\3\0\0\0\0H\1\26\0\377\4\300\3\0\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.341362 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.341393 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.342834 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.342868 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.342918 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.342956 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.342990 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.343029 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.343063 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.343096 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.343124 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.343157 close(4)                = 0
17:47:04.343182 munmap(0x7fe35854b000, 4096) = 0
17:47:04.343213 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.343253 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.343288 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.343321 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.343359 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.343390 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.343422 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.343449 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.343486 read(4, "", 4096)       = 0
17:47:04.343511 close(4)                = 0
17:47:04.343535 munmap(0x7fe35854b000, 4096) = 0
17:47:04.343574 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.343610 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.344477 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.344514 writev(3, [{"5\1\4\0\4\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\5\5\300\3\4\5\300\3\0\0\0\0H\1\26\0\4\5\300\3\5\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.344606 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.344637 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.346031 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.346066 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.346118 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.346157 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.346194 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.346230 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.346263 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.346297 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.346325 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.346358 close(4)                = 0
17:47:04.346383 munmap(0x7fe35854b000, 4096) = 0
17:47:04.346413 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.346448 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.346482 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.346514 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.346548 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.346579 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.346611 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.346638 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.346675 read(4, "", 4096)       = 0
17:47:04.346701 close(4)                = 0
17:47:04.346725 munmap(0x7fe35854b000, 4096) = 0
17:47:04.346754 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.346789 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.347398 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.347435 writev(3, [{"5\1\4\0\t\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\n\5\300\3\t\5\300\3\0\0\0\0H\1\26\0\t\5\300\3\n\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.347526 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.347556 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.349101 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.349139 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.349454 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.349487 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.349536 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.349574 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.349608 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.349651 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.349685 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.349722 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.349750 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.349783 close(4)                = 0
17:47:04.349808 munmap(0x7fe35854b000, 4096) = 0
17:47:04.349838 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.349874 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.349908 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.349948 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.349983 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.350018 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.350052 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.350079 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.350116 read(4, "", 4096)       = 0
17:47:04.350141 close(4)                = 0
17:47:04.350165 munmap(0x7fe35854b000, 4096) = 0
17:47:04.350194 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.350230 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.351102 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.351141 writev(3, [{"5\1\4\0\16\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\17\5\300\3\16\5\300\3\0\0\0\0H\1\26\0\16\5\300\3\17\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.351234 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.351265 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.352530 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.352566 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.352895 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.352930 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.352981 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.353021 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.353056 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.353090 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.353123 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.353157 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.353184 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.353216 close(4)                = 0
17:47:04.353241 munmap(0x7fe35854b000, 4096) = 0
17:47:04.353271 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.353306 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.353340 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.353372 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.353406 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.353436 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.353468 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.353504 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.353544 read(4, "", 4096)       = 0
17:47:04.353570 close(4)                = 0
17:47:04.353593 munmap(0x7fe35854b000, 4096) = 0
17:47:04.353623 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.353658 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.354216 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.354253 writev(3, [{"5\1\4\0\23\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\24\5\300\3\23\5\300\3\0\0\0\0H\1\26\0\23\5\300\3\24\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.354345 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.354376 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.354949 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.354984 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.355458 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.355490 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.355507 rt_sigreturn(0xe)       = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.355534 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.356489 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.356523 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.356935 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.356969 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.357089 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.357129 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.357194 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.357243 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.357279 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.357312 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.357346 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.357381 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.357408 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.357441 close(4)                = 0
17:47:04.357466 munmap(0x7fe35854b000, 4096) = 0
17:47:04.357497 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.357532 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.357566 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.357604 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.357640 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.357676 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.357709 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.357736 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.357773 read(4, "", 4096)       = 0
17:47:04.357798 close(4)                = 0
17:47:04.357822 munmap(0x7fe35854b000, 4096) = 0
17:47:04.357852 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.357887 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.358206 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.358250 writev(3, [{"5\1\4\0\30\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\31\5\300\3\30\5\300\3\0\0\0\0H\1\26\0\30\5\300\3\31\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.358349 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.358380 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.358672 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.358707 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.358998 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.359030 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.359353 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.359386 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.359697 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.359730 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.360001 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.360034 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.360286 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.360320 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.360556 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.360589 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.360823 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.360855 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.361083 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.361115 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.361345 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.361378 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.361615 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.361650 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.361879 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.361911 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.362141 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.362174 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.362405 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.362441 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.362671 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.362703 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.375508 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.375577 rt_sigreturn(0xe)       = 318636305
17:47:04.377421 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.377488 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.378839 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.378874 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.378948 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.378993 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.379027 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.379062 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.379100 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.379135 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.379168 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.379203 close(4)                = 0
17:47:04.379229 munmap(0x7fe35854b000, 4096) = 0
17:47:04.379265 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.379301 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.379354 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.379391 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.379428 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.379459 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.379492 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.379519 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.379558 read(4, "", 4096)       = 0
17:47:04.379583 close(4)                = 0
17:47:04.379611 munmap(0x7fe35854b000, 4096) = 0
17:47:04.379642 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.379678 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.381837 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.381878 writev(3, [{"5\1\4\0\35\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\36\5\300\3\35\5\300\3\0\0\0\0H\1\26\0\35\5\300\3\36\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.382064 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.382095 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.382145 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.382183 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.382216 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.382255 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.382289 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.382322 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.382349 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.382382 close(4)                = 0
17:47:04.382407 munmap(0x7fe35854b000, 4096) = 0
17:47:04.382438 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.382482 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.382518 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.382551 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.382585 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.382615 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.382648 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.382674 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.382711 read(4, "", 4096)       = 0
17:47:04.382736 close(4)                = 0
17:47:04.382760 munmap(0x7fe35854b000, 4096) = 0
17:47:04.382791 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.382825 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.384081 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.384118 writev(3, [{"5\1\4\0\"\5\300\3\16\1\0\0\20\0\20\0007\0\4\0#\5\300\3\"\5\300\3\0\0\0\0H\1\26\0\"\5\300\3#\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.384233 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.384264 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.385265 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.385299 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.385354 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.385396 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.385429 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.385462 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.385495 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.385528 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.385555 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.385587 close(4)                = 0
17:47:04.385612 munmap(0x7fe35854b000, 4096) = 0
17:47:04.385643 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.385679 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.385712 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.385745 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.385778 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.385808 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.385841 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.385867 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.385904 read(4, "", 4096)       = 0
17:47:04.385929 close(4)                = 0
17:47:04.385953 munmap(0x7fe35854b000, 4096) = 0
17:47:04.385983 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.386017 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.388045 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.388081 writev(3, [{"5\1\4\0'\5\300\3\16\1\0\0\20\0\20\0007\0\4\0(\5\300\3'\5\300\3\0\0\0\0H\1\26\0'\5\300\3(\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.388180 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.388218 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.388269 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.388307 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.388340 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.388374 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.388406 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.388439 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.388466 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.388499 close(4)                = 0
17:47:04.388523 munmap(0x7fe35854b000, 4096) = 0
17:47:04.388554 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.388590 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.388623 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.388656 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.388699 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.388730 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.388763 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.388790 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.388827 read(4, "", 4096)       = 0
17:47:04.388852 close(4)                = 0
17:47:04.388875 munmap(0x7fe35854b000, 4096) = 0
17:47:04.388906 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.388944 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.390590 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.390631 writev(3, [{"5\1\4\0,\5\300\3\16\1\0\0\20\0\20\0007\0\4\0-\5\300\3,\5\300\3\0\0\0\0H\1\26\0,\5\300\3-\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.390725 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.390755 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.391457 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.391492 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.391542 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.391580 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.391613 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.391647 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.391680 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.391713 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.391741 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.391773 close(4)                = 0
17:47:04.391801 munmap(0x7fe35854b000, 4096) = 0
17:47:04.391833 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.391870 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.391904 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.391936 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.391970 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.392001 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.392038 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.392065 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.392103 read(4, "", 4096)       = 0
17:47:04.392133 close(4)                = 0
17:47:04.392160 munmap(0x7fe35854b000, 4096) = 0
17:47:04.392190 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.392225 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.394264 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.394301 writev(3, [{"5\1\4\0001\5\300\3\16\1\0\0\20\0\20\0007\0\4\0002\5\300\0031\5\300\3\0\0\0\0H\1\26\0001\5\300\0032\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.394391 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.394422 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.394471 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.394520 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.394554 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.394587 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.394620 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.394656 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.394685 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.394717 close(4)                = 0
17:47:04.394742 munmap(0x7fe35854b000, 4096) = 0
17:47:04.394773 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.394808 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.394842 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.394874 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.394915 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.394946 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.394979 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.395005 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.395042 read(4, "", 4096)       = 0
17:47:04.395067 close(4)                = 0
17:47:04.395091 munmap(0x7fe35854b000, 4096) = 0
17:47:04.395121 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.395155 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.395493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.395515 rt_sigreturn(0xe)       = 4359227
17:47:04.397115 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.397154 writev(3, [{"5\1\4\0006\5\300\3\16\1\0\0\20\0\20\0007\0\4\0007\5\300\0036\5\300\3\0\0\0\0H\1\26\0006\5\300\0037\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.397246 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.397277 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.397680 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.397713 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.397765 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.397806 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.397840 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.397874 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.397907 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.397940 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.397968 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.398004 close(4)                = 0
17:47:04.398028 munmap(0x7fe35854b000, 4096) = 0
17:47:04.398059 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.398095 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.398129 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.398161 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.398208 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.398240 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.398273 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.398299 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.398336 read(4, "", 4096)       = 0
17:47:04.398361 close(4)                = 0
17:47:04.398385 munmap(0x7fe35854b000, 4096) = 0
17:47:04.398415 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.398449 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.400486 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.400522 writev(3, [{"5\1\4\0;\5\300\3\16\1\0\0\20\0\20\0007\0\4\0<\5\300\3;\5\300\3\0\0\0\0H\1\26\0;\5\300\3<\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.400616 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.400651 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.400702 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.400741 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.400774 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.400807 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.400840 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.400873 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.400900 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.400932 close(4)                = 0
17:47:04.400957 munmap(0x7fe35854b000, 4096) = 0
17:47:04.400987 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.401023 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.401056 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.401088 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.401122 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.401152 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.401185 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.401211 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.401247 read(4, "", 4096)       = 0
17:47:04.401272 close(4)                = 0
17:47:04.401296 munmap(0x7fe35854b000, 4096) = 0
17:47:04.401325 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.401364 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.402293 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.402332 writev(3, [{"5\1\4\0@\5\300\3\16\1\0\0\20\0\20\0007\0\4\0A\5\300\3@\5\300\3\0\0\0\0H\1\26\0@\5\300\3A\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.402424 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.402455 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.403768 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.403804 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.403853 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.403892 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.403934 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.403968 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.404001 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.404035 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.404062 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.404094 close(4)                = 0
17:47:04.404119 munmap(0x7fe35854b000, 4096) = 0
17:47:04.404154 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.404191 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.404229 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.404263 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.404298 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.404328 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.404360 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.404387 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.404423 read(4, "", 4096)       = 0
17:47:04.404453 close(4)                = 0
17:47:04.404477 munmap(0x7fe35854b000, 4096) = 0
17:47:04.404507 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.404542 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.406306 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.406344 writev(3, [{"5\1\4\0E\5\300\3\16\1\0\0\20\0\20\0007\0\4\0F\5\300\3E\5\300\3\0\0\0\0H\1\26\0E\5\300\3F\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.406443 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.406473 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.406977 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.407011 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.407060 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.407099 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.407132 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.407170 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.407205 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.407238 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.407265 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.407298 close(4)                = 0
17:47:04.407329 munmap(0x7fe35854b000, 4096) = 0
17:47:04.407360 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.407396 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.407429 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.407461 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.407495 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.407525 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.407558 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.407593 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.407631 read(4, "", 4096)       = 0
17:47:04.407656 close(4)                = 0
17:47:04.407680 munmap(0x7fe35854b000, 4096) = 0
17:47:04.407710 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.407745 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.409677 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.409716 writev(3, [{"5\1\4\0J\5\300\3\16\1\0\0\20\0\20\0007\0\4\0K\5\300\3J\5\300\3\0\0\0\0H\1\26\0J\5\300\3K\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.409808 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.409839 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.410156 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.410193 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.410244 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.410284 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.410319 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.410353 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.410386 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.410419 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.410446 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.410479 close(4)                = 0
17:47:04.410504 munmap(0x7fe35854b000, 4096) = 0
17:47:04.410534 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.410570 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.410604 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.410636 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.410669 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.410699 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.410732 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.410759 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.410795 read(4, "", 4096)       = 0
17:47:04.410820 close(4)                = 0
17:47:04.410844 munmap(0x7fe35854b000, 4096) = 0
17:47:04.410873 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.410908 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.412151 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.412190 writev(3, [{"5\1\4\0O\5\300\3\16\1\0\0\20\0\20\0007\0\4\0P\5\300\3O\5\300\3\0\0\0\0H\1\26\0O\5\300\3P\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.412282 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.412314 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.413317 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.413352 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.413404 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.413443 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.413485 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.413519 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.413552 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.413585 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.413612 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.413644 close(4)                = 0
17:47:04.413669 munmap(0x7fe35854b000, 4096) = 0
17:47:04.413699 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.413735 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.413768 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.413800 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.413834 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.413867 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.413901 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.413928 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.413964 read(4, "", 4096)       = 0
17:47:04.413989 close(4)                = 0
17:47:04.414018 munmap(0x7fe35854b000, 4096) = 0
17:47:04.414048 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.414082 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.414884 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.414921 writev(3, [{"5\1\4\0T\5\300\3\16\1\0\0\20\0\20\0007\0\4\0U\5\300\3T\5\300\3\0\0\0\0H\1\26\0T\5\300\3U\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.415018 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.415048 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.415492 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.415513 rt_sigreturn(0xe)       = 0
17:47:04.416434 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.416470 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.416787 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.416819 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.416870 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.416911 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.416945 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.416978 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.417011 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.417045 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.417072 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.417104 close(4)                = 0
17:47:04.417128 munmap(0x7fe35854b000, 4096) = 0
17:47:04.417159 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.417194 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.417228 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.417260 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.417303 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.417334 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.417367 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.417394 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.417430 read(4, "", 4096)       = 0
17:47:04.417455 close(4)                = 0
17:47:04.417479 munmap(0x7fe35854b000, 4096) = 0
17:47:04.417509 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.417543 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.418296 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.418334 writev(3, [{"5\1\4\0Y\5\300\3\16\1\0\0\20\0\20\0007\0\4\0Z\5\300\3Y\5\300\3\0\0\0\0H\1\26\0Y\5\300\3Z\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.418426 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.418456 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.418976 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.419011 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.420067 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.420101 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.420426 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.420459 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.420509 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.420547 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.420584 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.420618 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.420651 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.420689 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.420717 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.420749 close(4)                = 0
17:47:04.420774 munmap(0x7fe35854b000, 4096) = 0
17:47:04.420805 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.420840 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.420874 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.420906 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.420939 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.420969 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.421003 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.421029 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.421066 read(4, "", 4096)       = 0
17:47:04.421091 close(4)                = 0
17:47:04.421115 munmap(0x7fe35854b000, 4096) = 0
17:47:04.421144 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.421179 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.421527 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.421564 writev(3, [{"5\1\4\0^\5\300\3\16\1\0\0\20\0\20\0007\0\4\0_\5\300\3^\5\300\3\0\0\0\0H\1\26\0^\5\300\3_\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.421668 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.421701 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.422209 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.422242 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.422752 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.422788 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.423117 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.423150 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.423457 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.423490 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.423936 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.423969 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.424394 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.424427 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.424899 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.424934 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.435519 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.435588 rt_sigreturn(0xe)       = 3670317
17:47:04.439919 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.439999 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.440413 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.440451 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.440528 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.440575 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.440611 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.440647 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.440686 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.440721 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.440753 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.440788 close(4)                = 0
17:47:04.440814 munmap(0x7fe35854b000, 4096) = 0
17:47:04.440850 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.440886 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.440920 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.440952 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.440987 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.441018 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.441051 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.441077 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.441114 read(4, "", 4096)       = 0
17:47:04.441139 close(4)                = 0
17:47:04.441163 munmap(0x7fe35854b000, 4096) = 0
17:47:04.441192 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.441227 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.443387 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.443428 writev(3, [{"5\1\4\0c\5\300\3\16\1\0\0\20\0\20\0007\0\4\0d\5\300\3c\5\300\3\0\0\0\0H\1\26\0c\5\300\3d\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.443618 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.443669 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.443720 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.443758 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.443792 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.443826 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.443859 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.443893 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.443920 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.443953 close(4)                = 0
17:47:04.443977 munmap(0x7fe35854b000, 4096) = 0
17:47:04.444009 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.444044 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.444078 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.444110 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.444159 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.444191 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.444224 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.444250 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.444287 read(4, "", 4096)       = 0
17:47:04.444313 close(4)                = 0
17:47:04.444336 munmap(0x7fe35854b000, 4096) = 0
17:47:04.444366 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.444401 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.446505 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.446544 writev(3, [{"5\1\4\0h\5\300\3\16\1\0\0\20\0\20\0007\0\4\0i\5\300\3h\5\300\3\0\0\0\0H\1\26\0h\5\300\3i\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.446639 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.446670 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.446810 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.446841 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.446890 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.446929 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.446962 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.446995 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.447028 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.447061 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.447088 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.447120 close(4)                = 0
17:47:04.447145 munmap(0x7fe35854b000, 4096) = 0
17:47:04.447176 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.447211 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.447245 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.447277 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.447320 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.447351 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.447384 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.447410 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.447447 read(4, "", 4096)       = 0
17:47:04.447472 close(4)                = 0
17:47:04.447496 munmap(0x7fe35854b000, 4096) = 0
17:47:04.447526 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.447561 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.449581 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.449620 writev(3, [{"5\1\4\0m\5\300\3\16\1\0\0\20\0\20\0007\0\4\0n\5\300\3m\5\300\3\0\0\0\0H\1\26\0m\5\300\3n\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.449712 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.449743 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.449793 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.449831 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.449864 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.449897 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.449930 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.449963 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.449990 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.450022 close(4)                = 0
17:47:04.450047 munmap(0x7fe35854b000, 4096) = 0
17:47:04.450077 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.450112 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.450146 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.450178 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.450212 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.450242 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.450275 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.450302 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.450338 read(4, "", 4096)       = 0
17:47:04.450364 close(4)                = 0
17:47:04.450388 munmap(0x7fe35854b000, 4096) = 0
17:47:04.450417 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.450452 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.452514 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.452553 writev(3, [{"5\1\4\0r\5\300\3\16\1\0\0\20\0\20\0007\0\4\0s\5\300\3r\5\300\3\0\0\0\0H\1\26\0r\5\300\3s\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.452646 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.452679 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.452730 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.452769 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.452812 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.452847 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.452879 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.452913 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.452940 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.452973 close(4)                = 0
17:47:04.452998 munmap(0x7fe35854b000, 4096) = 0
17:47:04.453028 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.453063 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.453097 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.453129 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.453163 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.453193 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.453226 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.453252 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.453288 read(4, "", 4096)       = 0
17:47:04.453314 close(4)                = 0
17:47:04.453337 munmap(0x7fe35854b000, 4096) = 0
17:47:04.453367 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.453401 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.453616 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.453652 writev(3, [{"5\1\4\0w\5\300\3\16\1\0\0\20\0\20\0007\0\4\0x\5\300\3w\5\300\3\0\0\0\0H\1\26\0w\5\300\3x\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.453742 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.453773 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.455494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.455520 rt_sigreturn(0xe)       = 0
17:47:04.455891 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.455925 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.455975 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.456013 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.456047 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.456080 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.456113 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.456159 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.456188 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.456221 close(4)                = 0
17:47:04.456246 munmap(0x7fe35854b000, 4096) = 0
17:47:04.456276 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.456312 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.456346 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.456379 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.456412 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.456442 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.456485 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.456512 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.456549 read(4, "", 4096)       = 0
17:47:04.456574 close(4)                = 0
17:47:04.456598 munmap(0x7fe35854b000, 4096) = 0
17:47:04.456628 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.456662 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.458701 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.458738 writev(3, [{"5\1\4\0|\5\300\3\16\1\0\0\20\0\20\0007\0\4\0}\5\300\3|\5\300\3\0\0\0\0H\1\26\0|\5\300\3}\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.458831 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.458863 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.458913 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.458951 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.458983 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.459017 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.459050 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.459083 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.459110 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.459143 close(4)                = 0
17:47:04.459167 munmap(0x7fe35854b000, 4096) = 0
17:47:04.459198 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.459233 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.459267 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.459300 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.459333 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.459364 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.459396 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.459423 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.459460 read(4, "", 4096)       = 0
17:47:04.459485 close(4)                = 0
17:47:04.459509 munmap(0x7fe35854b000, 4096) = 0
17:47:04.459539 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.459573 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.459931 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.459967 writev(3, [{"5\1\4\0\201\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\202\5\300\3\201\5\300\3\0\0\0\0H\1\26\0\201\5\300\3\202\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.460058 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.460089 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.461953 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.461990 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.462042 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.462081 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.462123 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.462159 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.462192 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.462225 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.462252 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.462285 close(4)                = 0
17:47:04.462310 munmap(0x7fe35854b000, 4096) = 0
17:47:04.462341 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.462376 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.462410 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.462443 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.462477 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.462507 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.462540 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.462566 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.462603 read(4, "", 4096)       = 0
17:47:04.462627 close(4)                = 0
17:47:04.462651 munmap(0x7fe35854b000, 4096) = 0
17:47:04.462680 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.462714 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.464376 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.464415 writev(3, [{"5\1\4\0\206\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\207\5\300\3\206\5\300\3\0\0\0\0H\1\26\0\206\5\300\3\207\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.464511 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.464547 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.465139 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.465176 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.465230 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.465273 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.465311 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.465347 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.465383 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.465418 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.465448 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.465483 close(4)                = 0
17:47:04.465510 munmap(0x7fe35854b000, 4096) = 0
17:47:04.465543 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.465580 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.465617 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.465652 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.465688 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.465720 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.465755 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.465799 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.465839 read(4, "", 4096)       = 0
17:47:04.465867 close(4)                = 0
17:47:04.465893 munmap(0x7fe35854b000, 4096) = 0
17:47:04.465925 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.465963 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.467970 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.468008 writev(3, [{"5\1\4\0\213\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\214\5\300\3\213\5\300\3\0\0\0\0H\1\26\0\213\5\300\3\214\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.468103 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.468149 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.468202 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.468242 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.468277 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.468312 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.468346 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.468381 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.468409 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.468443 close(4)                = 0
17:47:04.468470 munmap(0x7fe35854b000, 4096) = 0
17:47:04.468501 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.468539 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.468574 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.468608 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.468643 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.468674 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.468708 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.468736 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.468775 read(4, "", 4096)       = 0
17:47:04.468801 close(4)                = 0
17:47:04.468827 munmap(0x7fe35854b000, 4096) = 0
17:47:04.468858 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.468894 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.469384 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.469422 writev(3, [{"5\1\4\0\220\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\221\5\300\3\220\5\300\3\0\0\0\0H\1\26\0\220\5\300\3\221\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.469515 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.469546 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.471348 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.471385 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.471442 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.471483 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.471517 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.471566 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.471602 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.471655 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.471687 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.471724 close(4)                = 0
17:47:04.471750 munmap(0x7fe35854b000, 4096) = 0
17:47:04.471782 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.471822 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.471858 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.471892 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.471929 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.471961 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.471995 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.472023 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.472062 read(4, "", 4096)       = 0
17:47:04.472087 close(4)                = 0
17:47:04.472110 munmap(0x7fe35854b000, 4096) = 0
17:47:04.472149 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.472187 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.473172 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.473218 writev(3, [{"5\1\4\0\225\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\226\5\300\3\225\5\300\3\0\0\0\0H\1\26\0\225\5\300\3\226\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.473410 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.473442 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.475501 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.475541 rt_sigreturn(0xe)       = 4274880
17:47:04.475943 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.475980 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.476062 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.476112 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.476161 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.476200 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.476242 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.476279 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.476312 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.476353 close(4)                = 0
17:47:04.476378 munmap(0x7fe35854b000, 4096) = 0
17:47:04.476415 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.476454 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.476490 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.476525 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.476562 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.476595 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.476629 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.476676 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.476723 read(4, "", 4096)       = 0
17:47:04.476748 close(4)                = 0
17:47:04.476772 munmap(0x7fe35854b000, 4096) = 0
17:47:04.476803 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.476839 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.477356 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.477393 writev(3, [{"5\1\4\0\232\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\233\5\300\3\232\5\300\3\0\0\0\0H\1\26\0\232\5\300\3\233\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.477588 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.477617 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.479728 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.479778 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.480741 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.480782 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.480859 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.480905 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.480940 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.480979 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.481019 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.481054 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.481087 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.481130 close(4)                = 0
17:47:04.481159 munmap(0x7fe35854b000, 4096) = 0
17:47:04.481208 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.481248 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.481416 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.481452 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.481487 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.481518 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.481552 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.481579 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.481617 read(4, "", 4096)       = 0
17:47:04.481642 close(4)                = 0
17:47:04.481666 munmap(0x7fe35854b000, 4096) = 0
17:47:04.481696 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.481731 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.482600 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.482639 writev(3, [{"5\1\4\0\237\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\240\5\300\3\237\5\300\3\0\0\0\0H\1\26\0\237\5\300\3\240\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.482810 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.482841 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.483990 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.484024 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.484538 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.484591 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.484643 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.484681 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.484715 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.484749 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.484782 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.484815 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.484842 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.484874 close(4)                = 0
17:47:04.484899 munmap(0x7fe35854b000, 4096) = 0
17:47:04.484930 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.484965 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.484999 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.485031 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.485065 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.485095 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.485128 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.485161 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.485198 read(4, "", 4096)       = 0
17:47:04.485223 close(4)                = 0
17:47:04.485247 munmap(0x7fe35854b000, 4096) = 0
17:47:04.485277 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.485312 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.485825 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.485862 writev(3, [{"5\1\4\0\244\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\245\5\300\3\244\5\300\3\0\0\0\0H\1\26\0\244\5\300\3\245\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.485955 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.485986 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.486605 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.486639 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.487202 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.487238 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.488108 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.488148 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.488613 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.488647 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.488706 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.488736 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.488784 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.488822 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.488855 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.488888 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.488921 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.488955 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.488988 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.489029 close(4)                = 0
17:47:04.489055 munmap(0x7fe35854b000, 4096) = 0
17:47:04.489086 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.489122 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.489156 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.489188 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.489222 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.489253 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.489285 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.489312 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.489348 read(4, "", 4096)       = 0
17:47:04.489373 close(4)                = 0
17:47:04.489397 munmap(0x7fe35854b000, 4096) = 0
17:47:04.489427 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.489462 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.489824 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.489859 writev(3, [{"5\1\4\0\251\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\252\5\300\3\251\5\300\3\0\0\0\0H\1\26\0\251\5\300\3\252\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.489953 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.489983 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.490323 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.490356 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.490725 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.490758 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.491089 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.491123 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.491383 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.491415 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.491672 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.491704 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.491961 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.491994 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.492262 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.492298 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.492551 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.492584 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.492840 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.492875 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.495496 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.495527 rt_sigreturn(0xe)       = 4030588
17:47:04.507797 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.507880 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.509227 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.509263 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.509338 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.509385 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.509421 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.509456 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.509514 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.509549 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.509581 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.509620 close(4)                = 0
17:47:04.509646 munmap(0x7fe35854b000, 4096) = 0
17:47:04.509681 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.509718 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.509753 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.509785 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.509820 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.509851 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.509883 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.509910 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.509947 read(4, "", 4096)       = 0
17:47:04.509972 close(4)                = 0
17:47:04.509995 munmap(0x7fe35854b000, 4096) = 0
17:47:04.510025 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.510064 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.512348 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.512389 writev(3, [{"5\1\4\0\256\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\257\5\300\3\256\5\300\3\0\0\0\0H\1\26\0\256\5\300\3\257\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.512577 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.512608 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.512658 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.512697 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.512730 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.512763 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.512796 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.512830 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.512857 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.512890 close(4)                = 0
17:47:04.512914 munmap(0x7fe35854b000, 4096) = 0
17:47:04.512949 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.512986 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.513020 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.513052 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.513086 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.513116 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.513149 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.513175 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.513212 read(4, "", 4096)       = 0
17:47:04.513237 close(4)                = 0
17:47:04.513261 munmap(0x7fe35854b000, 4096) = 0
17:47:04.513290 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.513334 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.514588 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.514625 writev(3, [{"5\1\4\0\263\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\264\5\300\3\263\5\300\3\0\0\0\0H\1\26\0\263\5\300\3\264\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.514717 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.514748 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.515494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.515517 rt_sigreturn(0xe)       = 4365606
17:47:04.515795 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.515828 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.515877 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.515915 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.515947 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.515981 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.516014 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.516047 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.516074 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.516107 close(4)                = 0
17:47:04.516147 munmap(0x7fe35854b000, 4096) = 0
17:47:04.516181 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.516217 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.516251 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.516284 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.516317 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.516348 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.516380 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.516407 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.516444 read(4, "", 4096)       = 0
17:47:04.516469 close(4)                = 0
17:47:04.516493 munmap(0x7fe35854b000, 4096) = 0
17:47:04.516523 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.516557 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.518574 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.518611 writev(3, [{"5\1\4\0\270\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\271\5\300\3\270\5\300\3\0\0\0\0H\1\26\0\270\5\300\3\271\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.518709 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.518740 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.518790 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.518828 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.518861 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.518895 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.518928 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.518962 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.518998 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.519031 close(4)                = 0
17:47:04.519056 munmap(0x7fe35854b000, 4096) = 0
17:47:04.519086 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.519122 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.519156 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.519188 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.519222 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.519252 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.519285 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.519312 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.519348 read(4, "", 4096)       = 0
17:47:04.519373 close(4)                = 0
17:47:04.519397 munmap(0x7fe35854b000, 4096) = 0
17:47:04.519427 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.519462 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.521023 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.521062 writev(3, [{"5\1\4\0\275\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\276\5\300\3\275\5\300\3\0\0\0\0H\1\26\0\275\5\300\3\276\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.521155 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.521186 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.521880 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.521915 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.521966 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.522005 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.522038 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.522071 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.522105 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.522138 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.522165 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.522198 close(4)                = 0
17:47:04.522223 munmap(0x7fe35854b000, 4096) = 0
17:47:04.522254 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.522290 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.522324 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.522356 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.522390 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.522420 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.522453 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.522482 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.522521 read(4, "", 4096)       = 0
17:47:04.522547 close(4)                = 0
17:47:04.522570 munmap(0x7fe35854b000, 4096) = 0
17:47:04.522600 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.522643 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.524666 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.524705 writev(3, [{"5\1\4\0\302\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\303\5\300\3\302\5\300\3\0\0\0\0H\1\26\0\302\5\300\3\303\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.524798 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.524830 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.524880 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.524918 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.524951 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.524985 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.525019 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.525052 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.525080 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.525112 close(4)                = 0
17:47:04.525136 munmap(0x7fe35854b000, 4096) = 0
17:47:04.525167 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.525202 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.525236 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.525268 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.525301 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.525332 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.525369 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.525396 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.525433 read(4, "", 4096)       = 0
17:47:04.525459 close(4)                = 0
17:47:04.525483 munmap(0x7fe35854b000, 4096) = 0
17:47:04.525512 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.525547 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.527415 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.527454 writev(3, [{"5\1\4\0\307\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\310\5\300\3\307\5\300\3\0\0\0\0H\1\26\0\307\5\300\3\310\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.527546 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.527576 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.527973 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.528007 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.528056 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.528094 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.528139 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.528177 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.528211 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.528251 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.528278 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.528311 close(4)                = 0
17:47:04.528346 munmap(0x7fe35854b000, 4096) = 0
17:47:04.528378 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.528414 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.528448 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.528480 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.528514 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.528544 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.528576 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.528603 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.528640 read(4, "", 4096)       = 0
17:47:04.528664 close(4)                = 0
17:47:04.528688 munmap(0x7fe35854b000, 4096) = 0
17:47:04.528718 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.528753 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.530783 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.530820 writev(3, [{"5\1\4\0\314\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\315\5\300\3\314\5\300\3\0\0\0\0H\1\26\0\314\5\300\3\315\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.530911 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.530942 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.530992 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.531030 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.531063 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.531102 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.531137 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.531170 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.531197 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.531229 close(4)                = 0
17:47:04.531254 munmap(0x7fe35854b000, 4096) = 0
17:47:04.531284 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.531320 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.531353 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.531386 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.531420 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.531450 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.531483 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.531509 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.531546 read(4, "", 4096)       = 0
17:47:04.531572 close(4)                = 0
17:47:04.531596 munmap(0x7fe35854b000, 4096) = 0
17:47:04.531626 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.531660 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.532713 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.532750 writev(3, [{"5\1\4\0\321\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\322\5\300\3\321\5\300\3\0\0\0\0H\1\26\0\321\5\300\3\322\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.532850 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.532881 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.534093 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.534129 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.534180 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.534220 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.534253 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.534287 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.534320 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.534353 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.534381 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.534413 close(4)                = 0
17:47:04.534438 munmap(0x7fe35854b000, 4096) = 0
17:47:04.534469 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.534505 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.534539 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.534571 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.534604 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.534634 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.534667 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.534694 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.534730 read(4, "", 4096)       = 0
17:47:04.534756 close(4)                = 0
17:47:04.534779 munmap(0x7fe35854b000, 4096) = 0
17:47:04.534809 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.534843 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.535492 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.535514 rt_sigreturn(0xe)       = 4356411
17:47:04.537044 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.537083 writev(3, [{"5\1\4\0\326\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\327\5\300\3\326\5\300\3\0\0\0\0H\1\26\0\326\5\300\3\327\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.537178 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.537210 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.537301 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.537333 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.537381 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.537419 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.537452 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.537485 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.537518 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.537551 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.537578 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.537610 close(4)                = 0
17:47:04.537643 munmap(0x7fe35854b000, 4096) = 0
17:47:04.537675 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.537711 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.537745 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.537777 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.537817 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.537848 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.537881 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.537907 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.537944 read(4, "", 4096)       = 0
17:47:04.537970 close(4)                = 0
17:47:04.537994 munmap(0x7fe35854b000, 4096) = 0
17:47:04.538025 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.538059 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.540086 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.540122 writev(3, [{"5\1\4\0\333\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\334\5\300\3\333\5\300\3\0\0\0\0H\1\26\0\333\5\300\3\334\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.540226 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.540257 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.540307 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.540345 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.540378 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.540411 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.540443 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.540476 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.540503 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.540535 close(4)                = 0
17:47:04.540560 munmap(0x7fe35854b000, 4096) = 0
17:47:04.540590 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.540625 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.540660 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.540697 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.540732 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.540762 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.540795 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.540822 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.540859 read(4, "", 4096)       = 0
17:47:04.540884 close(4)                = 0
17:47:04.540908 munmap(0x7fe35854b000, 4096) = 0
17:47:04.540938 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.540973 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.541309 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.541346 writev(3, [{"5\1\4\0\340\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\341\5\300\3\340\5\300\3\0\0\0\0H\1\26\0\340\5\300\3\341\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.541447 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.541478 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.543332 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.543366 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.543615 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.543647 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.543696 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.543734 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.543766 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.543800 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.543833 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.543866 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.543893 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.543925 close(4)                = 0
17:47:04.543949 munmap(0x7fe35854b000, 4096) = 0
17:47:04.543980 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.544015 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.544049 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.544081 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.544114 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.544150 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.544184 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.544210 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.544247 read(4, "", 4096)       = 0
17:47:04.544272 close(4)                = 0
17:47:04.544296 munmap(0x7fe35854b000, 4096) = 0
17:47:04.544325 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.544359 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.545408 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.545448 writev(3, [{"5\1\4\0\345\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\346\5\300\3\345\5\300\3\0\0\0\0H\1\26\0\345\5\300\3\346\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.545540 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.545570 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.546751 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.546787 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.546836 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.546874 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.546907 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.546940 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.546972 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.547006 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.547033 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.547073 close(4)                = 0
17:47:04.547099 munmap(0x7fe35854b000, 4096) = 0
17:47:04.547129 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.547164 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.547198 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.547230 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.547264 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.547294 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.547327 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.547357 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.547394 read(4, "", 4096)       = 0
17:47:04.547420 close(4)                = 0
17:47:04.547443 munmap(0x7fe35854b000, 4096) = 0
17:47:04.547473 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.547507 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.548084 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.548120 writev(3, [{"5\1\4\0\352\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\353\5\300\3\352\5\300\3\0\0\0\0H\1\26\0\352\5\300\3\353\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.548219 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.548251 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.548943 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.548978 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.550282 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.550318 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.550397 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.550428 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.550479 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.550517 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.550550 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.550583 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.550616 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.550649 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.550676 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.550709 close(4)                = 0
17:47:04.550733 munmap(0x7fe35854b000, 4096) = 0
17:47:04.550764 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.550799 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.550833 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.550865 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.550899 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.550929 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.550962 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.550988 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.551024 read(4, "", 4096)       = 0
17:47:04.551049 close(4)                = 0
17:47:04.551082 munmap(0x7fe35854b000, 4096) = 0
17:47:04.551112 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.551147 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.551865 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.551902 writev(3, [{"5\1\4\0\357\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\360\5\300\3\357\5\300\3\0\0\0\0H\1\26\0\357\5\300\3\360\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.551993 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.552023 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.552508 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.552543 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.553185 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.553220 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.553955 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.553989 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.554401 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.554437 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.554555 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.554586 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.554635 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.554672 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.554705 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.554738 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.554771 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.554804 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.554831 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.554864 close(4)                = 0
17:47:04.554888 munmap(0x7fe35854b000, 4096) = 0
17:47:04.554919 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.554954 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.554987 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.555023 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.555059 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.555089 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.555122 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.555149 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.555186 read(4, "", 4096)       = 0
17:47:04.555211 close(4)                = 0
17:47:04.555235 munmap(0x7fe35854b000, 4096) = 0
17:47:04.555265 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.555300 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.555492 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.555513 rt_sigreturn(0xe)       = 21038220
17:47:04.555676 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.555711 writev(3, [{"5\1\4\0\364\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\365\5\300\3\364\5\300\3\0\0\0\0H\1\26\0\364\5\300\3\365\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.555809 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.555840 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.556133 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.556168 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.556471 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.556503 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.556799 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.556831 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.557170 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.557203 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.557473 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.557506 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.557743 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.557775 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.558011 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.558043 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.558276 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.558309 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.558543 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.558575 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.558810 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.558846 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.559082 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.559114 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.559349 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.559381 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.559614 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.559646 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.559882 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.559915 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.560157 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.560191 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.560431 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.560464 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.575509 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.575577 rt_sigreturn(0xe)       = 21472676
17:47:04.575881 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.575922 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.577278 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.577315 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.577389 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.577437 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.577472 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.577508 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.577547 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.577582 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.577614 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.577650 close(4)                = 0
17:47:04.577676 munmap(0x7fe35854b000, 4096) = 0
17:47:04.577711 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.577748 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.577782 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.577833 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.577869 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.577900 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.577933 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.577960 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.578001 read(4, "", 4096)       = 0
17:47:04.578027 close(4)                = 0
17:47:04.578051 munmap(0x7fe35854b000, 4096) = 0
17:47:04.578081 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.578116 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.580247 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.580289 writev(3, [{"5\1\4\0\371\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\372\5\300\3\371\5\300\3\0\0\0\0H\1\26\0\371\5\300\3\372\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.580477 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.580510 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.580562 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.580600 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.580633 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.580666 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.580700 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.580733 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.580760 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.580793 close(4)                = 0
17:47:04.580818 munmap(0x7fe35854b000, 4096) = 0
17:47:04.580849 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.580884 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.580918 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.580950 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.580984 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.581014 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.581047 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.581073 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.581110 read(4, "", 4096)       = 0
17:47:04.581135 close(4)                = 0
17:47:04.581159 munmap(0x7fe35854b000, 4096) = 0
17:47:04.581188 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.581222 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.582468 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.582507 writev(3, [{"5\1\4\0\376\5\300\3\16\1\0\0\20\0\20\0007\0\4\0\377\5\300\3\376\5\300\3\0\0\0\0H\1\26\0\376\5\300\3\377\5\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.582601 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.582632 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.583611 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.583653 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.583703 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.583741 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.583774 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.583808 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.583841 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.583875 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.583903 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.583935 close(4)                = 0
17:47:04.583961 munmap(0x7fe35854b000, 4096) = 0
17:47:04.583991 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.584027 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.584061 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.584093 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.584132 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.584167 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.584200 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.584227 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.584264 read(4, "", 4096)       = 0
17:47:04.584289 close(4)                = 0
17:47:04.584313 munmap(0x7fe35854b000, 4096) = 0
17:47:04.584343 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.584377 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.586381 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.586420 writev(3, [{"5\1\4\0\3\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\4\6\300\3\3\6\300\3\0\0\0\0H\1\26\0\3\6\300\3\4\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.586513 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.586545 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.586595 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.586634 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.586667 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.586701 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.586734 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.586767 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.586794 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.586827 close(4)                = 0
17:47:04.586852 munmap(0x7fe35854b000, 4096) = 0
17:47:04.586882 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.586918 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.586952 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.586984 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.587018 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.587058 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.587091 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.587118 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.587154 read(4, "", 4096)       = 0
17:47:04.587179 close(4)                = 0
17:47:04.587203 munmap(0x7fe35854b000, 4096) = 0
17:47:04.587233 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.587268 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.588828 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.588866 writev(3, [{"5\1\4\0\10\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\t\6\300\3\10\6\300\3\0\0\0\0H\1\26\0\10\6\300\3\t\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.588958 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.588989 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.589677 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.589712 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.589761 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.589799 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.589832 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.589865 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.589899 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.589932 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.589959 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.589992 close(4)                = 0
17:47:04.590017 munmap(0x7fe35854b000, 4096) = 0
17:47:04.590048 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.590083 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.590117 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.590149 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.590183 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.590213 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.590246 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.590273 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.590310 read(4, "", 4096)       = 0
17:47:04.590335 close(4)                = 0
17:47:04.590359 munmap(0x7fe35854b000, 4096) = 0
17:47:04.590389 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.590423 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.592441 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.592480 writev(3, [{"5\1\4\0\r\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\16\6\300\3\r\6\300\3\0\0\0\0H\1\26\0\r\6\300\3\16\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.592573 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.592606 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.592658 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.592696 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.592738 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.592772 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.592806 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.592839 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.592866 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.592898 close(4)                = 0
17:47:04.592924 munmap(0x7fe35854b000, 4096) = 0
17:47:04.592954 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.592989 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.593023 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.593055 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.593089 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.593119 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.593152 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.593179 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.593215 read(4, "", 4096)       = 0
17:47:04.593240 close(4)                = 0
17:47:04.593264 munmap(0x7fe35854b000, 4096) = 0
17:47:04.593293 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.593328 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.595190 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.595229 writev(3, [{"5\1\4\0\22\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\23\6\300\3\22\6\300\3\0\0\0\0H\1\26\0\22\6\300\3\23\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.595322 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.595353 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.595491 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.595512 rt_sigreturn(0xe)       = 4355156
17:47:04.595805 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.595838 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.595887 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.595925 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.595958 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.595991 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.596024 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.596057 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.596085 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.596117 close(4)                = 0
17:47:04.596155 munmap(0x7fe35854b000, 4096) = 0
17:47:04.596190 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.596229 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.596266 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.596301 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.596338 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.596371 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.596415 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.596445 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.596485 read(4, "", 4096)       = 0
17:47:04.596513 close(4)                = 0
17:47:04.596539 munmap(0x7fe35854b000, 4096) = 0
17:47:04.596572 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.596610 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.598617 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.598656 writev(3, [{"5\1\4\0\27\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\30\6\300\3\27\6\300\3\0\0\0\0H\1\26\0\27\6\300\3\30\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.598752 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.598788 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.598842 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.598885 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.598921 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.598957 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.598993 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.599029 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.599059 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.599094 close(4)                = 0
17:47:04.599122 munmap(0x7fe35854b000, 4096) = 0
17:47:04.599155 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.599194 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.599231 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.599266 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.599302 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.599335 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.599370 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.599400 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.599440 read(4, "", 4096)       = 0
17:47:04.599468 close(4)                = 0
17:47:04.599494 munmap(0x7fe35854b000, 4096) = 0
17:47:04.599526 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.599563 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.600661 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.600703 writev(3, [{"5\1\4\0\34\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\35\6\300\3\34\6\300\3\0\0\0\0H\1\26\0\34\6\300\3\35\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.600799 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.600833 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.602006 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.602044 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.602099 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.602143 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.602189 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.602227 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.602263 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.602299 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.602329 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.602364 close(4)                = 0
17:47:04.602392 munmap(0x7fe35854b000, 4096) = 0
17:47:04.602426 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.602464 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.602501 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.602536 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.602573 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.602606 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.602642 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.602671 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.602711 read(4, "", 4096)       = 0
17:47:04.602738 close(4)                = 0
17:47:04.602765 munmap(0x7fe35854b000, 4096) = 0
17:47:04.602797 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.602835 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.604855 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.604894 writev(3, [{"5\1\4\0!\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\"\6\300\3!\6\300\3\0\0\0\0H\1\26\0!\6\300\3\"\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.604988 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.605024 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.605078 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.605121 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.605157 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.605193 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.605229 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.605264 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.605294 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.605329 close(4)                = 0
17:47:04.605356 munmap(0x7fe35854b000, 4096) = 0
17:47:04.605389 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.605428 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.605465 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.605500 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.605537 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.605570 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.605605 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.605634 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.605674 read(4, "", 4096)       = 0
17:47:04.605710 close(4)                = 0
17:47:04.605737 munmap(0x7fe35854b000, 4096) = 0
17:47:04.605771 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.605809 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.606162 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.606201 writev(3, [{"5\1\4\0&\6\300\3\16\1\0\0\20\0\20\0007\0\4\0'\6\300\3&\6\300\3\0\0\0\0H\1\26\0&\6\300\3'\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.606294 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.606327 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.608218 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.608256 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.608311 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.608356 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.608395 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.608432 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.608468 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.608504 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.608534 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.608569 close(4)                = 0
17:47:04.608596 munmap(0x7fe35854b000, 4096) = 0
17:47:04.608629 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.608668 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.608704 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.608739 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.608777 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.608810 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.608845 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.608874 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.608913 read(4, "", 4096)       = 0
17:47:04.608941 close(4)                = 0
17:47:04.608968 munmap(0x7fe35854b000, 4096) = 0
17:47:04.609000 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.609038 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.609562 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.609601 writev(3, [{"5\1\4\0+\6\300\3\16\1\0\0\20\0\20\0007\0\4\0,\6\300\3+\6\300\3\0\0\0\0H\1\26\0+\6\300\3,\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.609694 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.609727 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.611429 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.611466 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.611522 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.611566 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.611603 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.611640 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.611685 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.611721 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.611751 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.611787 close(4)                = 0
17:47:04.611815 munmap(0x7fe35854b000, 4096) = 0
17:47:04.611848 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.611887 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.611923 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.611959 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.611995 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.612029 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.612065 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.612095 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.612145 read(4, "", 4096)       = 0
17:47:04.612174 close(4)                = 0
17:47:04.612201 munmap(0x7fe35854b000, 4096) = 0
17:47:04.612234 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.612272 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.612622 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.612661 writev(3, [{"5\1\4\0000\6\300\3\16\1\0\0\20\0\20\0007\0\4\0001\6\300\0030\6\300\3\0\0\0\0H\1\26\0000\6\300\0031\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.612755 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.612788 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.614377 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.614414 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.614927 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.614964 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.615018 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.615061 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.615098 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.615134 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.615170 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.615205 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.615235 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.615270 close(4)                = 0
17:47:04.615298 munmap(0x7fe35854b000, 4096) = 0
17:47:04.615331 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.615370 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.615407 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.615442 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.615478 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.615512 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.615528 rt_sigreturn(0xe)       = 4
17:47:04.615556 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.615590 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.615630 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.615670 read(4, "", 4096)       = 0
17:47:04.615698 close(4)                = 0
17:47:04.615725 munmap(0x7fe35854b000, 4096) = 0
17:47:04.615758 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.615796 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.616684 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.616725 writev(3, [{"5\1\4\0005\6\300\3\16\1\0\0\20\0\20\0007\0\4\0006\6\300\0035\6\300\3\0\0\0\0H\1\26\0005\6\300\0036\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.616819 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.616852 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.618099 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.618136 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.618455 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.618492 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.618547 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.618589 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.618625 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.618661 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.618696 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.618732 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.618761 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.618797 close(4)                = 0
17:47:04.618824 munmap(0x7fe35854b000, 4096) = 0
17:47:04.618857 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.618896 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.618932 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.618967 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.619004 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.619037 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.619072 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.619101 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.619141 read(4, "", 4096)       = 0
17:47:04.619169 close(4)                = 0
17:47:04.619195 munmap(0x7fe35854b000, 4096) = 0
17:47:04.619228 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.619266 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.619957 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.619996 writev(3, [{"5\1\4\0:\6\300\3\16\1\0\0\20\0\20\0007\0\4\0;\6\300\3:\6\300\3\0\0\0\0H\1\26\0:\6\300\3;\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.620090 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.620123 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.620672 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.620709 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.621825 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.621870 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.622196 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.622232 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.622284 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.622325 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.622361 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.622398 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.622433 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.622469 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.622499 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.622534 close(4)                = 0
17:47:04.622562 munmap(0x7fe35854b000, 4096) = 0
17:47:04.622595 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.622633 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.622670 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.622705 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.622742 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.622775 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.622810 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.622839 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.622878 read(4, "", 4096)       = 0
17:47:04.622906 close(4)                = 0
17:47:04.622932 munmap(0x7fe35854b000, 4096) = 0
17:47:04.622964 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.623002 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.623295 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.623334 writev(3, [{"5\1\4\0?\6\300\3\16\1\0\0\20\0\20\0007\0\4\0@\6\300\3?\6\300\3\0\0\0\0H\1\26\0?\6\300\3@\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.623427 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.623460 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.623878 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.623914 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.624367 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.624403 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.624728 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.624764 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.625063 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.625098 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.625392 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.625427 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.625730 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.625765 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.626000 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.626035 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.635515 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.635586 rt_sigreturn(0xe)       = 1383268
17:47:04.641650 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.641758 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.643057 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.643095 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.643175 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.643227 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.643266 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.643307 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.643350 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.643387 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.643422 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.643460 close(4)                = 0
17:47:04.643489 munmap(0x7fe35854b000, 4096) = 0
17:47:04.643527 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.643566 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.643603 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.643639 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.643676 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.643710 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.643745 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.643774 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.643814 read(4, "", 4096)       = 0
17:47:04.643841 close(4)                = 0
17:47:04.643867 munmap(0x7fe35854b000, 4096) = 0
17:47:04.643901 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.643939 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.646091 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.646135 writev(3, [{"5\1\4\0D\6\300\3\16\1\0\0\20\0\20\0007\0\4\0E\6\300\3D\6\300\3\0\0\0\0H\1\26\0D\6\300\3E\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.646325 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.646359 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.646412 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.646453 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.646490 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.646526 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.646561 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.646597 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.646627 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.646663 close(4)                = 0
17:47:04.646691 munmap(0x7fe35854b000, 4096) = 0
17:47:04.646725 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.646763 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.646800 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.646836 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.646882 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.646916 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.646952 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.646981 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.647021 read(4, "", 4096)       = 0
17:47:04.647050 close(4)                = 0
17:47:04.647076 munmap(0x7fe35854b000, 4096) = 0
17:47:04.647109 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.647147 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.648513 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.648552 writev(3, [{"5\1\4\0I\6\300\3\16\1\0\0\20\0\20\0007\0\4\0J\6\300\3I\6\300\3\0\0\0\0H\1\26\0I\6\300\3J\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.648646 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.648681 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.649601 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.649637 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.649689 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.649731 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.649767 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.649804 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.649840 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.649876 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.649906 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.649942 close(4)                = 0
17:47:04.649970 munmap(0x7fe35854b000, 4096) = 0
17:47:04.650004 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.650043 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.650080 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.650115 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.650152 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.650185 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.650220 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.650249 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.650289 read(4, "", 4096)       = 0
17:47:04.650317 close(4)                = 0
17:47:04.650344 munmap(0x7fe35854b000, 4096) = 0
17:47:04.650377 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.650415 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.652437 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.652477 writev(3, [{"5\1\4\0N\6\300\3\16\1\0\0\20\0\20\0007\0\4\0O\6\300\3N\6\300\3\0\0\0\0H\1\26\0N\6\300\3O\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.652572 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.652606 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.652658 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.652710 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.652747 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.652784 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.652819 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.652855 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.652885 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.652921 close(4)                = 0
17:47:04.652949 munmap(0x7fe35854b000, 4096) = 0
17:47:04.652982 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.653021 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.653057 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.653092 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.653129 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.653162 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.653197 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.653227 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.653266 read(4, "", 4096)       = 0
17:47:04.653294 close(4)                = 0
17:47:04.653321 munmap(0x7fe35854b000, 4096) = 0
17:47:04.653354 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.653392 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.655019 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.655059 writev(3, [{"5\1\4\0S\6\300\3\16\1\0\0\20\0\20\0007\0\4\0T\6\300\3S\6\300\3\0\0\0\0H\1\26\0S\6\300\3T\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.655154 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.655189 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.655493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.655516 rt_sigreturn(0xe)       = 0
17:47:04.655888 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.655926 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.655990 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.656033 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.656069 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.656106 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.656147 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.656183 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.656213 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.656249 close(4)                = 0
17:47:04.656277 munmap(0x7fe35854b000, 4096) = 0
17:47:04.656310 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.656349 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.656385 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.656420 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.656457 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.656499 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.656535 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.656564 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.656603 read(4, "", 4096)       = 0
17:47:04.656632 close(4)                = 0
17:47:04.656658 munmap(0x7fe35854b000, 4096) = 0
17:47:04.656691 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.656730 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.658759 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.658796 writev(3, [{"5\1\4\0X\6\300\3\16\1\0\0\20\0\20\0007\0\4\0Y\6\300\3X\6\300\3\0\0\0\0H\1\26\0X\6\300\3Y\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.658891 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.658923 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.658974 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.659013 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.659048 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.659083 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.659118 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.659152 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.659181 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.659214 close(4)                = 0
17:47:04.659241 munmap(0x7fe35854b000, 4096) = 0
17:47:04.659272 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.659310 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.659345 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.659379 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.659414 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.659446 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.659480 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.659508 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.659546 read(4, "", 4096)       = 0
17:47:04.659573 close(4)                = 0
17:47:04.659598 munmap(0x7fe35854b000, 4096) = 0
17:47:04.659630 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.659666 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.661654 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.661693 writev(3, [{"5\1\4\0]\6\300\3\16\1\0\0\20\0\20\0007\0\4\0^\6\300\3]\6\300\3\0\0\0\0H\1\26\0]\6\300\3^\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.661785 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.661817 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.662128 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.662162 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.662212 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.662252 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.662296 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.662332 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.662367 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.662401 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.662430 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.662464 close(4)                = 0
17:47:04.662490 munmap(0x7fe35854b000, 4096) = 0
17:47:04.662523 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.662560 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.662602 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.662639 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.662675 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.662708 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.662744 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.662773 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.662813 read(4, "", 4096)       = 0
17:47:04.662841 close(4)                = 0
17:47:04.662867 munmap(0x7fe35854b000, 4096) = 0
17:47:04.662900 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.662938 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.664986 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.665024 writev(3, [{"5\1\4\0b\6\300\3\16\1\0\0\20\0\20\0007\0\4\0c\6\300\3b\6\300\3\0\0\0\0H\1\26\0b\6\300\3c\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.665117 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.665148 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.665200 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.665240 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.665275 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.665310 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.665344 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.665379 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.665408 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.665442 close(4)                = 0
17:47:04.665475 munmap(0x7fe35854b000, 4096) = 0
17:47:04.665508 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.665545 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.665581 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.665614 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.665649 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.665680 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.665714 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.665742 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.665789 read(4, "", 4096)       = 0
17:47:04.665816 close(4)                = 0
17:47:04.665842 munmap(0x7fe35854b000, 4096) = 0
17:47:04.665874 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.665910 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.667587 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.667627 writev(3, [{"5\1\4\0g\6\300\3\16\1\0\0\20\0\20\0007\0\4\0h\6\300\3g\6\300\3\0\0\0\0H\1\26\0g\6\300\3h\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.667720 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.667753 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.668347 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.668382 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.668434 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.668474 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.668508 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.668543 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.668578 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.668612 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.668641 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.668676 close(4)                = 0
17:47:04.668702 munmap(0x7fe35854b000, 4096) = 0
17:47:04.668735 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.668772 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.668807 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.668841 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.668876 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.668908 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.668942 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.668970 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.669008 read(4, "", 4096)       = 0
17:47:04.669035 close(4)                = 0
17:47:04.669060 munmap(0x7fe35854b000, 4096) = 0
17:47:04.669091 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.669128 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.671152 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.671190 writev(3, [{"5\1\4\0l\6\300\3\16\1\0\0\20\0\20\0007\0\4\0m\6\300\3l\6\300\3\0\0\0\0H\1\26\0l\6\300\3m\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.671291 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.671326 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.671381 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.671423 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.671460 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.671498 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.671534 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.671580 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.671611 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.671647 close(4)                = 0
17:47:04.671676 munmap(0x7fe35854b000, 4096) = 0
17:47:04.671710 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.671749 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.671787 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.671823 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.671861 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.671895 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.671932 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.671963 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.672004 read(4, "", 4096)       = 0
17:47:04.672033 close(4)                = 0
17:47:04.672061 munmap(0x7fe35854b000, 4096) = 0
17:47:04.672094 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.672144 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.672950 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.672988 writev(3, [{"5\1\4\0q\6\300\3\16\1\0\0\20\0\20\0007\0\4\0r\6\300\3q\6\300\3\0\0\0\0H\1\26\0q\6\300\3r\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.673080 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.673117 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.674568 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.674604 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.674655 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.674695 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.674729 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.674764 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.674799 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.674833 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.674862 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.674896 close(4)                = 0
17:47:04.674922 munmap(0x7fe35854b000, 4096) = 0
17:47:04.674955 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.674992 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.675033 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.675070 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.675108 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.675141 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.675178 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.675208 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.675248 read(4, "", 4096)       = 0
17:47:04.675277 close(4)                = 0
17:47:04.675304 munmap(0x7fe35854b000, 4096) = 0
17:47:04.675347 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.675386 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.675493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.675514 rt_sigreturn(0xe)       = 22868100
17:47:04.676477 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.676515 writev(3, [{"5\1\4\0v\6\300\3\16\1\0\0\20\0\20\0007\0\4\0w\6\300\3v\6\300\3\0\0\0\0H\1\26\0v\6\300\3w\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.676607 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.676639 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.677883 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.677920 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.677972 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.678011 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.678046 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.678081 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.678115 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.678149 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.678178 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.678212 close(4)                = 0
17:47:04.678238 munmap(0x7fe35854b000, 4096) = 0
17:47:04.678270 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.678307 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.678342 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.678376 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.678410 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.678442 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.678476 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.678504 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.678542 read(4, "", 4096)       = 0
17:47:04.678568 close(4)                = 0
17:47:04.678594 munmap(0x7fe35854b000, 4096) = 0
17:47:04.678625 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.678661 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.679684 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.679722 writev(3, [{"5\1\4\0{\6\300\3\16\1\0\0\20\0\20\0007\0\4\0|\6\300\3{\6\300\3\0\0\0\0H\1\26\0{\6\300\3|\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.679819 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.679853 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.681096 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.681132 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.681183 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.681223 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.681257 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.681303 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.681339 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.681373 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.681402 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.681436 close(4)                = 0
17:47:04.681462 munmap(0x7fe35854b000, 4096) = 0
17:47:04.681494 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.681531 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.681566 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.681600 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.681635 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.681667 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.681701 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.681735 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.681776 read(4, "", 4096)       = 0
17:47:04.681804 close(4)                = 0
17:47:04.681831 munmap(0x7fe35854b000, 4096) = 0
17:47:04.681864 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.681903 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.682749 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.682787 writev(3, [{"5\1\4\0\200\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\201\6\300\3\200\6\300\3\0\0\0\0H\1\26\0\200\6\300\3\201\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.682880 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.682912 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.684407 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.684443 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.684609 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.684643 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.684694 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.684733 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.684767 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.684803 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.684837 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.684872 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.684901 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.684935 close(4)                = 0
17:47:04.684962 munmap(0x7fe35854b000, 4096) = 0
17:47:04.684994 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.685031 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.685067 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.685100 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.685135 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.685167 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.685201 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.685237 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.685277 read(4, "", 4096)       = 0
17:47:04.685304 close(4)                = 0
17:47:04.685330 munmap(0x7fe35854b000, 4096) = 0
17:47:04.685361 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.685398 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.686289 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.686327 writev(3, [{"5\1\4\0\205\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\206\6\300\3\205\6\300\3\0\0\0\0H\1\26\0\205\6\300\3\206\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.686420 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.686452 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.687688 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.687725 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.688082 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.688118 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.688183 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.688223 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.688258 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.688293 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.688328 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.688362 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.688391 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.688431 close(4)                = 0
17:47:04.688458 munmap(0x7fe35854b000, 4096) = 0
17:47:04.688490 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.688527 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.688562 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.688596 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.688631 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.688663 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.688696 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.688725 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.688763 read(4, "", 4096)       = 0
17:47:04.688790 close(4)                = 0
17:47:04.688816 munmap(0x7fe35854b000, 4096) = 0
17:47:04.688847 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.688883 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.689394 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.689432 writev(3, [{"5\1\4\0\212\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\213\6\300\3\212\6\300\3\0\0\0\0H\1\26\0\212\6\300\3\213\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.689525 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.689557 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.690154 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.690189 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.690611 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.690655 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.691554 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.691591 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.692084 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.692120 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.692478 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.692513 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.692631 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.692664 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.692714 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.692754 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.692788 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.692823 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.692857 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.692891 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.692920 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.692953 close(4)                = 0
17:47:04.692980 munmap(0x7fe35854b000, 4096) = 0
17:47:04.693012 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.693049 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.693084 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.693117 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.693152 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.693184 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.693221 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.693249 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.693287 read(4, "", 4096)       = 0
17:47:04.693314 close(4)                = 0
17:47:04.693339 munmap(0x7fe35854b000, 4096) = 0
17:47:04.693370 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.693406 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.693699 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.693736 writev(3, [{"5\1\4\0\217\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\220\6\300\3\217\6\300\3\0\0\0\0H\1\26\0\217\6\300\3\220\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.693829 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.693861 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.694158 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.694193 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.694472 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.694506 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.694804 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.694837 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.695107 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.695146 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.695450 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.695488 select(4, [3], [], [3], {0, 0}) = ? ERESTARTNOHAND (To be restarted)
17:47:04.695523 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.695540 rt_sigreturn(0xe)       = -1 EINTR (Interrupted system call)
17:47:04.695872 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.695909 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.696179 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.696214 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.696460 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.696494 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.696721 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.696755 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.696992 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.697029 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.697265 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.697299 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.697534 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.697567 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.697801 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.697834 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.698069 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.698103 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.698337 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.698371 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.698604 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.698638 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.698873 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.698907 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.699142 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.699176 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.699407 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.699441 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.699667 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.699700 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.699937 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.699972 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.700214 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.700247 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.700475 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.700508 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.700734 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.700766 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.700995 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.701028 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.701253 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.701285 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.701513 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.701545 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.701770 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.701802 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.702034 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.702067 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.702292 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.702324 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.702552 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.702585 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.702814 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.702846 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.703074 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.703115 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.703342 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.703374 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.703602 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.703634 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.703862 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.703895 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.704120 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.704177 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.704411 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.704445 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.704666 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.704705 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.704943 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.704978 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.705202 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.705237 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.705468 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.705503 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.705737 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.705771 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.705993 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.706026 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.706253 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.706286 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.706515 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.706548 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.715510 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.715581 rt_sigreturn(0xe)       = 1167389
17:47:04.722802 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.722882 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.724242 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.724280 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.724359 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.724407 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.724442 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.724479 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.724519 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.724559 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.724594 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.724631 close(4)                = 0
17:47:04.724658 munmap(0x7fe35854b000, 4096) = 0
17:47:04.724695 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.724732 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.724768 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.724802 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.724838 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.724870 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.724903 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.724949 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.724995 read(4, "", 4096)       = 0
17:47:04.725023 close(4)                = 0
17:47:04.725050 munmap(0x7fe35854b000, 4096) = 0
17:47:04.725082 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.725120 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.727280 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.727320 writev(3, [{"5\1\4\0\224\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\225\6\300\3\224\6\300\3\0\0\0\0H\1\26\0\224\6\300\3\225\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.727511 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.727545 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.727597 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.727637 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.727671 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.727707 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.727742 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.727776 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.727805 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.727844 close(4)                = 0
17:47:04.727873 munmap(0x7fe35854b000, 4096) = 0
17:47:04.727907 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.727945 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.727982 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.728017 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.728053 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.728086 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.728121 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.728169 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.728208 read(4, "", 4096)       = 0
17:47:04.728235 close(4)                = 0
17:47:04.728261 munmap(0x7fe35854b000, 4096) = 0
17:47:04.728292 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.728329 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.729594 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.729632 writev(3, [{"5\1\4\0\231\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\232\6\300\3\231\6\300\3\0\0\0\0H\1\26\0\231\6\300\3\232\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.729726 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.729758 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.730750 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.730788 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.730840 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.730880 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.730913 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.730956 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.730991 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.731024 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.731052 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.731085 close(4)                = 0
17:47:04.731110 munmap(0x7fe35854b000, 4096) = 0
17:47:04.731142 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.731178 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.731211 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.731248 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.731283 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.731313 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.731346 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.731372 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.731409 read(4, "", 4096)       = 0
17:47:04.731434 close(4)                = 0
17:47:04.731457 munmap(0x7fe35854b000, 4096) = 0
17:47:04.731487 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.731521 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.733563 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.733605 writev(3, [{"5\1\4\0\236\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\237\6\300\3\236\6\300\3\0\0\0\0H\1\26\0\236\6\300\3\237\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.733699 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.733730 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.733780 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.733818 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.733851 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.733884 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.733917 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.733950 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.733977 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.734009 close(4)                = 0
17:47:04.734034 munmap(0x7fe35854b000, 4096) = 0
17:47:04.734071 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.734107 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.734142 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.734174 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.734208 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.734238 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.734271 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.734297 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.734334 read(4, "", 4096)       = 0
17:47:04.734359 close(4)                = 0
17:47:04.734382 munmap(0x7fe35854b000, 4096) = 0
17:47:04.734412 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.734456 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.735494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.735520 rt_sigreturn(0xe)       = 0
17:47:04.736071 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.736107 writev(3, [{"5\1\4\0\243\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\244\6\300\3\243\6\300\3\0\0\0\0H\1\26\0\243\6\300\3\244\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.736205 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.736235 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.736931 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.736965 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.737014 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.737052 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.737085 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.737119 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.737152 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.737185 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.737212 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.737244 close(4)                = 0
17:47:04.737269 munmap(0x7fe35854b000, 4096) = 0
17:47:04.737300 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.737336 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.737370 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.737407 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.737443 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.737474 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.737506 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.737533 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.737570 read(4, "", 4096)       = 0
17:47:04.737596 close(4)                = 0
17:47:04.737620 munmap(0x7fe35854b000, 4096) = 0
17:47:04.737650 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.737685 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.739707 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.739744 writev(3, [{"5\1\4\0\250\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\251\6\300\3\250\6\300\3\0\0\0\0H\1\26\0\250\6\300\3\251\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.739839 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.739870 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.739920 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.739958 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.739991 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.740024 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.740058 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.740091 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.740132 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.740168 close(4)                = 0
17:47:04.740193 munmap(0x7fe35854b000, 4096) = 0
17:47:04.740223 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.740259 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.740298 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.740331 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.740364 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.740394 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.740427 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.740453 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.740490 read(4, "", 4096)       = 0
17:47:04.740515 close(4)                = 0
17:47:04.740539 munmap(0x7fe35854b000, 4096) = 0
17:47:04.740569 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.740604 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.742483 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.742520 writev(3, [{"5\1\4\0\255\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\256\6\300\3\255\6\300\3\0\0\0\0H\1\26\0\255\6\300\3\256\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.742612 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.742642 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.743044 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.743078 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.743127 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.743172 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.743206 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.743239 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.743272 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.743305 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.743332 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.743364 close(4)                = 0
17:47:04.743388 munmap(0x7fe35854b000, 4096) = 0
17:47:04.743419 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.743455 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.743488 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.743520 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.743554 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.743584 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.743618 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.743646 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.743682 read(4, "", 4096)       = 0
17:47:04.743707 close(4)                = 0
17:47:04.743731 munmap(0x7fe35854b000, 4096) = 0
17:47:04.743761 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.743806 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.745856 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.745893 writev(3, [{"5\1\4\0\262\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\263\6\300\3\262\6\300\3\0\0\0\0H\1\26\0\262\6\300\3\263\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.745985 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.746022 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.746075 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.746113 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.746146 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.746180 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.746212 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.746246 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.746273 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.746305 close(4)                = 0
17:47:04.746330 munmap(0x7fe35854b000, 4096) = 0
17:47:04.746361 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.746396 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.746430 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.746462 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.746501 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.746531 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.746563 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.746590 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.746627 read(4, "", 4096)       = 0
17:47:04.746652 close(4)                = 0
17:47:04.746675 munmap(0x7fe35854b000, 4096) = 0
17:47:04.746705 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.746740 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.748340 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.748378 writev(3, [{"5\1\4\0\267\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\270\6\300\3\267\6\300\3\0\0\0\0H\1\26\0\267\6\300\3\270\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.748475 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.748507 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.749200 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.749235 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.749287 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.749328 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.749367 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.749402 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.749434 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.749468 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.749495 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.749537 close(4)                = 0
17:47:04.749562 munmap(0x7fe35854b000, 4096) = 0
17:47:04.749592 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.749628 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.749662 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.749694 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.749727 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.749757 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.749790 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.749816 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.749856 read(4, "", 4096)       = 0
17:47:04.749883 close(4)                = 0
17:47:04.749907 munmap(0x7fe35854b000, 4096) = 0
17:47:04.749937 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.749972 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.751999 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.752036 writev(3, [{"5\1\4\0\274\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\275\6\300\3\274\6\300\3\0\0\0\0H\1\26\0\274\6\300\3\275\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.752133 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.752166 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.752217 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.752257 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.752291 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.752325 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.752358 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.752391 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.752418 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.752451 close(4)                = 0
17:47:04.752476 munmap(0x7fe35854b000, 4096) = 0
17:47:04.752507 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.752542 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.752576 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.752608 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.752642 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.752672 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.752707 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.752734 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.752771 read(4, "", 4096)       = 0
17:47:04.752796 close(4)                = 0
17:47:04.752820 munmap(0x7fe35854b000, 4096) = 0
17:47:04.752849 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.752883 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.753661 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.753706 writev(3, [{"5\1\4\0\301\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\302\6\300\3\301\6\300\3\0\0\0\0H\1\26\0\301\6\300\3\302\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.753798 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.753829 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.755303 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.755338 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.755387 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.755425 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.755458 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.755490 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.755506 rt_sigreturn(0xe)       = 0
17:47:04.755532 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.755565 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.755598 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.755626 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.755658 close(4)                = 0
17:47:04.755683 munmap(0x7fe35854b000, 4096) = 0
17:47:04.755714 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.755749 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.755782 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.755814 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.755848 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.755878 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.755911 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.755937 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.755974 read(4, "", 4096)       = 0
17:47:04.755999 close(4)                = 0
17:47:04.756023 munmap(0x7fe35854b000, 4096) = 0
17:47:04.756056 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.756092 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.757080 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.757117 writev(3, [{"5\1\4\0\306\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\307\6\300\3\306\6\300\3\0\0\0\0H\1\26\0\306\6\300\3\307\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.757209 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.757240 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.758509 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.758544 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.758593 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.758631 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.758664 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.758698 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.758731 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.758764 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.758791 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.758831 close(4)                = 0
17:47:04.758857 munmap(0x7fe35854b000, 4096) = 0
17:47:04.758887 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.758928 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.758963 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.758995 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.759028 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.759059 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.759092 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.759118 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.759155 read(4, "", 4096)       = 0
17:47:04.759180 close(4)                = 0
17:47:04.759203 munmap(0x7fe35854b000, 4096) = 0
17:47:04.759233 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.759267 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.760265 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.760304 writev(3, [{"5\1\4\0\313\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\314\6\300\3\313\6\300\3\0\0\0\0H\1\26\0\313\6\300\3\314\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.760396 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.760427 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.761682 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.761716 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.761765 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.761807 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.761841 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.761875 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.761907 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.761940 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.761967 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.761999 close(4)                = 0
17:47:04.762024 munmap(0x7fe35854b000, 4096) = 0
17:47:04.762054 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.762089 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.762123 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.762155 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.762188 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.762218 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.762251 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.762277 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.762314 read(4, "", 4096)       = 0
17:47:04.762340 close(4)                = 0
17:47:04.762364 munmap(0x7fe35854b000, 4096) = 0
17:47:04.762393 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.762427 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.763251 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.763290 writev(3, [{"5\1\4\0\320\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\321\6\300\3\320\6\300\3\0\0\0\0H\1\26\0\320\6\300\3\321\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.763382 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.763412 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.764841 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.764877 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.765124 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.765158 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.765207 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.765246 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.765279 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.765312 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.765345 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.765379 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.765406 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.765438 close(4)                = 0
17:47:04.765463 munmap(0x7fe35854b000, 4096) = 0
17:47:04.765500 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.765543 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.765581 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.765617 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.765653 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.765683 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.765715 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.765742 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.765778 read(4, "", 4096)       = 0
17:47:04.765803 close(4)                = 0
17:47:04.765827 munmap(0x7fe35854b000, 4096) = 0
17:47:04.765857 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.765891 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.766751 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.766788 writev(3, [{"5\1\4\0\325\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\326\6\300\3\325\6\300\3\0\0\0\0H\1\26\0\325\6\300\3\326\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.766879 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.766909 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.768015 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.768050 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.768575 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.768611 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.768661 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.768701 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.768736 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.768779 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.768813 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.768846 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.768873 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.768906 close(4)                = 0
17:47:04.768930 munmap(0x7fe35854b000, 4096) = 0
17:47:04.768960 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.768996 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.769030 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.769063 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.769097 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.769127 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.769159 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.769186 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.769223 read(4, "", 4096)       = 0
17:47:04.769248 close(4)                = 0
17:47:04.769271 munmap(0x7fe35854b000, 4096) = 0
17:47:04.769301 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.769335 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.769811 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.769848 writev(3, [{"5\1\4\0\332\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\333\6\300\3\332\6\300\3\0\0\0\0H\1\26\0\332\6\300\3\333\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.769939 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.769970 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.770566 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.770601 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.771023 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.771056 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.771883 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.771917 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.772430 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.772465 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.772856 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.772891 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.773212 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.773245 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.773284 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.773313 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.773361 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.773399 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.773432 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.773466 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.773499 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.773532 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.773559 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.773591 close(4)                = 0
17:47:04.773616 munmap(0x7fe35854b000, 4096) = 0
17:47:04.773646 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.773691 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.773725 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.773758 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.773791 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.773822 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.773855 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.773881 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.773918 read(4, "", 4096)       = 0
17:47:04.773943 close(4)                = 0
17:47:04.773967 munmap(0x7fe35854b000, 4096) = 0
17:47:04.773997 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.774031 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.774371 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.774409 writev(3, [{"5\1\4\0\337\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\340\6\300\3\337\6\300\3\0\0\0\0H\1\26\0\337\6\300\3\340\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.774503 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.774535 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.774795 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.774827 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.775108 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.775141 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.775419 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.775451 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.775492 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.775510 rt_sigreturn(0xe)       = 140613292434216
17:47:04.775763 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.775795 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.776061 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.776093 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.776392 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.776427 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.776702 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.776735 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.776975 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.777007 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.777245 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.777280 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.777512 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.777545 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.777769 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.777801 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.778029 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.778065 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.778288 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.778321 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.778546 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.778578 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.778802 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.778833 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.779070 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.779104 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.779329 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.779362 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.779586 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.779618 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.779841 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.779872 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.780100 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.780144 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.780372 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.780406 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.780631 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.780663 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.780887 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.780923 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.781150 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.781184 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.781407 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.781439 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.781665 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.781697 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.781923 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.781956 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.782175 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.782207 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.782436 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.782468 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.782684 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.782715 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.782939 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.782972 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.783199 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.783231 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.783448 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.783479 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.783702 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.783734 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.783960 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.783991 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.784216 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.784250 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.784474 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.784506 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.784734 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.784768 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.784988 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.785021 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.785245 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.785277 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.795512 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.795585 rt_sigreturn(0xe)       = 781096
17:47:04.802116 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.802206 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.803888 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.803928 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.804021 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.804073 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.804111 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.804167 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.804208 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.804243 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.804275 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.804311 close(4)                = 0
17:47:04.804337 munmap(0x7fe35854b000, 4096) = 0
17:47:04.804372 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.804409 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.804443 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.804475 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.804510 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.804541 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.804573 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.804600 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.804637 read(4, "", 4096)       = 0
17:47:04.804662 close(4)                = 0
17:47:04.804686 munmap(0x7fe35854b000, 4096) = 0
17:47:04.804716 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.804751 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.806886 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.806925 writev(3, [{"5\1\4\0\344\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\345\6\300\3\344\6\300\3\0\0\0\0H\1\26\0\344\6\300\3\345\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.807052 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.807083 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.807133 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.807171 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.807204 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.807237 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.807270 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.807304 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.807331 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.807364 close(4)                = 0
17:47:04.807388 munmap(0x7fe35854b000, 4096) = 0
17:47:04.807419 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.807455 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.807488 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.807521 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.807554 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.807584 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.807626 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.807653 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.807690 read(4, "", 4096)       = 0
17:47:04.807715 close(4)                = 0
17:47:04.807739 munmap(0x7fe35854b000, 4096) = 0
17:47:04.807769 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.807804 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.808806 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.808845 writev(3, [{"5\1\4\0\351\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\352\6\300\3\351\6\300\3\0\0\0\0H\1\26\0\351\6\300\3\352\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.808938 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.808969 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.810188 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.810225 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.810276 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.810315 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.810349 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.810382 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.810415 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.810449 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.810477 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.810510 close(4)                = 0
17:47:04.810535 munmap(0x7fe35854b000, 4096) = 0
17:47:04.810565 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.810601 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.810635 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.810667 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.810700 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.810731 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.810763 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.810790 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.810826 read(4, "", 4096)       = 0
17:47:04.810851 close(4)                = 0
17:47:04.810875 munmap(0x7fe35854b000, 4096) = 0
17:47:04.810905 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.810940 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.812959 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.812999 writev(3, [{"5\1\4\0\356\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\357\6\300\3\356\6\300\3\0\0\0\0H\1\26\0\356\6\300\3\357\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.813094 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.813127 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.813179 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.813218 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.813260 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.813295 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.813329 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.813362 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.813389 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.813422 close(4)                = 0
17:47:04.813447 munmap(0x7fe35854b000, 4096) = 0
17:47:04.813478 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.813513 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.813547 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.813579 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.813613 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.813643 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.813676 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.813702 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.813738 read(4, "", 4096)       = 0
17:47:04.813763 close(4)                = 0
17:47:04.813787 munmap(0x7fe35854b000, 4096) = 0
17:47:04.813817 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.813851 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.814994 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.815032 writev(3, [{"5\1\4\0\363\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\364\6\300\3\363\6\300\3\0\0\0\0H\1\26\0\363\6\300\3\364\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.815124 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.815155 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.815493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.815514 rt_sigreturn(0xe)       = 24
17:47:04.816339 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.816375 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.816426 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.816467 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.816502 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.816536 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.816569 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.816602 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.816629 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.816661 close(4)                = 0
17:47:04.816686 munmap(0x7fe35854b000, 4096) = 0
17:47:04.816717 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.816752 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.816786 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.816818 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.816852 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.816882 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.816923 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.816951 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.816987 read(4, "", 4096)       = 0
17:47:04.817012 close(4)                = 0
17:47:04.817036 munmap(0x7fe35854b000, 4096) = 0
17:47:04.817066 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.817101 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.819111 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.819150 writev(3, [{"5\1\4\0\370\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\371\6\300\3\370\6\300\3\0\0\0\0H\1\26\0\370\6\300\3\371\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.819244 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.819277 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.819328 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.819366 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.819399 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.819433 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.819466 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.819499 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.819526 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.819558 close(4)                = 0
17:47:04.819583 munmap(0x7fe35854b000, 4096) = 0
17:47:04.819614 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.819649 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.819683 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.819715 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.819749 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.819779 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.819812 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.819838 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.819875 read(4, "", 4096)       = 0
17:47:04.819900 close(4)                = 0
17:47:04.819924 munmap(0x7fe35854b000, 4096) = 0
17:47:04.819954 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.819989 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.821408 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.821448 writev(3, [{"5\1\4\0\375\6\300\3\16\1\0\0\20\0\20\0007\0\4\0\376\6\300\3\375\6\300\3\0\0\0\0H\1\26\0\375\6\300\3\376\6\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.821540 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.821573 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.822421 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.822456 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.822507 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.822546 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.822588 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.822623 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.822656 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.822689 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.822716 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.822749 close(4)                = 0
17:47:04.822774 munmap(0x7fe35854b000, 4096) = 0
17:47:04.822804 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.822839 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.822873 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.822906 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.822939 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.822969 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.823002 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.823029 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.823065 read(4, "", 4096)       = 0
17:47:04.823090 close(4)                = 0
17:47:04.823115 munmap(0x7fe35854b000, 4096) = 0
17:47:04.823144 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.823178 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.825198 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.825238 writev(3, [{"5\1\4\0\2\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\3\7\300\3\2\7\300\3\0\0\0\0H\1\26\0\2\7\300\3\3\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.825331 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.825363 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.825414 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.825452 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.825485 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.825518 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.825552 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.825585 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.825611 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.825643 close(4)                = 0
17:47:04.825668 munmap(0x7fe35854b000, 4096) = 0
17:47:04.825698 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.825734 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.825768 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.825800 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.825833 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.825863 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.825896 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.825922 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.825959 read(4, "", 4096)       = 0
17:47:04.825993 close(4)                = 0
17:47:04.826018 munmap(0x7fe35854b000, 4096) = 0
17:47:04.826048 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.826082 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.827439 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.827479 writev(3, [{"5\1\4\0\7\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\10\7\300\3\7\7\300\3\0\0\0\0H\1\26\0\7\7\300\3\10\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.827572 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.827603 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.828541 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.828577 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.828629 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.828669 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.828704 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.828738 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.828772 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.828805 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.828832 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.828865 close(4)                = 0
17:47:04.828890 munmap(0x7fe35854b000, 4096) = 0
17:47:04.828921 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.828957 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.828991 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.829023 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.829057 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.829087 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.829119 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.829146 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.829182 read(4, "", 4096)       = 0
17:47:04.829207 close(4)                = 0
17:47:04.829231 munmap(0x7fe35854b000, 4096) = 0
17:47:04.829260 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.829295 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.831307 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.831346 writev(3, [{"5\1\4\0\f\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\r\7\300\3\f\7\300\3\0\0\0\0H\1\26\0\f\7\300\3\r\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.831438 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.831470 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.831520 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.831558 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.831591 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.831624 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.831657 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.831690 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.831726 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.831759 close(4)                = 0
17:47:04.831784 munmap(0x7fe35854b000, 4096) = 0
17:47:04.831814 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.831850 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.831884 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.831916 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.831949 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.831979 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.832012 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.832039 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.832076 read(4, "", 4096)       = 0
17:47:04.832101 close(4)                = 0
17:47:04.832125 munmap(0x7fe35854b000, 4096) = 0
17:47:04.832174 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.832210 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.832956 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.832992 writev(3, [{"5\1\4\0\21\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\22\7\300\3\21\7\300\3\0\0\0\0H\1\26\0\21\7\300\3\22\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.833083 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.833114 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.834602 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.834637 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.834687 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.834725 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.834759 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.834792 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.834825 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.834859 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.834885 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.834918 close(4)                = 0
17:47:04.834942 munmap(0x7fe35854b000, 4096) = 0
17:47:04.834972 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.835008 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.835042 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.835074 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.835107 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.835138 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.835170 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.835197 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.835233 read(4, "", 4096)       = 0
17:47:04.835258 close(4)                = 0
17:47:04.835281 munmap(0x7fe35854b000, 4096) = 0
17:47:04.835311 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.835355 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.835491 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.835512 rt_sigreturn(0xe)       = 4360990
17:47:04.836421 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.836457 writev(3, [{"5\1\4\0\26\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\27\7\300\3\26\7\300\3\0\0\0\0H\1\26\0\26\7\300\3\27\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.836549 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.836580 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.837816 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.837852 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.837904 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.837943 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.837977 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.838010 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.838043 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.838076 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.838103 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.838135 close(4)                = 0
17:47:04.838160 munmap(0x7fe35854b000, 4096) = 0
17:47:04.838190 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.838226 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.838260 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.838292 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.838326 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.838356 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.838389 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.838416 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.838452 read(4, "", 4096)       = 0
17:47:04.838477 close(4)                = 0
17:47:04.838501 munmap(0x7fe35854b000, 4096) = 0
17:47:04.838531 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.838565 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.839611 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.839648 writev(3, [{"5\1\4\0\33\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\34\7\300\3\33\7\300\3\0\0\0\0H\1\26\0\33\7\300\3\34\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.839740 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.839771 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.840986 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.841022 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.841074 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.841114 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.841149 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.841183 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.841226 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.841259 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.841286 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.841318 close(4)                = 0
17:47:04.841343 munmap(0x7fe35854b000, 4096) = 0
17:47:04.841373 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.841409 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.841442 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.841475 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.841508 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.841539 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.841571 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.841597 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.841634 read(4, "", 4096)       = 0
17:47:04.841659 close(4)                = 0
17:47:04.841683 munmap(0x7fe35854b000, 4096) = 0
17:47:04.841713 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.841747 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.842641 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.842677 writev(3, [{"5\1\4\0 \7\300\3\16\1\0\0\20\0\20\0007\0\4\0!\7\300\3 \7\300\3\0\0\0\0H\1\26\0 \7\300\3!\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.842768 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.842799 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.844166 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.844202 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.844253 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.844294 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.844328 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.844362 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.844395 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.844428 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.844455 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.844487 close(4)                = 0
17:47:04.844512 munmap(0x7fe35854b000, 4096) = 0
17:47:04.844543 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.844578 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.844612 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.844644 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.844677 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.844708 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.844740 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.844767 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.844804 read(4, "", 4096)       = 0
17:47:04.844829 close(4)                = 0
17:47:04.844866 munmap(0x7fe35854b000, 4096) = 0
17:47:04.844897 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.844932 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.845272 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.845308 writev(3, [{"5\1\4\0%\7\300\3\16\1\0\0\20\0\20\0007\0\4\0&\7\300\3%\7\300\3\0\0\0\0H\1\26\0%\7\300\3&\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.845399 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.845430 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.846320 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.846354 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.847661 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.847696 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.847858 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.847890 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.847939 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.847977 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.848010 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.848043 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.848076 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.848110 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.848143 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.848176 close(4)                = 0
17:47:04.848201 munmap(0x7fe35854b000, 4096) = 0
17:47:04.848231 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.848267 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.848301 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.848333 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.848367 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.848397 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.848430 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.848456 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.848493 read(4, "", 4096)       = 0
17:47:04.848518 close(4)                = 0
17:47:04.848542 munmap(0x7fe35854b000, 4096) = 0
17:47:04.848572 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.848606 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.849302 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.849338 writev(3, [{"5\1\4\0*\7\300\3\16\1\0\0\20\0\20\0007\0\4\0+\7\300\3*\7\300\3\0\0\0\0H\1\26\0*\7\300\3+\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.849429 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.849459 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.849967 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.850000 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.850703 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.850737 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.851444 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.851484 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.851936 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.851970 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.852055 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.852086 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.852146 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.852186 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.852219 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.852252 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.852285 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.852319 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.852346 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.852378 close(4)                = 0
17:47:04.852403 munmap(0x7fe35854b000, 4096) = 0
17:47:04.852433 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.852469 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.852503 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.852535 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.852568 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.852599 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.852631 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.852658 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.852694 read(4, "", 4096)       = 0
17:47:04.852720 close(4)                = 0
17:47:04.852744 munmap(0x7fe35854b000, 4096) = 0
17:47:04.852774 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.852809 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.853177 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.853213 writev(3, [{"5\1\4\0/\7\300\3\16\1\0\0\20\0\20\0007\0\4\0000\7\300\3/\7\300\3\0\0\0\0H\1\26\0/\7\300\0030\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.853305 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.853335 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.853696 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.853728 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.854078 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.854110 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.854463 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.854496 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.854780 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.854815 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.855076 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.855108 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.855370 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.855402 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.855490 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.855509 rt_sigreturn(0xe)       = 24168840
17:47:04.855723 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.855768 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.856033 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.856065 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.856334 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.856366 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.856629 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.856662 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.873141 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.873227 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.874571 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.874611 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.874690 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.874737 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.874771 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.874806 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.874845 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.874880 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.874912 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.874947 close(4)                = 0
17:47:04.874973 munmap(0x7fe35854b000, 4096) = 0
17:47:04.875009 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.875045 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.875079 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.875111 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.875146 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.875176 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.875209 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.875235 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.875272 read(4, "", 4096)       = 0
17:47:04.875297 close(4)                = 0
17:47:04.875321 munmap(0x7fe35854b000, 4096) = 0
17:47:04.875351 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.875385 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.875494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.875517 rt_sigreturn(0xe)       = 2275124
17:47:04.877591 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.877635 writev(3, [{"5\1\4\0004\7\300\3\16\1\0\0\20\0\20\0007\0\4\0005\7\300\0034\7\300\3\0\0\0\0H\1\26\0004\7\300\0035\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.877826 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.877859 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.877911 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.877949 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.877981 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.878015 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.878048 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.878081 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.878125 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.878159 close(4)                = 0
17:47:04.878183 munmap(0x7fe35854b000, 4096) = 0
17:47:04.878214 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.878250 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.878283 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.878316 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.878349 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.878380 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.878413 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.878439 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.878476 read(4, "", 4096)       = 0
17:47:04.878501 close(4)                = 0
17:47:04.878525 munmap(0x7fe35854b000, 4096) = 0
17:47:04.878554 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.878589 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.879837 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.879874 writev(3, [{"5\1\4\0009\7\300\3\16\1\0\0\20\0\20\0007\0\4\0:\7\300\0039\7\300\3\0\0\0\0H\1\26\0009\7\300\3:\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.879967 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.879998 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.880982 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.881018 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.881068 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.881108 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.881143 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.881177 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.881210 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.881243 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.881270 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.881302 close(4)                = 0
17:47:04.881327 munmap(0x7fe35854b000, 4096) = 0
17:47:04.881358 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.881394 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.881428 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.881460 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.881493 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.881523 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.881556 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.881583 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.881619 read(4, "", 4096)       = 0
17:47:04.881643 close(4)                = 0
17:47:04.881667 munmap(0x7fe35854b000, 4096) = 0
17:47:04.881697 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.881740 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.883743 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.883780 writev(3, [{"5\1\4\0>\7\300\3\16\1\0\0\20\0\20\0007\0\4\0?\7\300\3>\7\300\3\0\0\0\0H\1\26\0>\7\300\3?\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.883872 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.883903 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.883953 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.883991 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.884024 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.884058 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.884090 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.884124 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.884159 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.884192 close(4)                = 0
17:47:04.884217 munmap(0x7fe35854b000, 4096) = 0
17:47:04.884247 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.884282 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.884316 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.884348 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.884382 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.884412 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.884446 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.884472 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.884509 read(4, "", 4096)       = 0
17:47:04.884533 close(4)                = 0
17:47:04.884557 munmap(0x7fe35854b000, 4096) = 0
17:47:04.884587 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.884621 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.886162 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.886200 writev(3, [{"5\1\4\0C\7\300\3\16\1\0\0\20\0\20\0007\0\4\0D\7\300\3C\7\300\3\0\0\0\0H\1\26\0C\7\300\3D\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.886292 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.886323 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.887012 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.887045 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.887094 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.887131 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.887164 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.887198 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.887231 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.887264 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.887291 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.887323 close(4)                = 0
17:47:04.887357 munmap(0x7fe35854b000, 4096) = 0
17:47:04.887388 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.887424 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.887458 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.887490 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.887523 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.887554 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.887586 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.887612 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.887648 read(4, "", 4096)       = 0
17:47:04.887673 close(4)                = 0
17:47:04.887697 munmap(0x7fe35854b000, 4096) = 0
17:47:04.887726 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.887761 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.889785 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.889825 writev(3, [{"5\1\4\0H\7\300\3\16\1\0\0\20\0\20\0007\0\4\0I\7\300\3H\7\300\3\0\0\0\0H\1\26\0H\7\300\3I\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.889919 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.889952 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.890002 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.890040 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.890073 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.890106 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.890139 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.890172 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.890199 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.890231 close(4)                = 0
17:47:04.890256 munmap(0x7fe35854b000, 4096) = 0
17:47:04.890286 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.890321 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.890355 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.890387 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.890420 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.890451 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.890483 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.890509 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.890546 read(4, "", 4096)       = 0
17:47:04.890570 close(4)                = 0
17:47:04.890594 munmap(0x7fe35854b000, 4096) = 0
17:47:04.890623 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.890658 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.892526 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.892566 writev(3, [{"5\1\4\0M\7\300\3\16\1\0\0\20\0\20\0007\0\4\0N\7\300\3M\7\300\3\0\0\0\0H\1\26\0M\7\300\3N\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.892667 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.892700 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.893099 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.893134 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.893185 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.893225 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.893258 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.893292 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.893325 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.893358 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.893385 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.893418 close(4)                = 0
17:47:04.893443 munmap(0x7fe35854b000, 4096) = 0
17:47:04.893474 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.893509 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.893543 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.893575 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.893608 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.893638 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.893671 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.893697 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.893733 read(4, "", 4096)       = 0
17:47:04.893758 close(4)                = 0
17:47:04.893782 munmap(0x7fe35854b000, 4096) = 0
17:47:04.893811 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.893846 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.895493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.895516 rt_sigreturn(0xe)       = 4294967295
17:47:04.895916 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.895952 writev(3, [{"5\1\4\0R\7\300\3\16\1\0\0\20\0\20\0007\0\4\0S\7\300\3R\7\300\3\0\0\0\0H\1\26\0R\7\300\3S\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.896043 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.896074 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.896123 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.896171 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.896204 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.896238 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.896271 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.896305 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.896332 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.896364 close(4)                = 0
17:47:04.896389 munmap(0x7fe35854b000, 4096) = 0
17:47:04.896419 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.896463 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.896499 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.896531 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.896564 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.896594 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.896627 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.896654 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.896690 read(4, "", 4096)       = 0
17:47:04.896715 close(4)                = 0
17:47:04.896739 munmap(0x7fe35854b000, 4096) = 0
17:47:04.896768 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.896803 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.898749 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.898787 writev(3, [{"5\1\4\0W\7\300\3\16\1\0\0\20\0\20\0007\0\4\0X\7\300\3W\7\300\3\0\0\0\0H\1\26\0W\7\300\3X\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.898878 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.898910 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.899223 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.899255 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.899304 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.899342 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.899375 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.899408 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.899441 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.899475 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.899503 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.899535 close(4)                = 0
17:47:04.899560 munmap(0x7fe35854b000, 4096) = 0
17:47:04.899590 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.899626 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.899660 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.899692 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.899725 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.899755 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.899788 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.899814 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.899851 read(4, "", 4096)       = 0
17:47:04.899876 close(4)                = 0
17:47:04.899899 munmap(0x7fe35854b000, 4096) = 0
17:47:04.899929 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.899963 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.901986 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.902026 writev(3, [{"5\1\4\0\\\7\300\3\16\1\0\0\20\0\20\0007\0\4\0]\7\300\3\\\7\300\3\0\0\0\0H\1\26\0\\\7\300\3]\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.902130 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.902163 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.902214 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.902253 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.902286 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.902319 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.902352 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.902385 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.902412 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.902444 close(4)                = 0
17:47:04.902469 munmap(0x7fe35854b000, 4096) = 0
17:47:04.902499 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.902534 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.902568 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.902600 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.902634 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.902664 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.902697 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.902723 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.902759 read(4, "", 4096)       = 0
17:47:04.902784 close(4)                = 0
17:47:04.902808 munmap(0x7fe35854b000, 4096) = 0
17:47:04.902837 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.902871 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.903850 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.903886 writev(3, [{"5\1\4\0a\7\300\3\16\1\0\0\20\0\20\0007\0\4\0b\7\300\3a\7\300\3\0\0\0\0H\1\26\0a\7\300\3b\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.903977 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.904008 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.905278 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.905314 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.905366 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.905406 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.905442 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.905475 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.905508 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.905541 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.905568 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.905600 close(4)                = 0
17:47:04.905625 munmap(0x7fe35854b000, 4096) = 0
17:47:04.905656 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.905691 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.905724 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.905766 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.905801 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.905831 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.905863 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.905890 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.905926 read(4, "", 4096)       = 0
17:47:04.905951 close(4)                = 0
17:47:04.905974 munmap(0x7fe35854b000, 4096) = 0
17:47:04.906004 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.906038 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.907981 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.908018 writev(3, [{"5\1\4\0f\7\300\3\16\1\0\0\20\0\20\0007\0\4\0g\7\300\3f\7\300\3\0\0\0\0H\1\26\0f\7\300\3g\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.908109 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.908147 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.908463 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.908497 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.908548 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.908587 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.908620 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.908654 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.908687 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.908721 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.908748 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.908780 close(4)                = 0
17:47:04.908805 munmap(0x7fe35854b000, 4096) = 0
17:47:04.908835 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.908871 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.908905 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.908936 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.908970 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.909000 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.909033 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.909059 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.909096 read(4, "", 4096)       = 0
17:47:04.909121 close(4)                = 0
17:47:04.909144 munmap(0x7fe35854b000, 4096) = 0
17:47:04.909174 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.909208 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.911116 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.911154 writev(3, [{"5\1\4\0k\7\300\3\16\1\0\0\20\0\20\0007\0\4\0l\7\300\3k\7\300\3\0\0\0\0H\1\26\0k\7\300\3l\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.911245 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.911285 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.911599 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.911632 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.911680 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.911718 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.911751 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.911784 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.911817 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.911850 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.911877 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.911909 close(4)                = 0
17:47:04.911934 munmap(0x7fe35854b000, 4096) = 0
17:47:04.911964 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.911999 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.912033 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.912065 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.912098 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.912137 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.912173 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.912200 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.912237 read(4, "", 4096)       = 0
17:47:04.912261 close(4)                = 0
17:47:04.912285 munmap(0x7fe35854b000, 4096) = 0
17:47:04.912315 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.912350 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.913681 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.913719 writev(3, [{"5\1\4\0p\7\300\3\16\1\0\0\20\0\20\0007\0\4\0q\7\300\3p\7\300\3\0\0\0\0H\1\26\0p\7\300\3q\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.913810 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.913842 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.914757 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.914790 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.914839 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.914878 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.914910 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.914943 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.914976 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.915010 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.915037 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.915069 close(4)                = 0
17:47:04.915093 munmap(0x7fe35854b000, 4096) = 0
17:47:04.915124 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.915159 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.915193 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.915234 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.915269 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.915299 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.915332 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.915358 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.915395 read(4, "", 4096)       = 0
17:47:04.915420 close(4)                = 0
17:47:04.915443 munmap(0x7fe35854b000, 4096) = 0
17:47:04.915473 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.915505 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.915521 rt_sigreturn(0xe)       = -1 ENOENT (No such file or directory)
17:47:04.915547 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.916422 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.916460 writev(3, [{"5\1\4\0u\7\300\3\16\1\0\0\20\0\20\0007\0\4\0v\7\300\3u\7\300\3\0\0\0\0H\1\26\0u\7\300\3v\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.916550 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.916581 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.917949 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.917986 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.918232 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.918265 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.918313 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.918352 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.918385 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.918418 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.918451 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.918484 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.918511 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.918570 close(4)                = 0
17:47:04.918597 munmap(0x7fe35854b000, 4096) = 0
17:47:04.918627 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.918664 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.918697 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.918729 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.918762 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.918793 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.918825 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.918851 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.918888 read(4, "", 4096)       = 0
17:47:04.918914 close(4)                = 0
17:47:04.918937 munmap(0x7fe35854b000, 4096) = 0
17:47:04.918967 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.919001 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.919805 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.919842 writev(3, [{"5\1\4\0z\7\300\3\16\1\0\0\20\0\20\0007\0\4\0{\7\300\3z\7\300\3\0\0\0\0H\1\26\0z\7\300\3{\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.919941 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.919971 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.920514 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.920549 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.921671 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.921707 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.921954 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.921989 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.922040 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.922079 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.922112 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.922145 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.922178 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.922211 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.922238 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.922270 close(4)                = 0
17:47:04.922295 munmap(0x7fe35854b000, 4096) = 0
17:47:04.922325 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.922360 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.922394 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.922426 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.922460 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.922490 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.922522 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.922549 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.922585 read(4, "", 4096)       = 0
17:47:04.922610 close(4)                = 0
17:47:04.922633 munmap(0x7fe35854b000, 4096) = 0
17:47:04.922663 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.922697 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.923135 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.923173 writev(3, [{"5\1\4\0\177\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\200\7\300\3\177\7\300\3\0\0\0\0H\1\26\0\177\7\300\3\200\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.923265 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.923296 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.923838 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.923872 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.924261 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.924296 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.924661 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.924696 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.925198 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.925233 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.925797 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.925831 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.935524 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.935595 rt_sigreturn(0xe)       = 1087321
17:47:04.942980 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.943066 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.943488 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.943526 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.943607 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.943656 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.943694 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.943733 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.943775 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.943812 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.943847 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.943885 close(4)                = 0
17:47:04.943914 munmap(0x7fe35854b000, 4096) = 0
17:47:04.943952 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.943991 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.944028 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.944063 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.944100 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.944150 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.944187 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.944217 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.944257 read(4, "", 4096)       = 0
17:47:04.944285 close(4)                = 0
17:47:04.944312 munmap(0x7fe35854b000, 4096) = 0
17:47:04.944344 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.944382 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.946550 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.946592 writev(3, [{"5\1\4\0\204\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\205\7\300\3\204\7\300\3\0\0\0\0H\1\26\0\204\7\300\3\205\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.946783 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.946818 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.946872 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.946914 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.946950 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.946986 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.947022 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.947058 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.947087 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.947123 close(4)                = 0
17:47:04.947150 munmap(0x7fe35854b000, 4096) = 0
17:47:04.947184 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.947222 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.947276 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.947312 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.947348 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.947381 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.947415 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.947444 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.947483 read(4, "", 4096)       = 0
17:47:04.947510 close(4)                = 0
17:47:04.947536 munmap(0x7fe35854b000, 4096) = 0
17:47:04.947569 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.947606 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.949729 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.949769 writev(3, [{"5\1\4\0\211\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\212\7\300\3\211\7\300\3\0\0\0\0H\1\26\0\211\7\300\3\212\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.949865 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.949901 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.950046 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.950081 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.950134 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.950175 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.950210 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.950246 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.950282 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.950318 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.950347 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.950382 close(4)                = 0
17:47:04.950410 munmap(0x7fe35854b000, 4096) = 0
17:47:04.950443 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.950481 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.950517 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.950552 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.950589 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.950622 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.950656 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.950685 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.950724 read(4, "", 4096)       = 0
17:47:04.950752 close(4)                = 0
17:47:04.950778 munmap(0x7fe35854b000, 4096) = 0
17:47:04.950810 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.950847 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.953078 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.953119 writev(3, [{"5\1\4\0\216\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\217\7\300\3\216\7\300\3\0\0\0\0H\1\26\0\216\7\300\3\217\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.953224 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.953257 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.953309 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.953350 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.953385 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.953421 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.953456 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.953491 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.953520 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.953554 close(4)                = 0
17:47:04.953581 munmap(0x7fe35854b000, 4096) = 0
17:47:04.953612 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.953650 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.953686 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.953720 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.953760 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.953794 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.953829 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.953858 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.953897 read(4, "", 4096)       = 0
17:47:04.953925 close(4)                = 0
17:47:04.953950 munmap(0x7fe35854b000, 4096) = 0
17:47:04.953983 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.954020 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.955495 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.955519 rt_sigreturn(0xe)       = 560
17:47:04.956154 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.956191 writev(3, [{"5\1\4\0\223\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\224\7\300\3\223\7\300\3\0\0\0\0H\1\26\0\223\7\300\3\224\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.956284 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.956316 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.956367 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.956407 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.956441 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.956476 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.956511 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.956546 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.956575 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.956616 close(4)                = 0
17:47:04.956644 munmap(0x7fe35854b000, 4096) = 0
17:47:04.956677 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.956715 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.956752 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.956787 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.956832 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.956866 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.956901 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.956930 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.956970 read(4, "", 4096)       = 0
17:47:04.956997 close(4)                = 0
17:47:04.957023 munmap(0x7fe35854b000, 4096) = 0
17:47:04.957055 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.957093 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.957312 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.957351 writev(3, [{"5\1\4\0\230\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\231\7\300\3\230\7\300\3\0\0\0\0H\1\26\0\230\7\300\3\231\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.957444 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.957477 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.959474 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.959512 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.959564 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.959605 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.959641 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.959677 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.959713 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.959748 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.959778 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.959813 close(4)                = 0
17:47:04.959841 munmap(0x7fe35854b000, 4096) = 0
17:47:04.959874 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.959913 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.959950 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.959985 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.960021 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.960054 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.960089 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.960118 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.960186 read(4, "", 4096)       = 0
17:47:04.960215 close(4)                = 0
17:47:04.960241 munmap(0x7fe35854b000, 4096) = 0
17:47:04.960274 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.960311 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.962371 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.962409 writev(3, [{"5\1\4\0\235\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\236\7\300\3\235\7\300\3\0\0\0\0H\1\26\0\235\7\300\3\236\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.962502 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.962535 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.962595 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.962635 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.962670 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.962705 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.962740 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.962774 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.962803 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.962837 close(4)                = 0
17:47:04.962863 munmap(0x7fe35854b000, 4096) = 0
17:47:04.962895 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.962932 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.962967 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.963001 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.963036 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.963068 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.963102 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.963130 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.963168 read(4, "", 4096)       = 0
17:47:04.963195 close(4)                = 0
17:47:04.963220 munmap(0x7fe35854b000, 4096) = 0
17:47:04.963251 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.963287 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.963656 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.963695 writev(3, [{"5\1\4\0\242\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\243\7\300\3\242\7\300\3\0\0\0\0H\1\26\0\242\7\300\3\243\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.963789 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.963822 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.965696 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.965731 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.965783 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.965822 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.965857 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.965892 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.965926 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.965961 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.965989 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.966023 close(4)                = 0
17:47:04.966050 munmap(0x7fe35854b000, 4096) = 0
17:47:04.966082 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.966149 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.966191 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.966226 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.966276 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.966309 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.966343 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.966371 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.966410 read(4, "", 4096)       = 0
17:47:04.966437 close(4)                = 0
17:47:04.966462 munmap(0x7fe35854b000, 4096) = 0
17:47:04.966493 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.966529 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.968583 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.968622 writev(3, [{"5\1\4\0\247\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\250\7\300\3\247\7\300\3\0\0\0\0H\1\26\0\247\7\300\3\250\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.968714 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.968746 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.968797 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.968837 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.968871 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.968906 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.968941 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.968975 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.969003 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.969038 close(4)                = 0
17:47:04.969070 munmap(0x7fe35854b000, 4096) = 0
17:47:04.969104 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.969142 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.969179 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.969213 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.969250 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.969283 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.969318 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.969347 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.969387 read(4, "", 4096)       = 0
17:47:04.969414 close(4)                = 0
17:47:04.969440 munmap(0x7fe35854b000, 4096) = 0
17:47:04.969472 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.969509 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.970028 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.970065 writev(3, [{"5\1\4\0\254\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\255\7\300\3\254\7\300\3\0\0\0\0H\1\26\0\254\7\300\3\255\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.970158 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.970189 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.971936 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.971972 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.972024 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.972073 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.972110 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.972157 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.972192 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.972227 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.972255 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.972289 close(4)                = 0
17:47:04.972315 munmap(0x7fe35854b000, 4096) = 0
17:47:04.972347 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.972384 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.972419 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.972453 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.972487 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.972519 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.972553 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.972580 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.972618 read(4, "", 4096)       = 0
17:47:04.972644 close(4)                = 0
17:47:04.972669 munmap(0x7fe35854b000, 4096) = 0
17:47:04.972700 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.972736 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.974664 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.974702 writev(3, [{"5\1\4\0\261\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\262\7\300\3\261\7\300\3\0\0\0\0H\1\26\0\261\7\300\3\262\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.974799 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.974833 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.975150 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.975185 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.975237 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.975278 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.975314 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.975351 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.975386 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.975423 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.975452 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.975488 close(4)                = 0
17:47:04.975515 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.975532 rt_sigreturn(0xe)       = 0
17:47:04.975558 munmap(0x7fe35854b000, 4096) = 0
17:47:04.975591 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.975629 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.975666 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.975701 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.975737 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.975783 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.975819 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.975848 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.975887 read(4, "", 4096)       = 0
17:47:04.975914 close(4)                = 0
17:47:04.975941 munmap(0x7fe35854b000, 4096) = 0
17:47:04.975973 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.976011 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.978046 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.978083 writev(3, [{"5\1\4\0\266\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\267\7\300\3\266\7\300\3\0\0\0\0H\1\26\0\266\7\300\3\267\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.978176 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.978208 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.978259 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.978298 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.978333 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.978367 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.978401 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.978436 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.978464 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.978498 close(4)                = 0
17:47:04.978524 munmap(0x7fe35854b000, 4096) = 0
17:47:04.978555 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.978592 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.978632 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.978668 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.978704 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.978736 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.978771 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.978800 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.978839 read(4, "", 4096)       = 0
17:47:04.978868 close(4)                = 0
17:47:04.978894 munmap(0x7fe35854b000, 4096) = 0
17:47:04.978926 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.978963 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.979639 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.979677 writev(3, [{"5\1\4\0\273\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\274\7\300\3\273\7\300\3\0\0\0\0H\1\26\0\273\7\300\3\274\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.979770 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.979803 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.981401 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.981437 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.981494 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.981543 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.981578 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.981613 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.981648 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.981683 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.981711 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.981746 close(4)                = 0
17:47:04.981772 munmap(0x7fe35854b000, 4096) = 0
17:47:04.981804 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.981841 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.981876 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.981910 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.981945 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.981977 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.982011 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.982039 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.982077 read(4, "", 4096)       = 0
17:47:04.982103 close(4)                = 0
17:47:04.982129 munmap(0x7fe35854b000, 4096) = 0
17:47:04.982160 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.982197 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.983028 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.983067 writev(3, [{"5\1\4\0\300\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\301\7\300\3\300\7\300\3\0\0\0\0H\1\26\0\300\7\300\3\301\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.983161 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.983192 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.984659 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.984695 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.984747 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.984786 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.984820 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.984855 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.984889 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.984924 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.984952 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.984986 close(4)                = 0
17:47:04.985013 munmap(0x7fe35854b000, 4096) = 0
17:47:04.985044 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.985081 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.985117 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.985150 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.985185 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.985217 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.985259 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.985288 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.985331 read(4, "", 4096)       = 0
17:47:04.985360 close(4)                = 0
17:47:04.985386 munmap(0x7fe35854b000, 4096) = 0
17:47:04.985418 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.985456 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.986035 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.986074 writev(3, [{"5\1\4\0\305\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\306\7\300\3\305\7\300\3\0\0\0\0H\1\26\0\305\7\300\3\306\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.986168 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.986201 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.987793 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.987830 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.988153 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.988193 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.988245 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.988285 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.988319 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.988354 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.988389 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.988424 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.988452 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.988486 close(4)                = 0
17:47:04.988512 munmap(0x7fe35854b000, 4096) = 0
17:47:04.988544 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.988581 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.988616 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.988650 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.988685 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.988717 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.988751 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.988779 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.988818 read(4, "", 4096)       = 0
17:47:04.988844 close(4)                = 0
17:47:04.988869 munmap(0x7fe35854b000, 4096) = 0
17:47:04.988900 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.988936 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.989969 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.990015 writev(3, [{"5\1\4\0\312\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\313\7\300\3\312\7\300\3\0\0\0\0H\1\26\0\312\7\300\3\313\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.990134 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.990167 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.991439 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.991478 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.991810 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.991847 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.991901 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.991941 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.991974 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.992007 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.992041 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.992074 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.992106 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.992156 close(4)                = 0
17:47:04.992182 munmap(0x7fe35854b000, 4096) = 0
17:47:04.992214 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.992250 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.992283 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.992316 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.992349 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.992380 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.992413 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.992439 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.992476 read(4, "", 4096)       = 0
17:47:04.992501 close(4)                = 0
17:47:04.992525 munmap(0x7fe35854b000, 4096) = 0
17:47:04.992560 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.992596 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.993276 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.993312 writev(3, [{"5\1\4\0\317\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\320\7\300\3\317\7\300\3\0\0\0\0H\1\26\0\317\7\300\3\320\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.993404 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.993435 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.994003 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.994037 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.994973 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.995008 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.995493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:04.995518 rt_sigreturn(0xe)       = 7
17:47:04.995763 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.995797 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.995922 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.995964 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.996033 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.996088 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.996147 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.996196 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:04.996246 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:04.996293 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.996348 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:04.996401 close(4)                = 0
17:47:04.996437 munmap(0x7fe35854b000, 4096) = 0
17:47:04.996482 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.996530 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.996578 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.996622 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.996668 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:04.996708 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:04.996753 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:04.996789 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:04.996832 read(4, "", 4096)       = 0
17:47:04.996872 close(4)                = 0
17:47:04.996907 munmap(0x7fe35854b000, 4096) = 0
17:47:04.996947 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.996993 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:04.997446 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:04.997493 writev(3, [{"5\1\4\0\324\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\325\7\300\3\324\7\300\3\0\0\0\0H\1\26\0\324\7\300\3\325\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:04.997685 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.997716 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.998145 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.998180 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.998633 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.998667 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.998797 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.998829 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.998933 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.998964 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.999088 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.999122 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:04.999231 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:04.999267 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.015513 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.015585 rt_sigreturn(0xe)       = 29
17:47:05.016519 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.016562 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.017908 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.017951 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.018027 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.018073 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.018109 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.018146 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.018187 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.018223 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.018258 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.018299 close(4)                = 0
17:47:05.018327 munmap(0x7fe35854b000, 4096) = 0
17:47:05.018363 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.018425 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.018464 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.018499 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.018536 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.018570 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.018606 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.018635 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.018676 read(4, "", 4096)       = 0
17:47:05.018704 close(4)                = 0
17:47:05.018730 munmap(0x7fe35854b000, 4096) = 0
17:47:05.018763 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.018801 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.020978 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.021019 writev(3, [{"5\1\4\0\331\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\332\7\300\3\331\7\300\3\0\0\0\0H\1\26\0\331\7\300\3\332\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.021207 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.021239 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.021295 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.021335 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.021370 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.021405 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.021440 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.021475 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.021503 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.021538 close(4)                = 0
17:47:05.021565 munmap(0x7fe35854b000, 4096) = 0
17:47:05.021597 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.021635 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.021670 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.021704 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.021739 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.021777 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.021813 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.021842 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.021882 read(4, "", 4096)       = 0
17:47:05.021909 close(4)                = 0
17:47:05.021936 munmap(0x7fe35854b000, 4096) = 0
17:47:05.021969 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.022006 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.023273 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.023311 writev(3, [{"5\1\4\0\336\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\337\7\300\3\336\7\300\3\0\0\0\0H\1\26\0\336\7\300\3\337\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.023413 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.023446 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.024441 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.024476 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.024527 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.024567 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.024602 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.024641 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.024676 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.024711 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.024739 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.024773 close(4)                = 0
17:47:05.024800 munmap(0x7fe35854b000, 4096) = 0
17:47:05.024832 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.024869 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.024905 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.024938 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.024974 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.025006 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.025040 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.025068 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.025110 read(4, "", 4096)       = 0
17:47:05.025137 close(4)                = 0
17:47:05.025162 munmap(0x7fe35854b000, 4096) = 0
17:47:05.025193 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.025229 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.027256 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.027293 writev(3, [{"5\1\4\0\343\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\344\7\300\3\343\7\300\3\0\0\0\0H\1\26\0\343\7\300\3\344\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.027385 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.027418 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.027469 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.027513 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.027548 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.027583 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.027618 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.027653 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.027681 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.027715 close(4)                = 0
17:47:05.027742 munmap(0x7fe35854b000, 4096) = 0
17:47:05.027773 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.027811 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.027846 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.027890 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.027926 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.027962 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.027998 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.028027 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.028066 read(4, "", 4096)       = 0
17:47:05.028094 close(4)                = 0
17:47:05.028121 munmap(0x7fe35854b000, 4096) = 0
17:47:05.028167 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.028205 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.029763 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.029801 writev(3, [{"5\1\4\0\350\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\351\7\300\3\350\7\300\3\0\0\0\0H\1\26\0\350\7\300\3\351\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.029901 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.029933 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.030630 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.030665 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.030717 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.030756 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.030791 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.030829 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.030864 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.030899 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.030927 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.030961 close(4)                = 0
17:47:05.030987 munmap(0x7fe35854b000, 4096) = 0
17:47:05.031020 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.031057 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.031092 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.031126 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.031161 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.031193 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.031227 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.031255 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.031293 read(4, "", 4096)       = 0
17:47:05.031325 close(4)                = 0
17:47:05.031352 munmap(0x7fe35854b000, 4096) = 0
17:47:05.031385 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.031423 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.033480 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.033518 writev(3, [{"5\1\4\0\355\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\356\7\300\3\355\7\300\3\0\0\0\0H\1\26\0\355\7\300\3\356\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.033611 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.033652 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.033706 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.033747 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.033782 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.033817 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.033851 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.033886 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.033914 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.033948 close(4)                = 0
17:47:05.033974 munmap(0x7fe35854b000, 4096) = 0
17:47:05.034006 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.034044 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.034080 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.034114 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.034149 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.034181 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.034219 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.034248 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.034286 read(4, "", 4096)       = 0
17:47:05.034313 close(4)                = 0
17:47:05.034338 munmap(0x7fe35854b000, 4096) = 0
17:47:05.034369 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.034406 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.035494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.035518 rt_sigreturn(0xe)       = 0
17:47:05.036362 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.036400 writev(3, [{"5\1\4\0\362\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\363\7\300\3\362\7\300\3\0\0\0\0H\1\26\0\362\7\300\3\363\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.036493 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.036526 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.036931 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.036966 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.037017 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.037063 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.037099 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.037135 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.037169 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.037203 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.037232 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.037266 close(4)                = 0
17:47:05.037293 munmap(0x7fe35854b000, 4096) = 0
17:47:05.037324 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.037362 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.037397 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.037440 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.037477 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.037511 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.037549 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.037578 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.037617 read(4, "", 4096)       = 0
17:47:05.037644 close(4)                = 0
17:47:05.037669 munmap(0x7fe35854b000, 4096) = 0
17:47:05.037700 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.037735 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.039764 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.039801 writev(3, [{"5\1\4\0\367\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\370\7\300\3\367\7\300\3\0\0\0\0H\1\26\0\367\7\300\3\370\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.039893 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.039926 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.039978 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.040016 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.040049 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.040083 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.040116 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.040158 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.040186 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.040219 close(4)                = 0
17:47:05.040244 munmap(0x7fe35854b000, 4096) = 0
17:47:05.040274 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.040310 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.040343 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.040376 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.040415 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.040446 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.040478 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.040505 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.040542 read(4, "", 4096)       = 0
17:47:05.040567 close(4)                = 0
17:47:05.040591 munmap(0x7fe35854b000, 4096) = 0
17:47:05.040620 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.040655 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.042778 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.042819 writev(3, [{"5\1\4\0\374\7\300\3\16\1\0\0\20\0\20\0007\0\4\0\375\7\300\3\374\7\300\3\0\0\0\0H\1\26\0\374\7\300\3\375\7\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.042911 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.042942 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.043116 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.043156 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.043206 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.043249 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.043284 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.043318 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.043351 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.043384 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.043412 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.043448 close(4)                = 0
17:47:05.043472 munmap(0x7fe35854b000, 4096) = 0
17:47:05.043503 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.043539 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.043573 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.043605 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.043638 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.043669 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.043701 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.043728 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.043768 read(4, "", 4096)       = 0
17:47:05.043794 close(4)                = 0
17:47:05.043818 munmap(0x7fe35854b000, 4096) = 0
17:47:05.043847 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.043882 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.045930 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.045967 writev(3, [{"5\1\4\0\1\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\2\10\300\3\1\10\300\3\0\0\0\0H\1\26\0\1\10\300\3\2\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.046059 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.046090 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.046143 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.046182 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.046215 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.046248 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.046281 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.046315 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.046342 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.046374 close(4)                = 0
17:47:05.046399 munmap(0x7fe35854b000, 4096) = 0
17:47:05.046429 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.046465 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.046499 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.046531 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.046565 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.046605 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.046644 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.046671 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.046708 read(4, "", 4096)       = 0
17:47:05.046733 close(4)                = 0
17:47:05.046757 munmap(0x7fe35854b000, 4096) = 0
17:47:05.046787 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.046821 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.048064 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.048100 writev(3, [{"5\1\4\0\6\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\7\10\300\3\6\10\300\3\0\0\0\0H\1\26\0\6\10\300\3\7\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.048200 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.048231 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.049260 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.049295 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.049346 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.049386 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.049420 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.049454 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.049487 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.049520 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.049547 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.049580 close(4)                = 0
17:47:05.049604 munmap(0x7fe35854b000, 4096) = 0
17:47:05.049635 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.049671 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.049704 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.049736 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.049770 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.049800 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.049833 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.049859 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.049896 read(4, "", 4096)       = 0
17:47:05.049922 close(4)                = 0
17:47:05.049953 munmap(0x7fe35854b000, 4096) = 0
17:47:05.049983 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.050018 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.052041 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.052079 writev(3, [{"5\1\4\0\v\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\f\10\300\3\v\10\300\3\0\0\0\0H\1\26\0\v\10\300\3\f\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.052181 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.052212 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.052263 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.052301 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.052345 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.052379 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.052412 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.052445 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.052472 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.052504 close(4)                = 0
17:47:05.052529 munmap(0x7fe35854b000, 4096) = 0
17:47:05.052560 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.052595 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.052628 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.052660 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.052694 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.052724 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.052757 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.052783 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.052824 read(4, "", 4096)       = 0
17:47:05.052850 close(4)                = 0
17:47:05.052874 munmap(0x7fe35854b000, 4096) = 0
17:47:05.052904 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.052939 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.053312 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.053348 writev(3, [{"5\1\4\0\20\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\21\10\300\3\20\10\300\3\0\0\0\0H\1\26\0\20\10\300\3\21\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.053439 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.053470 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.055359 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.055393 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.055442 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.055480 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.055513 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.055529 rt_sigreturn(0xe)       = -1 ENOENT (No such file or directory)
17:47:05.055557 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.055590 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.055623 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.055657 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.055687 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.055722 close(4)                = 0
17:47:05.055747 munmap(0x7fe35854b000, 4096) = 0
17:47:05.055787 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.055824 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.055858 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.055890 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.055924 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.055964 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.055997 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.056024 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.056061 read(4, "", 4096)       = 0
17:47:05.056086 close(4)                = 0
17:47:05.056110 munmap(0x7fe35854b000, 4096) = 0
17:47:05.056152 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.056189 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.056718 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.056755 writev(3, [{"5\1\4\0\25\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\26\10\300\3\25\10\300\3\0\0\0\0H\1\26\0\25\10\300\3\26\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.056846 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.056877 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.058619 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.058654 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.058704 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.058742 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.058775 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.058808 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.058841 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.058875 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.058902 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.058934 close(4)                = 0
17:47:05.058959 munmap(0x7fe35854b000, 4096) = 0
17:47:05.058990 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.059025 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.059059 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.059092 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.059126 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.059156 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.059189 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.059216 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.059252 read(4, "", 4096)       = 0
17:47:05.059277 close(4)                = 0
17:47:05.059301 munmap(0x7fe35854b000, 4096) = 0
17:47:05.059331 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.059365 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.059732 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.059769 writev(3, [{"5\1\4\0\32\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\33\10\300\3\32\10\300\3\0\0\0\0H\1\26\0\32\10\300\3\33\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.059861 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.059891 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.061417 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.061454 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.062059 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.062102 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.062152 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.062190 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.062222 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.062256 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.062289 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.062322 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.062349 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.062388 close(4)                = 0
17:47:05.062413 munmap(0x7fe35854b000, 4096) = 0
17:47:05.062443 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.062479 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.062513 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.062545 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.062578 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.062608 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.062641 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.062668 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.062704 read(4, "", 4096)       = 0
17:47:05.062729 close(4)                = 0
17:47:05.062753 munmap(0x7fe35854b000, 4096) = 0
17:47:05.062783 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.062818 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.063687 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.063723 writev(3, [{"5\1\4\0\37\10\300\3\16\1\0\0\20\0\20\0007\0\4\0 \10\300\3\37\10\300\3\0\0\0\0H\1\26\0\37\10\300\3 \10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.063814 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.063845 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.065179 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.065214 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.065532 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.065566 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.065617 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.065655 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.065688 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.065722 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.065755 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.065789 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.065816 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.065848 close(4)                = 0
17:47:05.065873 munmap(0x7fe35854b000, 4096) = 0
17:47:05.065903 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.065939 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.065981 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.066014 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.066048 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.066078 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.066111 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.066137 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.066174 read(4, "", 4096)       = 0
17:47:05.066201 close(4)                = 0
17:47:05.066225 munmap(0x7fe35854b000, 4096) = 0
17:47:05.066256 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.066290 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.066974 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.067011 writev(3, [{"5\1\4\0$\10\300\3\16\1\0\0\20\0\20\0007\0\4\0%\10\300\3$\10\300\3\0\0\0\0H\1\26\0$\10\300\3%\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.067103 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.067134 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.067703 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.067739 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.068692 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.068728 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.069418 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.069454 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.069573 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.069606 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.069655 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.069693 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.069726 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.069758 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.069791 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.069824 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.069851 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.069883 close(4)                = 0
17:47:05.069909 munmap(0x7fe35854b000, 4096) = 0
17:47:05.069939 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.069974 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.070008 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.070045 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.070079 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.070110 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.070142 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.070169 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.070206 read(4, "", 4096)       = 0
17:47:05.070231 close(4)                = 0
17:47:05.070255 munmap(0x7fe35854b000, 4096) = 0
17:47:05.070285 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.070328 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.070728 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.070764 writev(3, [{"5\1\4\0)\10\300\3\16\1\0\0\20\0\20\0007\0\4\0*\10\300\3)\10\300\3\0\0\0\0H\1\26\0)\10\300\3*\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.070856 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.070886 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.071311 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.071344 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.071775 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.071808 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.071935 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.071968 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.072071 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.072102 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.072236 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.072267 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.072376 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.072406 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.075500 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.075541 rt_sigreturn(0xe)       = 1861684
17:47:05.089956 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.090044 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.091425 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.091465 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.091545 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.091595 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.091633 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.091672 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.091713 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.091750 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.091786 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.091824 close(4)                = 0
17:47:05.091852 munmap(0x7fe35854b000, 4096) = 0
17:47:05.091890 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.091929 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.091966 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.092001 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.092038 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.092072 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.092107 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.092153 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.092196 read(4, "", 4096)       = 0
17:47:05.092224 close(4)                = 0
17:47:05.092250 munmap(0x7fe35854b000, 4096) = 0
17:47:05.092283 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.092321 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.094455 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.094497 writev(3, [{"5\1\4\0.\10\300\3\16\1\0\0\20\0\20\0007\0\4\0/\10\300\3.\10\300\3\0\0\0\0H\1\26\0.\10\300\3/\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.094654 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.094687 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.094740 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.094780 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.094816 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.094853 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.094889 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.094924 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.094954 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.094989 close(4)                = 0
17:47:05.095017 munmap(0x7fe35854b000, 4096) = 0
17:47:05.095050 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.095089 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.095125 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.095161 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.095197 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.095231 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.095266 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.095295 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.095334 read(4, "", 4096)       = 0
17:47:05.095362 close(4)                = 0
17:47:05.095388 munmap(0x7fe35854b000, 4096) = 0
17:47:05.095421 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.095459 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.095493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.095511 rt_sigreturn(0xe)       = -1 ENOENT (No such file or directory)
17:47:05.096763 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.096802 writev(3, [{"5\1\4\0003\10\300\3\16\1\0\0\20\0\20\0007\0\4\0004\10\300\0033\10\300\3\0\0\0\0H\1\26\0003\10\300\0034\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.096897 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.096931 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.097912 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.097948 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.098000 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.098041 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.098077 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.098114 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.098150 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.098185 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.098215 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.098250 close(4)                = 0
17:47:05.098278 munmap(0x7fe35854b000, 4096) = 0
17:47:05.098311 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.098359 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.098397 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.098432 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.098468 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.098501 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.098536 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.098566 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.098605 read(4, "", 4096)       = 0
17:47:05.098633 close(4)                = 0
17:47:05.098660 munmap(0x7fe35854b000, 4096) = 0
17:47:05.098692 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.098730 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.100745 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.100786 writev(3, [{"5\1\4\0008\10\300\3\16\1\0\0\20\0\20\0007\0\4\0009\10\300\0038\10\300\3\0\0\0\0H\1\26\0008\10\300\0039\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.100881 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.100914 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.100967 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.101008 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.101044 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.101080 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.101116 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.101151 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.101180 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.101215 close(4)                = 0
17:47:05.101242 munmap(0x7fe35854b000, 4096) = 0
17:47:05.101275 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.101314 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.101350 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.101385 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.101422 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.101455 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.101490 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.101520 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.101559 read(4, "", 4096)       = 0
17:47:05.101587 close(4)                = 0
17:47:05.101613 munmap(0x7fe35854b000, 4096) = 0
17:47:05.101645 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.101682 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.103226 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.103265 writev(3, [{"5\1\4\0=\10\300\3\16\1\0\0\20\0\20\0007\0\4\0>\10\300\3=\10\300\3\0\0\0\0H\1\26\0=\10\300\3>\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.103369 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.103403 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.104096 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.104150 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.104206 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.104247 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.104283 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.104319 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.104355 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.104390 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.104420 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.104455 close(4)                = 0
17:47:05.104482 munmap(0x7fe35854b000, 4096) = 0
17:47:05.104515 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.104553 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.104590 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.104625 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.104661 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.104694 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.104729 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.104758 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.104797 read(4, "", 4096)       = 0
17:47:05.104825 close(4)                = 0
17:47:05.104851 munmap(0x7fe35854b000, 4096) = 0
17:47:05.104883 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.104921 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.106928 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.106969 writev(3, [{"5\1\4\0B\10\300\3\16\1\0\0\20\0\20\0007\0\4\0C\10\300\3B\10\300\3\0\0\0\0H\1\26\0B\10\300\3C\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.107063 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.107097 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.107149 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.107190 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.107226 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.107262 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.107298 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.107333 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.107363 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.107397 close(4)                = 0
17:47:05.107425 munmap(0x7fe35854b000, 4096) = 0
17:47:05.107458 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.107496 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.107532 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.107577 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.107615 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.107648 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.107683 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.107713 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.107752 read(4, "", 4096)       = 0
17:47:05.107780 close(4)                = 0
17:47:05.107807 munmap(0x7fe35854b000, 4096) = 0
17:47:05.107839 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.107877 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.109744 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.109783 writev(3, [{"5\1\4\0G\10\300\3\16\1\0\0\20\0\20\0007\0\4\0H\10\300\3G\10\300\3\0\0\0\0H\1\26\0G\10\300\3H\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.109877 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.109911 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.110313 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.110349 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.110401 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.110442 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.110477 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.110513 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.110549 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.110584 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.110614 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.110649 close(4)                = 0
17:47:05.110676 munmap(0x7fe35854b000, 4096) = 0
17:47:05.110710 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.110748 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.110785 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.110820 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.110856 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.110889 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.110925 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.110954 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.110994 read(4, "", 4096)       = 0
17:47:05.111022 close(4)                = 0
17:47:05.111048 munmap(0x7fe35854b000, 4096) = 0
17:47:05.111081 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.111118 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.113135 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.113174 writev(3, [{"5\1\4\0L\10\300\3\16\1\0\0\20\0\20\0007\0\4\0M\10\300\3L\10\300\3\0\0\0\0H\1\26\0L\10\300\3M\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.113268 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.113310 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.113364 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.113405 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.113440 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.113476 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.113511 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.113546 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.113576 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.113611 close(4)                = 0
17:47:05.113638 munmap(0x7fe35854b000, 4096) = 0
17:47:05.113671 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.113710 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.113746 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.113781 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.113817 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.113850 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.113885 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.113914 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.113954 read(4, "", 4096)       = 0
17:47:05.113981 close(4)                = 0
17:47:05.114007 munmap(0x7fe35854b000, 4096) = 0
17:47:05.114040 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.114078 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.115494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.115516 rt_sigreturn(0xe)       = 0
17:47:05.116270 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.116309 writev(3, [{"5\1\4\0Q\10\300\3\16\1\0\0\20\0\20\0007\0\4\0R\10\300\3Q\10\300\3\0\0\0\0H\1\26\0Q\10\300\3R\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.116403 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.116436 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.116612 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.116646 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.116697 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.116738 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.116774 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.116811 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.116846 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.116881 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.116911 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.116946 close(4)                = 0
17:47:05.116973 munmap(0x7fe35854b000, 4096) = 0
17:47:05.117006 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.117045 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.117081 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.117125 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.117163 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.117196 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.117231 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.117260 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.117300 read(4, "", 4096)       = 0
17:47:05.117328 close(4)                = 0
17:47:05.117354 munmap(0x7fe35854b000, 4096) = 0
17:47:05.117387 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.117424 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.119436 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.119474 writev(3, [{"5\1\4\0V\10\300\3\16\1\0\0\20\0\20\0007\0\4\0W\10\300\3V\10\300\3\0\0\0\0H\1\26\0V\10\300\3W\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.119568 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.119602 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.119654 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.119695 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.119730 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.119766 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.119801 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.119836 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.119866 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.119901 close(4)                = 0
17:47:05.119928 munmap(0x7fe35854b000, 4096) = 0
17:47:05.119961 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.119999 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.120035 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.120070 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.120107 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.120152 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.120188 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.120218 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.120258 read(4, "", 4096)       = 0
17:47:05.120285 close(4)                = 0
17:47:05.120312 munmap(0x7fe35854b000, 4096) = 0
17:47:05.120344 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.120381 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.121839 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.121877 writev(3, [{"5\1\4\0[\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\\\10\300\3[\10\300\3\0\0\0\0H\1\26\0[\10\300\3\\\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.121970 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.122004 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.122810 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.122846 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.122906 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.122947 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.122983 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.123020 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.123055 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.123091 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.123121 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.123156 close(4)                = 0
17:47:05.123183 munmap(0x7fe35854b000, 4096) = 0
17:47:05.123216 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.123254 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.123291 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.123326 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.123362 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.123395 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.123431 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.123460 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.123499 read(4, "", 4096)       = 0
17:47:05.123526 close(4)                = 0
17:47:05.123553 munmap(0x7fe35854b000, 4096) = 0
17:47:05.123585 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.123623 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.125685 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.125726 writev(3, [{"5\1\4\0`\10\300\3\16\1\0\0\20\0\20\0007\0\4\0a\10\300\3`\10\300\3\0\0\0\0H\1\26\0`\10\300\3a\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.125822 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.125856 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.125909 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.125950 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.125986 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.126022 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.126057 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.126093 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.126123 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.126158 close(4)                = 0
17:47:05.126186 munmap(0x7fe35854b000, 4096) = 0
17:47:05.126219 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.126257 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.126294 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.126329 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.126366 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.126399 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.126443 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.126473 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.126512 read(4, "", 4096)       = 0
17:47:05.126540 close(4)                = 0
17:47:05.126566 munmap(0x7fe35854b000, 4096) = 0
17:47:05.126598 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.126636 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.127218 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.127257 writev(3, [{"5\1\4\0e\10\300\3\16\1\0\0\20\0\20\0007\0\4\0f\10\300\3e\10\300\3\0\0\0\0H\1\26\0e\10\300\3f\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.127350 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.127383 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.129075 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.129112 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.129165 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.129206 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.129243 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.129279 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.129314 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.129350 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.129379 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.129414 close(4)                = 0
17:47:05.129441 munmap(0x7fe35854b000, 4096) = 0
17:47:05.129474 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.129512 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.129549 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.129583 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.129619 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.129652 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.129687 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.129716 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.129756 read(4, "", 4096)       = 0
17:47:05.129783 close(4)                = 0
17:47:05.129810 munmap(0x7fe35854b000, 4096) = 0
17:47:05.129842 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.129880 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.130715 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.130753 writev(3, [{"5\1\4\0j\10\300\3\16\1\0\0\20\0\20\0007\0\4\0k\10\300\3j\10\300\3\0\0\0\0H\1\26\0j\10\300\3k\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.130847 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.130880 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.132301 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.132338 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.132390 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.132441 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.132478 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.132516 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.132551 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.132587 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.132617 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.132652 close(4)                = 0
17:47:05.132680 munmap(0x7fe35854b000, 4096) = 0
17:47:05.132712 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.132750 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.132788 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.132822 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.132859 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.132891 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.132926 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.132955 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.132995 read(4, "", 4096)       = 0
17:47:05.133022 close(4)                = 0
17:47:05.133048 munmap(0x7fe35854b000, 4096) = 0
17:47:05.133081 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.133119 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.133878 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.133916 writev(3, [{"5\1\4\0o\10\300\3\16\1\0\0\20\0\20\0007\0\4\0p\10\300\3o\10\300\3\0\0\0\0H\1\26\0o\10\300\3p\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.134009 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.134042 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.135493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.135516 rt_sigreturn(0xe)       = 1082436
17:47:05.135767 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.135803 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.135866 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.135899 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.135949 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.135990 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.136026 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.136062 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.136098 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.136146 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.136178 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.136214 close(4)                = 0
17:47:05.136241 munmap(0x7fe35854b000, 4096) = 0
17:47:05.136274 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.136313 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.136349 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.136384 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.136432 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.136466 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.136501 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.136530 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.136570 read(4, "", 4096)       = 0
17:47:05.136598 close(4)                = 0
17:47:05.136624 munmap(0x7fe35854b000, 4096) = 0
17:47:05.136656 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.136695 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.137748 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.137789 writev(3, [{"5\1\4\0t\10\300\3\16\1\0\0\20\0\20\0007\0\4\0u\10\300\3t\10\300\3\0\0\0\0H\1\26\0t\10\300\3u\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.137884 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.137919 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.139118 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.139156 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.139210 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.139254 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.139291 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.139327 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.139363 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.139398 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.139427 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.139462 close(4)                = 0
17:47:05.139489 munmap(0x7fe35854b000, 4096) = 0
17:47:05.139522 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.139560 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.139596 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.139631 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.139667 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.139700 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.139735 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.139764 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.139803 read(4, "", 4096)       = 0
17:47:05.139831 close(4)                = 0
17:47:05.139857 munmap(0x7fe35854b000, 4096) = 0
17:47:05.139890 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.139927 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.140348 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.140387 writev(3, [{"5\1\4\0y\10\300\3\16\1\0\0\20\0\20\0007\0\4\0z\10\300\3y\10\300\3\0\0\0\0H\1\26\0y\10\300\3z\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.140480 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.140513 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.141292 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.141342 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.142303 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.142341 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.142952 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.142990 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.143043 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.143085 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.143121 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.143158 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.143193 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.143229 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.143259 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.143293 close(4)                = 0
17:47:05.143321 munmap(0x7fe35854b000, 4096) = 0
17:47:05.143354 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.143392 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.143429 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.143464 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.143499 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.143532 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.143567 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.143596 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.143635 read(4, "", 4096)       = 0
17:47:05.143663 close(4)                = 0
17:47:05.143689 munmap(0x7fe35854b000, 4096) = 0
17:47:05.143721 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.143759 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.144038 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.144075 writev(3, [{"5\1\4\0~\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\177\10\300\3~\10\300\3\0\0\0\0H\1\26\0~\10\300\3\177\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.144182 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.144215 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.144733 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.144769 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.145273 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.145309 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.145487 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.145521 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.145685 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.145719 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.145942 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.145978 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.146182 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.146216 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.146414 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.146447 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.146698 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.146741 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.146987 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.147021 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.155519 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.155588 rt_sigreturn(0xe)       = 1087321
17:47:05.164872 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.164953 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.165377 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.165412 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.165489 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.165536 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.165571 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.165608 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.165649 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.165686 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.165720 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.165756 close(4)                = 0
17:47:05.165784 munmap(0x7fe35854b000, 4096) = 0
17:47:05.165822 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.165861 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.165897 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.165930 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.165967 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.165999 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.166033 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.166061 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.166100 read(4, "", 4096)       = 0
17:47:05.166126 close(4)                = 0
17:47:05.166152 munmap(0x7fe35854b000, 4096) = 0
17:47:05.166183 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.166220 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.168445 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.168489 writev(3, [{"5\1\4\0\203\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\204\10\300\3\203\10\300\3\0\0\0\0H\1\26\0\203\10\300\3\204\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.168678 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.168714 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.168768 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.168810 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.168846 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.168882 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.168918 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.168953 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.168983 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.169018 close(4)                = 0
17:47:05.169045 munmap(0x7fe35854b000, 4096) = 0
17:47:05.169079 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.169135 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.169172 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.169207 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.169243 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.169276 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.169311 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.169340 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.169380 read(4, "", 4096)       = 0
17:47:05.169408 close(4)                = 0
17:47:05.169434 munmap(0x7fe35854b000, 4096) = 0
17:47:05.169467 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.169504 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.171614 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.171653 writev(3, [{"5\1\4\0\210\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\211\10\300\3\210\10\300\3\0\0\0\0H\1\26\0\210\10\300\3\211\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.171748 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.171782 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.171926 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.171960 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.172011 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.172052 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.172088 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.172124 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.172175 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.172212 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.172242 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.172277 close(4)                = 0
17:47:05.172304 munmap(0x7fe35854b000, 4096) = 0
17:47:05.172338 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.172376 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.172412 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.172448 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.172485 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.172518 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.172553 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.172582 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.172621 read(4, "", 4096)       = 0
17:47:05.172649 close(4)                = 0
17:47:05.172675 munmap(0x7fe35854b000, 4096) = 0
17:47:05.172707 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.172744 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.174754 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.174805 writev(3, [{"5\1\4\0\215\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\216\10\300\3\215\10\300\3\0\0\0\0H\1\26\0\215\10\300\3\216\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.174901 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.174935 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.174988 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.175028 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.175064 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.175101 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.175136 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.175171 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.175201 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.175236 close(4)                = 0
17:47:05.175263 munmap(0x7fe35854b000, 4096) = 0
17:47:05.175296 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.175334 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.175371 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.175406 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.175442 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.175475 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.175512 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.175531 rt_sigreturn(0xe)       = 0
17:47:05.175559 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.175588 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.175627 read(4, "", 4096)       = 0
17:47:05.175655 close(4)                = 0
17:47:05.175682 munmap(0x7fe35854b000, 4096) = 0
17:47:05.175714 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.175751 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.177818 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.177857 writev(3, [{"5\1\4\0\222\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\223\10\300\3\222\10\300\3\0\0\0\0H\1\26\0\222\10\300\3\223\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.177952 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.177986 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.178039 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.178080 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.178116 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.178152 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.178188 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.178223 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.178253 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.178288 close(4)                = 0
17:47:05.178316 munmap(0x7fe35854b000, 4096) = 0
17:47:05.178349 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.178387 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.178433 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.178469 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.178505 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.178538 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.178573 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.178603 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.178642 read(4, "", 4096)       = 0
17:47:05.178670 close(4)                = 0
17:47:05.178696 munmap(0x7fe35854b000, 4096) = 0
17:47:05.178728 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.178765 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.178986 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.179025 writev(3, [{"5\1\4\0\227\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\230\10\300\3\227\10\300\3\0\0\0\0H\1\26\0\227\10\300\3\230\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.179118 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.179151 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.181139 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.181176 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.181230 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.181273 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.181309 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.181345 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.181381 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.181416 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.181446 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.181481 close(4)                = 0
17:47:05.181508 munmap(0x7fe35854b000, 4096) = 0
17:47:05.181541 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.181579 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.181616 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.181651 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.181686 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.181719 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.181755 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.181784 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.181823 read(4, "", 4096)       = 0
17:47:05.181851 close(4)                = 0
17:47:05.181877 munmap(0x7fe35854b000, 4096) = 0
17:47:05.181910 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.181947 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.183989 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.184028 writev(3, [{"5\1\4\0\234\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\235\10\300\3\234\10\300\3\0\0\0\0H\1\26\0\234\10\300\3\235\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.184134 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.184168 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.184221 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.184262 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.184297 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.184334 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.184369 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.184405 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.184434 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.184469 close(4)                = 0
17:47:05.184496 munmap(0x7fe35854b000, 4096) = 0
17:47:05.184529 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.184567 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.184604 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.184639 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.184675 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.184707 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.184742 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.184771 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.184810 read(4, "", 4096)       = 0
17:47:05.184837 close(4)                = 0
17:47:05.184864 munmap(0x7fe35854b000, 4096) = 0
17:47:05.184896 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.184934 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.185298 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.185336 writev(3, [{"5\1\4\0\241\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\242\10\300\3\241\10\300\3\0\0\0\0H\1\26\0\241\10\300\3\242\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.185431 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.185464 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.187321 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.187358 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.187411 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.187453 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.187489 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.187525 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.187561 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.187597 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.187627 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.187663 close(4)                = 0
17:47:05.187690 munmap(0x7fe35854b000, 4096) = 0
17:47:05.187723 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.187761 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.187797 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.187842 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.187879 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.187912 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.187947 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.187976 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.188016 read(4, "", 4096)       = 0
17:47:05.188043 close(4)                = 0
17:47:05.188069 munmap(0x7fe35854b000, 4096) = 0
17:47:05.188101 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.188151 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.190192 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.190230 writev(3, [{"5\1\4\0\246\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\247\10\300\3\246\10\300\3\0\0\0\0H\1\26\0\246\10\300\3\247\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.190326 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.190359 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.190412 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.190453 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.190488 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.190525 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.190561 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.190596 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.190626 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.190662 close(4)                = 0
17:47:05.190690 munmap(0x7fe35854b000, 4096) = 0
17:47:05.190722 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.190760 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.190797 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.190831 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.190867 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.190900 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.190934 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.190963 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.191002 read(4, "", 4096)       = 0
17:47:05.191030 close(4)                = 0
17:47:05.191056 munmap(0x7fe35854b000, 4096) = 0
17:47:05.191088 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.191125 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.191650 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.191689 writev(3, [{"5\1\4\0\253\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\254\10\300\3\253\10\300\3\0\0\0\0H\1\26\0\253\10\300\3\254\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.191781 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.191814 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.193560 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.193606 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.193661 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.193703 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.193739 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.193776 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.193811 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.193847 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.193876 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.193912 close(4)                = 0
17:47:05.193939 munmap(0x7fe35854b000, 4096) = 0
17:47:05.193973 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.194011 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.194048 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.194082 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.194119 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.194152 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.194187 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.194215 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.194255 read(4, "", 4096)       = 0
17:47:05.194282 close(4)                = 0
17:47:05.194308 munmap(0x7fe35854b000, 4096) = 0
17:47:05.194341 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.194378 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.195494 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.195517 rt_sigreturn(0xe)       = 4357059
17:47:05.196476 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.196515 writev(3, [{"5\1\4\0\260\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\261\10\300\3\260\10\300\3\0\0\0\0H\1\26\0\260\10\300\3\261\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.196610 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.196643 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.196695 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.196737 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.196772 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.196808 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.196844 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.196879 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.196909 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.196944 close(4)                = 0
17:47:05.196972 munmap(0x7fe35854b000, 4096) = 0
17:47:05.197005 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.197043 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.197080 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.197115 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.197161 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.197195 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.197230 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.197259 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.197299 read(4, "", 4096)       = 0
17:47:05.197326 close(4)                = 0
17:47:05.197353 munmap(0x7fe35854b000, 4096) = 0
17:47:05.197385 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.197423 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.197804 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.197843 writev(3, [{"5\1\4\0\265\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\266\10\300\3\265\10\300\3\0\0\0\0H\1\26\0\265\10\300\3\266\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.197936 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.197969 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.199929 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.199966 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.200017 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.200056 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.200088 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.200122 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.200170 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.200204 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.200231 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.200264 close(4)                = 0
17:47:05.200289 munmap(0x7fe35854b000, 4096) = 0
17:47:05.200320 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.200355 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.200389 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.200422 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.200455 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.200485 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.200518 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.200544 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.200581 read(4, "", 4096)       = 0
17:47:05.200606 close(4)                = 0
17:47:05.200630 munmap(0x7fe35854b000, 4096) = 0
17:47:05.200660 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.200694 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.201766 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.201804 writev(3, [{"5\1\4\0\272\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\273\10\300\3\272\10\300\3\0\0\0\0H\1\26\0\272\10\300\3\273\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.201900 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.201932 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.203102 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.203145 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.203196 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.203235 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.203268 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.203301 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.203334 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.203367 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.203394 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.203426 close(4)                = 0
17:47:05.203451 munmap(0x7fe35854b000, 4096) = 0
17:47:05.203481 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.203516 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.203550 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.203582 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.203616 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.203646 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.203678 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.203705 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.203741 read(4, "", 4096)       = 0
17:47:05.203766 close(4)                = 0
17:47:05.203790 munmap(0x7fe35854b000, 4096) = 0
17:47:05.203819 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.203854 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.205792 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.205831 writev(3, [{"5\1\4\0\277\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\300\10\300\3\277\10\300\3\0\0\0\0H\1\26\0\277\10\300\3\300\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.205926 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.205958 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.206273 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.206308 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.206357 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.206395 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.206428 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.206461 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.206494 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.206528 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.206555 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.206587 close(4)                = 0
17:47:05.206612 munmap(0x7fe35854b000, 4096) = 0
17:47:05.206642 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.206677 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.206711 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.206743 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.206786 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.206817 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.206850 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.206877 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.206913 read(4, "", 4096)       = 0
17:47:05.206938 close(4)                = 0
17:47:05.206962 munmap(0x7fe35854b000, 4096) = 0
17:47:05.206992 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.207026 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.208968 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.209007 writev(3, [{"5\1\4\0\304\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\305\10\300\3\304\10\300\3\0\0\0\0H\1\26\0\304\10\300\3\305\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.209101 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.209134 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.209450 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.209485 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.209536 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.209575 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.209608 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.209642 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.209675 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.209708 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.209735 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.209767 close(4)                = 0
17:47:05.209792 munmap(0x7fe35854b000, 4096) = 0
17:47:05.209823 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.209858 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.209892 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.209924 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.209958 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.209988 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.210021 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.210047 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.210083 read(4, "", 4096)       = 0
17:47:05.210108 close(4)                = 0
17:47:05.210132 munmap(0x7fe35854b000, 4096) = 0
17:47:05.210162 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.210196 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.211277 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.211316 writev(3, [{"5\1\4\0\311\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\312\10\300\3\311\10\300\3\0\0\0\0H\1\26\0\311\10\300\3\312\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.211409 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.211440 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.212636 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.212672 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.212723 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.212763 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.212798 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.212832 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.212865 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.212899 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.212926 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.212958 close(4)                = 0
17:47:05.212983 munmap(0x7fe35854b000, 4096) = 0
17:47:05.213013 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.213048 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.213082 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.213115 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.213148 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.213179 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.213211 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.213238 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.213274 read(4, "", 4096)       = 0
17:47:05.213299 close(4)                = 0
17:47:05.213323 munmap(0x7fe35854b000, 4096) = 0
17:47:05.213352 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.213387 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.214130 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.214166 writev(3, [{"5\1\4\0\316\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\317\10\300\3\316\10\300\3\0\0\0\0H\1\26\0\316\10\300\3\317\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.214258 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.214289 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.215403 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.215439 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.215490 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.215509 rt_sigreturn(0xe)       = 0
17:47:05.216149 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.216184 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.216234 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.216275 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.216309 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.216343 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.216376 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.216410 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.216437 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.216469 close(4)                = 0
17:47:05.216495 munmap(0x7fe35854b000, 4096) = 0
17:47:05.216525 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.216569 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.216605 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.216637 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.216671 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.216701 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.216734 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.216760 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.216797 read(4, "", 4096)       = 0
17:47:05.216822 close(4)                = 0
17:47:05.216846 munmap(0x7fe35854b000, 4096) = 0
17:47:05.216875 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.216910 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.217458 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.217494 writev(3, [{"5\1\4\0\323\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\324\10\300\3\323\10\300\3\0\0\0\0H\1\26\0\323\10\300\3\324\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.217586 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.217617 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.218297 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.218331 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.219042 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.219076 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.219597 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.219632 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.219827 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.219859 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.219907 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.219945 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.219978 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.220012 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.220045 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.220078 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.220105 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.220144 close(4)                = 0
17:47:05.220169 munmap(0x7fe35854b000, 4096) = 0
17:47:05.220200 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.220236 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.220270 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.220303 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.220336 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.220367 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.220400 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.220427 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.220464 read(4, "", 4096)       = 0
17:47:05.220489 close(4)                = 0
17:47:05.220513 munmap(0x7fe35854b000, 4096) = 0
17:47:05.220552 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.220588 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.220764 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.220800 writev(3, [{"5\1\4\0\330\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\331\10\300\3\330\10\300\3\0\0\0\0H\1\26\0\330\10\300\3\331\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.220891 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.220922 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.221148 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.221180 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.221443 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.221475 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.221648 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.221680 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.221802 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.221834 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.221960 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.221991 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.222114 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.222145 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.222271 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.222302 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.235520 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.235590 rt_sigreturn(0xe)       = 3
17:47:05.240608 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.240692 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.242036 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.242073 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.242150 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.242199 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.242235 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.242271 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.242310 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.242345 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.242377 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.242412 close(4)                = 0
17:47:05.242438 munmap(0x7fe35854b000, 4096) = 0
17:47:05.242473 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.242509 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.242543 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.242575 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.242610 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.242641 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.242673 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.242700 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.242737 read(4, "", 4096)       = 0
17:47:05.242762 close(4)                = 0
17:47:05.242786 munmap(0x7fe35854b000, 4096) = 0
17:47:05.242816 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.242869 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.245001 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.245043 writev(3, [{"5\1\4\0\335\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\336\10\300\3\335\10\300\3\0\0\0\0H\1\26\0\335\10\300\3\336\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.245234 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.245268 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.245323 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.245361 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.245394 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.245428 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.245461 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.245494 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.245522 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.245554 close(4)                = 0
17:47:05.245579 munmap(0x7fe35854b000, 4096) = 0
17:47:05.245610 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.245646 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.245680 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.245712 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.245746 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.245776 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.245809 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.245835 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.245872 read(4, "", 4096)       = 0
17:47:05.245897 close(4)                = 0
17:47:05.245921 munmap(0x7fe35854b000, 4096) = 0
17:47:05.245951 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.245985 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.247228 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.247267 writev(3, [{"5\1\4\0\342\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\343\10\300\3\342\10\300\3\0\0\0\0H\1\26\0\342\10\300\3\343\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.247365 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.247396 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.248394 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.248430 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.248481 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.248522 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.248558 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.248593 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.248626 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.248659 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.248687 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.248728 close(4)                = 0
17:47:05.248753 munmap(0x7fe35854b000, 4096) = 0
17:47:05.248783 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.248819 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.248853 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.248885 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.248918 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.248949 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.248981 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.249008 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.249044 read(4, "", 4096)       = 0
17:47:05.249069 close(4)                = 0
17:47:05.249093 munmap(0x7fe35854b000, 4096) = 0
17:47:05.249123 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.249157 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.251157 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.251196 writev(3, [{"5\1\4\0\347\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\350\10\300\3\347\10\300\3\0\0\0\0H\1\26\0\347\10\300\3\350\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.251290 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.251323 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.251374 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.251412 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.251445 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.251479 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.251512 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.251546 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.251573 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.251605 close(4)                = 0
17:47:05.251630 munmap(0x7fe35854b000, 4096) = 0
17:47:05.251660 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.251696 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.251729 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.251762 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.251795 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.251826 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.251858 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.251885 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.251921 read(4, "", 4096)       = 0
17:47:05.251946 close(4)                = 0
17:47:05.251970 munmap(0x7fe35854b000, 4096) = 0
17:47:05.252000 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.252035 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.253581 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.253629 writev(3, [{"5\1\4\0\354\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\355\10\300\3\354\10\300\3\0\0\0\0H\1\26\0\354\10\300\3\355\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.253725 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.253758 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.254448 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.254483 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.254534 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.254572 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.254605 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.254639 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.254672 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.254705 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.254732 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.254764 close(4)                = 0
17:47:05.254790 munmap(0x7fe35854b000, 4096) = 0
17:47:05.254820 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.254856 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.254890 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.254922 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.254955 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.254986 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.255018 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.255044 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.255081 read(4, "", 4096)       = 0
17:47:05.255106 close(4)                = 0
17:47:05.255130 munmap(0x7fe35854b000, 4096) = 0
17:47:05.255159 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.255194 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.255493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.255516 rt_sigreturn(0xe)       = 4362166
17:47:05.257273 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.257311 writev(3, [{"5\1\4\0\361\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\362\10\300\3\361\10\300\3\0\0\0\0H\1\26\0\361\10\300\3\362\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.257405 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.257436 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.257486 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.257524 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.257557 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.257591 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.257625 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.257658 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.257685 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.257718 close(4)                = 0
17:47:05.257743 munmap(0x7fe35854b000, 4096) = 0
17:47:05.257782 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.257819 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.257853 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.257885 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.257918 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.257949 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.257982 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.258008 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.258045 read(4, "", 4096)       = 0
17:47:05.258070 close(4)                = 0
17:47:05.258093 munmap(0x7fe35854b000, 4096) = 0
17:47:05.258123 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.258158 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.260072 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.260111 writev(3, [{"5\1\4\0\366\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\367\10\300\3\366\10\300\3\0\0\0\0H\1\26\0\366\10\300\3\367\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.260219 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.260252 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.260653 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.260688 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.260737 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.260775 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.260809 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.260842 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.260875 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.260908 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.260935 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.260968 close(4)                = 0
17:47:05.260993 munmap(0x7fe35854b000, 4096) = 0
17:47:05.261023 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.261059 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.261093 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.261126 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.261160 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.261191 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.261223 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.261250 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.261286 read(4, "", 4096)       = 0
17:47:05.261311 close(4)                = 0
17:47:05.261336 munmap(0x7fe35854b000, 4096) = 0
17:47:05.261366 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.261401 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.263406 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.263452 writev(3, [{"5\1\4\0\373\10\300\3\16\1\0\0\20\0\20\0007\0\4\0\374\10\300\3\373\10\300\3\0\0\0\0H\1\26\0\373\10\300\3\374\10\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.263545 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.263576 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.263627 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.263665 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.263698 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.263731 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.263764 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.263797 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.263825 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.263857 close(4)                = 0
17:47:05.263882 munmap(0x7fe35854b000, 4096) = 0
17:47:05.263913 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.263948 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.263982 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.264014 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.264047 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.264077 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.264109 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.264142 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.264179 read(4, "", 4096)       = 0
17:47:05.264204 close(4)                = 0
17:47:05.264228 munmap(0x7fe35854b000, 4096) = 0
17:47:05.264258 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.264293 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.266394 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.266432 writev(3, [{"5\1\4\0\0\t\300\3\16\1\0\0\20\0\20\0007\0\4\0\1\t\300\3\0\t\300\3\0\0\0\0H\1\26\0\0\t\300\3\1\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.266524 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.266555 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.266729 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.266761 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.266809 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.266848 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.266881 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.266914 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.266947 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.266980 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.267007 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.267040 close(4)                = 0
17:47:05.267064 munmap(0x7fe35854b000, 4096) = 0
17:47:05.267096 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.267140 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.267177 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.267219 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.267260 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.267292 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.267325 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.267352 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.267390 read(4, "", 4096)       = 0
17:47:05.267415 close(4)                = 0
17:47:05.267439 munmap(0x7fe35854b000, 4096) = 0
17:47:05.267470 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.267505 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.269542 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.269581 writev(3, [{"5\1\4\0\5\t\300\3\16\1\0\0\20\0\20\0007\0\4\0\6\t\300\3\5\t\300\3\0\0\0\0H\1\26\0\5\t\300\3\6\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.269675 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.269706 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.269756 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.269794 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.269827 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.269861 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.269894 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.269927 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.269954 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.269988 close(4)                = 0
17:47:05.270012 munmap(0x7fe35854b000, 4096) = 0
17:47:05.270043 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.270078 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.270112 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.270143 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.270177 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.270207 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.270240 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.270266 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.270302 read(4, "", 4096)       = 0
17:47:05.270327 close(4)                = 0
17:47:05.270351 munmap(0x7fe35854b000, 4096) = 0
17:47:05.270381 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.270415 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.272380 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.272420 writev(3, [{"5\1\4\0\n\t\300\3\16\1\0\0\20\0\20\0007\0\4\0\v\t\300\3\n\t\300\3\0\0\0\0H\1\26\0\n\t\300\3\v\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.272513 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.272555 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.272872 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.272905 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.272956 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.272994 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.273027 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.273060 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.273093 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.273126 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.273153 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.273186 close(4)                = 0
17:47:05.273210 munmap(0x7fe35854b000, 4096) = 0
17:47:05.273242 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.273277 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.273310 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.273343 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.273376 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.273406 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.273439 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.273465 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.273501 read(4, "", 4096)       = 0
17:47:05.273526 close(4)                = 0
17:47:05.273550 munmap(0x7fe35854b000, 4096) = 0
17:47:05.273579 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.273614 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.275495 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.275517 rt_sigreturn(0xe)       = 24
17:47:05.275678 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.275713 writev(3, [{"5\1\4\0\17\t\300\3\16\1\0\0\20\0\20\0007\0\4\0\20\t\300\3\17\t\300\3\0\0\0\0H\1\26\0\17\t\300\3\20\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.275804 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.275835 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.275885 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.275922 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.275955 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.275989 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.276022 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.276055 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.276082 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.276114 close(4)                = 0
17:47:05.276144 munmap(0x7fe35854b000, 4096) = 0
17:47:05.276175 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.276211 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.276245 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.276287 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.276322 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.276353 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.276385 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.276412 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.276448 read(4, "", 4096)       = 0
17:47:05.276473 close(4)                = 0
17:47:05.276497 munmap(0x7fe35854b000, 4096) = 0
17:47:05.276526 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.276561 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.277498 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.277536 writev(3, [{"5\1\4\0\24\t\300\3\16\1\0\0\20\0\20\0007\0\4\0\25\t\300\3\24\t\300\3\0\0\0\0H\1\26\0\24\t\300\3\25\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.277627 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.277657 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.278987 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.279023 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.279073 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.279112 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.279145 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.279179 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.279211 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.279245 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.279271 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.279304 close(4)                = 0
17:47:05.279329 munmap(0x7fe35854b000, 4096) = 0
17:47:05.279359 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.279394 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.279427 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.279460 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.279493 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.279523 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.279556 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.279582 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.279618 read(4, "", 4096)       = 0
17:47:05.279643 close(4)                = 0
17:47:05.279667 munmap(0x7fe35854b000, 4096) = 0
17:47:05.279696 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.279730 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.281109 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.281148 writev(3, [{"5\1\4\0\31\t\300\3\16\1\0\0\20\0\20\0007\0\4\0\32\t\300\3\31\t\300\3\0\0\0\0H\1\26\0\31\t\300\3\32\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.281241 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.281282 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.282181 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.282216 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.282267 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.282306 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.282339 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.282372 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.282405 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.282438 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.282465 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.282498 close(4)                = 0
17:47:05.282522 munmap(0x7fe35854b000, 4096) = 0
17:47:05.282552 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.282588 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.282621 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.282653 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.282686 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.282717 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.282749 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.282775 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.282811 read(4, "", 4096)       = 0
17:47:05.282837 close(4)                = 0
17:47:05.282860 munmap(0x7fe35854b000, 4096) = 0
17:47:05.282890 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.282924 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.284336 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.284376 writev(3, [{"5\1\4\0\36\t\300\3\16\1\0\0\20\0\20\0007\0\4\0\37\t\300\3\36\t\300\3\0\0\0\0H\1\26\0\36\t\300\3\37\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.284468 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.284501 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.285373 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.285409 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.285459 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.285500 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.285533 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.285567 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.285600 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.285633 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.285660 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.285692 close(4)                = 0
17:47:05.285717 munmap(0x7fe35854b000, 4096) = 0
17:47:05.285747 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.285782 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.285816 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.285858 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.285893 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.285924 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.285957 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.285983 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.286020 read(4, "", 4096)       = 0
17:47:05.286045 close(4)                = 0
17:47:05.286068 munmap(0x7fe35854b000, 4096) = 0
17:47:05.286098 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.286133 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.287143 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.287182 writev(3, [{"5\1\4\0#\t\300\3\16\1\0\0\20\0\20\0007\0\4\0$\t\300\3#\t\300\3\0\0\0\0H\1\26\0#\t\300\3$\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.287272 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.287303 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.288561 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.288598 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.288650 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.288691 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.288726 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.288760 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.288792 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.288826 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.288853 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.288885 close(4)                = 0
17:47:05.288910 munmap(0x7fe35854b000, 4096) = 0
17:47:05.288940 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.288976 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.289010 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.289042 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.289076 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.289106 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.289138 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.289165 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.289201 read(4, "", 4096)       = 0
17:47:05.289226 close(4)                = 0
17:47:05.289250 munmap(0x7fe35854b000, 4096) = 0
17:47:05.289280 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.289314 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.289909 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.289945 writev(3, [{"5\1\4\0(\t\300\3\16\1\0\0\20\0\20\0007\0\4\0)\t\300\3(\t\300\3\0\0\0\0H\1\26\0(\t\300\3)\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.290036 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.290075 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.291024 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.291058 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.292033 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.292067 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.292117 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.292171 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.292211 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.292246 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.292278 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.292312 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.292339 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.292371 close(4)                = 0
17:47:05.292396 munmap(0x7fe35854b000, 4096) = 0
17:47:05.292425 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.292460 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.292494 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.292525 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.292559 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.292589 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.292621 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.292647 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.292683 read(4, "", 4096)       = 0
17:47:05.292708 close(4)                = 0
17:47:05.292732 munmap(0x7fe35854b000, 4096) = 0
17:47:05.292761 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.292795 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.293207 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.293243 writev(3, [{"5\1\4\0-\t\300\3\16\1\0\0\20\0\20\0007\0\4\0.\t\300\3-\t\300\3\0\0\0\0H\1\26\0-\t\300\3.\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.293334 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.293364 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.294102 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.294136 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.294443 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.294476 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.295493 --- SIGALRM (Alarm clock) @ 0 (0) ---
17:47:05.295518 rt_sigreturn(0xe)       = 21
17:47:05.295896 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.295929 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.296287 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.296321 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.296356 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.296383 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.296434 open("/home/inniyah/.icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.296478 open("/home/inniyah/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.296512 open("/usr/share/icons/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.296557 open("/usr/share/icons/default/index.theme", O_RDONLY) = 4
17:47:05.296591 fstat(4, {st_mode=S_IFREG|0644, st_size=32, ...}) = 0
17:47:05.296624 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.296652 read(4, "[Icon Theme]\nInherits=DMZ-White\n", 4096) = 32
17:47:05.296685 close(4)                = 0
17:47:05.296710 munmap(0x7fe35854b000, 4096) = 0
17:47:05.296741 open("/usr/share/pixmaps/default/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.296776 open("/home/inniyah/.icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.296810 open("/home/inniyah/.icons/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.296842 open("/usr/share/icons/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.296875 open("/usr/share/icons/DMZ-White/index.theme", O_RDONLY) = 4
17:47:05.296905 fstat(4, {st_mode=S_IFREG|0644, st_size=1246, ...}) = 0
17:47:05.296938 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fe35854b000
17:47:05.296964 read(4, "[Icon Theme]\nName=DMZ (White)\nComment=White accessible cursor th"..., 4096) = 1246
17:47:05.297001 read(4, "", 4096)       = 0
17:47:05.297026 close(4)                = 0
17:47:05.297050 munmap(0x7fe35854b000, 4096) = 0
17:47:05.297079 open("/usr/share/pixmaps/DMZ-White/cursors/041870e1c79f7f3e7cc8030618300000", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.297114 open("/usr/share/pixmaps/DMZ-White/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
17:47:05.297364 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}])
17:47:05.297405 writev(3, [{"5\1\4\0002\t\300\3\16\1\0\0\20\0\20\0007\0\4\0003\t\300\0032\t\300\3\0\0\0\0H\1\26\0002\t\300\0033\t\300\3\20\0\20\0\0\0\0\0\0\1S\0\0\0\4\0\2\0\377\0"..., 328}, {NULL, 0}, {"", 0}], 3) = 328
17:47:05.297506 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.297537 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.297735 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.297766 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.298004 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.298035 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.298187 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.298219 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.298337 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.298375 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.298496 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.298526 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.298638 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.298669 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.298780 read(3, 0xcba974, 4096) = -1 EAGAIN (Resource temporarily unavailable)
17:47:05.298810 select(4, [3], [], [3], {0, 0}) = 0 (Timeout)
17:47:05.314628 --- SIGINT (Interrupt) @ 0 (0) ---

Follow ups

References