diff options
-rw-r--r-- | config.h | 32 | ||||
-rw-r--r-- | config.mk | 4 |
2 files changed, 18 insertions, 18 deletions
@@ -116,16 +116,16 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() static const char *term_cmd[] = { "alacritty", NULL }; static const char *coolterm_cmd[] = { "cool-retro-term", NULL }; static const char *dmenu_cmd[] = { "dmenu_run", "-i", "-m", "0", NULL }; -static const char *dmapps_cmd[] = { "/home/r_bousset/.local/bin/dmapps", NULL }; -static const char *dmpc_cmd[] = { "/home/r_bousset/.local/bin/dmpc", NULL }; -static const char *dmkill_cmd[] = { "/home/r_bousset/.local/bin/dmkill", NULL }; -static const char *dmsearch_cmd[] = { "/home/r_bousset/.local/bin/dmsearch", NULL }; -static const char *dmscrot_cmd[] = { "/home/r_bousset/.local/bin/dmscrot", NULL }; -static const char *dmlog_cmd[] = { "/home/r_bousset/.local/bin/dmlog", NULL }; -static const char *dmpass_full_cmd[] = { "/home/r_bousset/.local/bin/dmpass", "--full", NULL }; -static const char *dmpass_cmd[] = { "/home/r_bousset/.local/bin/dmpass", NULL }; -static const char *dmotp_cmd[] = { "/home/r_bousset/.local/bin/dmotp", NULL }; -static const char *ndate_cmd[] = { "/home/r_bousset/.local/bin/ndate", NULL }; +static const char *dmapps_cmd[] = { "/home/jozan/.local/bin/dmapps", NULL }; +static const char *dmpc_cmd[] = { "/home/jozan/.local/bin/dmpc", NULL }; +static const char *dmkill_cmd[] = { "/home/jozan/.local/bin/dmkill", NULL }; +static const char *dmsearch_cmd[] = { "/home/jozan/.local/bin/dmsearch", NULL }; +static const char *dmscrot_cmd[] = { "/home/jozan/.local/bin/dmscrot", NULL }; +static const char *dmlog_cmd[] = { "/home/jozan/.local/bin/dmlog", NULL }; +static const char *dmpass_full_cmd[] = { "/home/jozan/.local/bin/dmpass", "--full", NULL }; +static const char *dmpass_cmd[] = { "/home/jozan/.local/bin/dmpass", NULL }; +static const char *dmotp_cmd[] = { "/home/jozan/.local/bin/dmotp", NULL }; +static const char *ndate_cmd[] = { "/home/jozan/.local/bin/ndate", NULL }; static const char *file_cmd[] = { "alacritty", "-e", "zsh", "-ic", "lf", NULL }; static const char *file_alt_cmd[] = { "pcmanfm", NULL }; static const char *edit_cmd[] = { "emacsclient", "-c", NULL }; @@ -134,7 +134,7 @@ static const char *torbro_cmd[] = { "torify", "librewolf", NULL }; static const char *w3m_cmd[] = { "alacritty", "-e", "w3m", "https://start.duckduckgo.com/", NULL }; static const char *nb_cmd[] = { "alacritty", "-e", "newsboat", NULL }; static const char *ncmpc_cmd[] = { "alacritty", "-e", "ncmpc", NULL }; -static const char *cal_cmd[] = { "alacritty", "-e", "calcurse", "-C", "/home/r_bousset/.config/calcurse", "-D", "/home/jozan/.local/share/calcurse", NULL }; +static const char *cal_cmd[] = { "alacritty", "-e", "calcurse", "-C", "/home/jozan/.config/calcurse", "-D", "/home/jozan/.local/share/calcurse", NULL }; static const char *scli_cmd[] = { "alacritty", "-e", "scli", NULL }; static const char *mutt_cmd[] = { "alacritty", "-e", "neomutt", NULL }; static const char *gotop_cmd[] = { "alacritty", "-e", "gotop", NULL }; @@ -142,15 +142,15 @@ static const char *htop_cmd[] = { "alacritty", "-e", "htop", NULL }; static const char *top_cmd[] = { "alacritty", "-e", "top", NULL }; static const char *bl_inc_cmd[] = { "xbacklight", "-inc", "10", NULL }; static const char *bl_dec_cmd[] = { "xbacklight", "-dec", "10", NULL }; -static const char *vol_tog_cmd[] = { "/home/r_bousset/.local/bin/mixer-set", "toggle", NULL }; -static const char *vol_dec_cmd[] = { "/home/r_bousset/.local/bin/mixer-set", "lower", NULL }; -static const char *vol_inc_cmd[] = { "/home/r_bousset/.local/bin/mixer-set", "raise", NULL }; -static const char *mic_cmd[] = { "/home/r_bousset/.local/bin/mic", NULL }; +static const char *vol_tog_cmd[] = { "/home/jozan/.local/bin/mixer-set", "toggle", NULL }; +static const char *vol_dec_cmd[] = { "/home/jozan/.local/bin/mixer-set", "lower", NULL }; +static const char *vol_inc_cmd[] = { "/home/jozan/.local/bin/mixer-set", "raise", NULL }; +static const char *mic_cmd[] = { "/home/jozan/.local/bin/mic", NULL }; static const char *mpc_prev_cmd[] = { "mpc", "prev", NULL }; static const char *mpc_next_cmd[] = { "mpc", "next", NULL }; static const char *mpc_tog_cmd[] = { "mpc", "toggle", NULL }; static const char *mpc_stop_cmd[] = { "mpc", "stop", NULL }; -static const char *killespeak_cmd[] = { "/home/r_bousset/.local/bin/shutup", NULL }; +static const char *killespeak_cmd[] = { "/home/jozan/.local/bin/shutup", NULL }; #include "movestack.c" #include <X11/XF86keysym.h> @@ -7,7 +7,7 @@ VERSION = 6.3 PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man -X11INC = /usr/include +X11INC = /usr/local/include X11LIB = /usr/local/lib # Xinerama, comment if you don't want it @@ -27,7 +27,7 @@ LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -DHOME=\"${HOME}/\" -DHOMEBIN=\"${HOME}/.local/bin/\" #CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} -CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -march=alderlake -O3 -pipe ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -march=ivybridge -O3 -pipe ${INCS} ${CPPFLAGS} LDFLAGS = ${LIBS} # Solaris |