Skip to content

Instantly share code, notes, and snippets.

View TimoFreiberg's full-sized avatar

Timo Freiberg TimoFreiberg

  • Stuttgart, Germany
View GitHub Profile
@TimoFreiberg
TimoFreiberg / backtrace
Created May 23, 2020 10:27
Sway backtrace for Divinity 2 crash
(gdb) bt full
#0 0x00007f2feb852355 in raise () at /usr/lib/libc.so.6
#1 0x00007f2feb83b853 in abort () at /usr/lib/libc.so.6
#2 0x00007f2feb895878 in __libc_message () at /usr/lib/libc.so.6
#3 0x00007f2feb89cd3a in () at /usr/lib/libc.so.6
#4 0x00007f2feb89da86 in unlink_chunk.constprop () at /usr/lib/libc.so.6
#5 0x00007f2feb89dbd7 in malloc_consolidate () at /usr/lib/libc.so.6
#6 0x00007f2feb89fa35 in _int_malloc () at /usr/lib/libc.so.6
#7 0x00007f2feb8a21e5 in calloc () at /usr/lib/libc.so.6
#8 0x00007f2fe9a0e3f2 in () at /usr/lib/dri/radeonsi_dri.so
@TimoFreiberg
TimoFreiberg / full backtrace
Created May 23, 2020 13:06
sway crash when closing Terraria
(gdb) bt full
#0 0x00007fae1c86d355 in raise () at /usr/lib/libc.so.6
#1 0x00007fae1c856853 in abort () at /usr/lib/libc.so.6
#2 0x00007fae1c8b0878 in __libc_message () at /usr/lib/libc.so.6
#3 0x00007fae1c8b7d3a in () at /usr/lib/libc.so.6
#4 0x00007fae1c8bb294 in _int_malloc () at /usr/lib/libc.so.6
#5 0x00007fae1c8bc5a9 in malloc () at /usr/lib/libc.so.6
#6 0x00007fae1c8c023f in strdup () at /usr/lib/libc.so.6
#7 0x00007fae1cfea7b1 in json_object_object_add_ex () at /usr/lib/libjson-c.so.5
#8 0x0000558c84b69504 in ipc_json_describe_output (object=0x558c85681c40, output=0x558c85e5fde0) at ../sway/sway/ipc-json.c:259
@TimoFreiberg
TimoFreiberg / config
Last active May 26, 2020 20:42
Sway screen freeze when focusing other screen via hotkeys
set $mod Mod4
set $term alacritty
bindsym $mod+Return exec $term
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right