This file contains 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
CC = clang++ | |
CXX = clang++ | |
DEBUG = -ggdb -O1 -march=native | |
RELEASE = -O2 | |
CPPFLAGS := -I. | |
CXXFLAGS := $(DEBUG) -W -Wall -Wextra -std=c++17 | |
LDLIBS := -lm | |
OUTPUT_OPTION = -MMD -MP -o $@ -MJ [email protected] | |
# Modify your C++ filesuffix here: |
This file contains 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
CC = gcc | |
DEBUG = -ggdb -O0 -march=native | |
CFLAGS := $(DEBUG) -W -Wall -Wextra -Wpedantic -pedantic -ansi | |
LDLIBS := -lm | |
OUTPUT_OPTION = -MMD -MP -o $@ | |
SRC := $(wildcard *.c) | |
OBJ := $(SRC:.c=.o) | |
DEP := $(SRC:.c=.d) | |
-include $(DEP) |
This file contains 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
[colors] | |
foreground = #AAAAB8 | |
foreground_bold = #F7F6F2 | |
cursor = #EF3B56 | |
background = rgba (33,33,33) | |
# Black, Gray, Silver, White | |
color0 = #494949 | |
color8 = #969896 | |
color7 = #c5c8c6 |
This file contains 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
;; Don't load outdated byte code | |
(setq load-prefer-newer t) | |
;; Bootstrap 'use-package' | |
(eval-when-compile | |
(require 'package)) | |
(setq package-enable-at-startup nil) | |
(add-to-list 'package-archives | |
'("melpa" . "http://melpa.milkbox.net/packages/")) | |
(package-initialize) |
This file contains 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
## Base package list for my Debian system configuration | |
## Openbox base | |
xorg openbox obmenu obconf nitrogen gmrun lxsession-lite fbxkb xcompmgr transset-df xscreensaver xfce4-power-manager terminator lxappearance grandr openbox-logout-script-basic tint2 catfish notify-osd hotkey-setup gksu gdebi gdm | |
## Thunar -> considering PCmanFM | |
thunar file-roller lha unrar unace lzop rzip unalz unzip zip zoo xz-utils arj thunar-archive-plugin thunar-media-tags-plugin thunar-thumbnailers | |
## Audio | |
alsa-base vlc libdvdcss2 lame volwheel xfce4-mixer |
NewerOlder