This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#0 0x0000000805d3c000 in ?? () | |
(gdb) bt | |
#0 0x0000000805d3c000 in ?? () | |
#1 0x00000008024b96e3 in qsort_r () from /lib/libc.so.7 | |
#2 0x0000000000406761 in menu_refilter (state=0x7fffffffe210, lines=0x805d02000, mmc=0x40db50 <token_match>, mmc_data=0x618140 <run_mode>, sorting=1, case_sensitive=0) at source/rofi.c:736 | |
#3 0x0000000000407b84 in menu (lines=0x805d02000, num_lines=1441, input=0x7fffffffe408, prompt=0x805c8e380 "run:", mmc=0x40db50 <token_match>, mmc_data=0x618140 <run_mode>, selected_line=0x7fffffffe3c4, sorting=1, | |
mgrv=0x410c0d <mgrv>, mgrv_data=0x618140 <run_mode>, next_pos=0x0, message=0x0) at source/rofi.c:1133 | |
#4 0x000000000040999d in switcher_run (input=0x7fffffffe408, sw=0x618140 <run_mode>) at source/rofi.c:1972 | |
#5 0x00000000004089a6 in run_switcher (do_fork=0, mode=1) at source/rofi.c:1516 | |
#6 0x000000000040952c in main (argc=3, argv=0x7fffffffe608) at source/rofi.c:1890 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#0 0x0000000805d3c000 in ?? () | |
(gdb) bt | |
#0 0x0000000805d3c000 in ?? () | |
#1 0x00000008024b96e3 in qsort_r () from /lib/libc.so.7 | |
#2 0x0000000000406761 in menu_refilter (state=0x7fffffffe210, lines=0x805d02000, mmc=0x40db50 <token_match>, mmc_data=0x618140 <run_mode>, sorting=1, case_sensitive=0) at source/rofi.c:736 | |
#3 0x0000000000407b84 in menu (lines=0x805d02000, num_lines=1441, input=0x7fffffffe408, prompt=0x805c8e380 "run:", mmc=0x40db50 <token_match>, mmc_data=0x618140 <run_mode>, selected_line=0x7fffffffe3c4, sorting=1, | |
mgrv=0x410c0d <mgrv>, mgrv_data=0x618140 <run_mode>, next_pos=0x0, message=0x0) at source/rofi.c:1133 | |
#4 0x000000000040999d in switcher_run (input=0x7fffffffe408, sw=0x618140 <run_mode>) at source/rofi.c:1972 | |
#5 0x00000000004089a6 in run_switcher (do_fork=0, mode=1) at source/rofi.c:1516 | |
#6 0x000000000040952c in main (argc=3, argv=0x7fffffffe608) at source/rofi.c:1890 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0'?> | |
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
<fontconfig> | |
<match target="font"> | |
<edit mode="assign" name="rgba"> | |
<const>rgb</const> | |
</edit> | |
</match> | |
<match target="font"> | |
<edit mode="assign" name="hinting"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.0) | |
project (MONGOOSE C CXX) | |
include (GNUInstallDirs) | |
set (MONGOOSE_VERSION_MAJOR 5) | |
set (MONGOOSE_VERSION_MINOR 6) | |
set (MONGOOSE_VERSION | |
${MONGOOSE_VERSION_MAJOR}.${MONGOOSE_VERSION_MINOR}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" toggle relativenumber (on by default) | |
set rnu | |
function! numbertoggle() | |
if(&relativenumber == 1) | |
set nornu | |
else | |
set rnu | |
endif | |
endfunc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dpkg-query -S /usr/include/pthread.h | |
libc6-dev:amd64: /usr/include/pthread.h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SONAME_MAJOR=5 | |
SONAME_MINOR=6 | |
LIBNAME=libmongoose | |
SHARED_LIB=$(LIBNAME).so.$(SONAME_MAJOR).$(SONAME_MINOR) | |
STATIC_LIB=$(LIBNAME).a | |
ifndef PREFIX | |
PREFIX=/usr/local | |
endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim: et:ts=4:sw=4 | |
set $mod Mod1 | |
# wallpaper | |
exec --no-startup-id nitrogen --restore | |
# start i3lock | |
exec --no-startup-id /home/oxez/stuff/scripts/i3/lock.sh | |
font pango:Ubuntu Medium 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
full_text=〉 | |
align=center | |
separator=false | |
separator_block_width=7 | |
[focused window] | |
command=xdotool getactivewindow getwindowname 2>/dev/null || echo "None" | |
#command=xprop -id $(xdotool getactivewindow) | grep 'WM_NAME(STRING)' | cut -d'"' -f2 | |
interval=1 | |
color=#ffffff |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make[1]: Entering directory '/home/oxez/pkg/badpkg/cache/build/source/man-db-2.6.7.1-1/man-db-2.6.7.1/manual' | |
echo '.ds V 2.6.7.1' > version | |
soelim -I. man_db.me | tbl > man_db.pp | |
nroff -me man_db.pp > man_db.cat | |
troff: fatal error: can't find macro file e | |
Makefile:1481: recipe for target 'man_db.cat' failed | |
make[1]: *** [man_db.cat] Error 1 | |
make[1]: Leaving directory '/home/oxez/pkg/badpkg/cache/build/source/man-db-2.6.7.1-1/man-db-2.6.7.1/manual' | |
Makefile:1425: recipe for target 'install-recursive' failed | |
make: *** [install-recursive] Error 1 |