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
(defun term-send-function-key () | |
(interactive) | |
(let* ((char last-input-event) | |
(output (cdr (assoc char term-function-key-alist)))) | |
(term-send-raw-string output))) | |
(defconst term-function-key-alist '((f1 . "\e[OP") | |
(f2 . "\e[OQ") | |
(f3 . "\e[OR") | |
(f4 . "\e[OS"))) |
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
#!/bin/sh | |
# 初期設定 | |
WORK=$HOME/Builds/build-essential | |
PREFIX=$HOME/local | |
export PATH="$PREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin" | |
# ソースコードのダウンロード | |
if [ ! -d $WORK/src ] ; then | |
mkdir src |
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
;; MY STUMPWM | |
(in-package :stumpwm) | |
(setq *mouse-focus-policy* :click) | |
(setf *startup-message* | |
"everything seems to be just fine") | |
(set-contrib-dir "/home/sleeze/.config/stumpwm/contrib") | |
(setf *suppress-frame-indicator* t) | |
;; Directories |
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
# Hondana's Classy Filter! v3.15.0a AKA Flashy Filter! | |
# A fork of the popular Antnee's Classy Filter! by hondana | |
# Status: Untested | |
# URL: https://gist.github.com/martialboniou/021bc8d9e9250e00fd7b | |
# Dedicated Program: Loot Wizard v0.3 (unpublished) | |
# Sync Version: Antnee's Classy Filter! v3.0a (but 000e section AKA Rares; | |
# - no pure 75+ T1 gear like in the original version, but; | |
# - progressive optimistic rare filtering at every levels here.) | |
# + 2017-03-01 Skill Tree Information | |
# (https://www.pathofexile.com/forum/view-thread/1840246) |