- Emil Persson @Humus
- Matt Pettineo @mynameismjp
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 |
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
[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
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
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
let | |
mozilla = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz); | |
nixpkgs = import <nixpkgs> { overlays = [ mozilla ]; }; | |
in | |
with nixpkgs; | |
mkShell { | |
buildInputs = [ | |
clang # needed for bindgen |
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
Xcursor.theme: whiteglass | |
Xcursor.size: 16 | |
Xft.rgba: none | |
Emacs*font: -misc-fixed-medium-r-semicondensed--0-0-75-75-c-0-iso10646-1 | |
Emacs*menubar.font: Fixed:pixelsize=13:style=SemiCondensed:lang=ru | |
Emacs*popup.font: Fixed:pixelsize=13:style=SemiCondensed:lang=ru | |
Emacs*dialog.font: Fixed:pixelsize=13:style=SemiCondensed:lang=ru | |
Emacs*foreground: grey90 | |
Emacs*background: grey20 |
Enter about:config
and change the following configurations:
Key | Value |
---|---|
gfx.font_rendering.cleartype_params.cleartype_level | 0 |
gfx.webrenderer.all | true |
gfx.font_rendering.cleartype_params.rendering_mode | 5 |
gfx.use_text_smoothing_setting | true |
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
;;; naysayer-theme.el --- Aftereight theme for Emacs. | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or | |
;; (at your option) any later version. | |
;; This program is distributed in the hope that it will be useful, | |
;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
OlderNewer