First commit
commit
698e4a5843
@ -0,0 +1,49 @@
|
||||
Rxvt*background: black
|
||||
Rxvt*foreground: green
|
||||
Rxvt*geometry: 80x40
|
||||
Rxvt*font: "Courier New"
|
||||
Rxvt*scrollBar_right: true
|
||||
Rxvt*termName: ansi
|
||||
Rxvt*print-pipe: lpr -P HPLaserJet
|
||||
Rxvt*saveLines: 1000
|
||||
|
||||
Rxvt*colorBD: white
|
||||
Rxvt*colorUL: grey
|
||||
|
||||
Rxvt*color0: #000000
|
||||
Rxvt*color1: #A80000
|
||||
Rxvt*color2: #00A800
|
||||
Rxvt*color3: #A8A800
|
||||
Rxvt*color4: #0000A8
|
||||
Rxvt*color5: #A800A8
|
||||
Rxvt*color6: #00A8A8
|
||||
Rxvt*color7: #A8A8A8
|
||||
Rxvt*color8: #000054
|
||||
Rxvt*color9: #FF0054
|
||||
Rxvt*color10: #00FF54
|
||||
Rxvt*color11: #FFFF54
|
||||
Rxvt*color12: #0000FF
|
||||
Rxvt*color13: #FF00FF
|
||||
Rxvt*color14: #00FFFF
|
||||
Rxvt*color15: #FFFFFF
|
||||
|
||||
# The rest of the defaults are client specific
|
||||
|
||||
xterm*Foreground: green
|
||||
xterm*Background: black
|
||||
xterm*Border: dark blue
|
||||
xterm*Geometry: 80x40
|
||||
xterm*ScrollBar: on
|
||||
xterm*TitleBar: on
|
||||
xterm*TextUnderIcon: on
|
||||
xterm*AllowIconInput: on
|
||||
xterm*AutoRaise: on
|
||||
xterm*termtype: vt100
|
||||
xterm*ttyModes: intr ^c erase ^h susp ^@ dsusp ^@ kill ^u eof ^d
|
||||
|
||||
xclock*Foreground: black
|
||||
xclock*Background: light grey
|
||||
xclock*Border: navy blue
|
||||
xclock*Highlight: cornflower blue
|
||||
xclock*Hands: slate blue
|
||||
xclock*Mode: analog
|
@ -0,0 +1,2 @@
|
||||
# Kill SSH Agents
|
||||
keychain --quiet --stop all
|
@ -0,0 +1,72 @@
|
||||
#!/bin/sh
|
||||
# This tells the system what terminal you are using or emulating. We do
|
||||
# support a number of terminals and can infact support more. For more
|
||||
# ideas, you can look in /usr/lib/terminfo. Default TTY is typically a
|
||||
# DEC vt100.
|
||||
export TERM="xterm-256color"
|
||||
|
||||
# stty (Set TTY) sets up your TTY. Note, if you have problems with
|
||||
# your backspace key, try changing the "erase '^h'" to "erase '^?'".
|
||||
# If that still does not help, type stty erase at the shell prompt
|
||||
# and then hit your backspace key.
|
||||
stty erase '^?' echoe
|
||||
|
||||
# Shell options
|
||||
shopt -s completion_strip_exe
|
||||
|
||||
# Ignore list for filename completion
|
||||
export FIGNORE=".dll:.cpl"
|
||||
|
||||
# PATH
|
||||
export PATH="/usr/sbin:~/bin:$PATH:."
|
||||
|
||||
# LANGUAGE
|
||||
export LANG="en_GB"
|
||||
|
||||
# Timezone from /usr/share/zoneinfo
|
||||
export TZ="Europe/Oslo"
|
||||
|
||||
# Other variables
|
||||
export LYNX_CFG="~/.lynx/lynx.cfg"
|
||||
export EDITOR="nano"
|
||||
export DISPLAY="localhost:0.0"
|
||||
export LESS="-iRM"
|
||||
|
||||
# Prompt with Git
|
||||
export PS1='\n\033[32m\]\u@\h \[\033[33m\w\033[0m\]$(__git_ps1 " (%s)")\n$ '
|
||||
|
||||
# Aliases
|
||||
alias ls="ls --color=auto --group-directories-first"
|
||||
alias dir="ls -la"
|
||||
alias ll="ls -l"
|
||||
alias la="ls -la"
|
||||
alias rm="rm -i"
|
||||
alias mv="mv -i"
|
||||
alias cp="cp -i"
|
||||
alias del="rm -i"
|
||||
alias cd..="cd .."
|
||||
alias grep="grep --color"
|
||||
alias start="cygstart"
|
||||
alias keychaininit="eval \$(keychain --eval)"
|
||||
alias sublime="cygstart /cygdrive/d/bin/Sublime/sublime_text.exe"
|
||||
alias npp="cygstart /cygdrive/d/bin/Notepad++/notepad++.exe"
|
||||
alias gl="git log --oneline --all --graph --decorate"
|
||||
alias gs="git status"
|
||||
alias gw="git whatchanged"
|
||||
alias cyg-get="/cygdrive/e/Install/Cygwin/setup-x86_64.exe -qn -P"
|
||||
alias cyg-update="/cygdrive/e/Install/Cygwin/setup-x86_64.exe -qng"
|
||||
alias bb="ssh -t tty.sdf.org bboard"
|
||||
alias sudo="cygstart --action=runas" "$@"
|
||||
|
||||
# Git
|
||||
source /usr/share/git-core/git-prompt.sh
|
||||
|
||||
# ls colors
|
||||
#eval $(dircolors -b $HOME/.config/dircolors/dircolors.monokai)
|
||||
|
||||
# Keychain for SSH Agent
|
||||
#eval $(keychain --eval)
|
||||
|
||||
# Greeting
|
||||
echo "Welcome to the SDF Public Access UNIX system. (est. 1987)"
|
||||
date -R
|
@ -0,0 +1,7 @@
|
||||
@echo off
|
||||
set Aria2=D:\bin\Aria2
|
||||
set Aria2WebUI=D:\bin\aria2\webui-aria2
|
||||
|
||||
start %Aria2%\aria2c --enable-rpc --rpc-listen-all --rpc-secret Xiewo1agig9U
|
||||
start %Aria2WebUI%\docs\index.html
|
||||
|
@ -0,0 +1,3 @@
|
||||
continue
|
||||
dir=g:\download
|
||||
max-connection-per-server=4
|
@ -0,0 +1,4 @@
|
||||
{
|
||||
"optOut": false,
|
||||
"lastUpdateCheck": 1612441551055
|
||||
}
|
@ -0,0 +1,381 @@
|
||||
# Monokai color theme for the color GNU ls utility.
|
||||
# Designed for dircolors (GNU coreutils) 5.97
|
||||
#
|
||||
# This file was largely inspired by seebi/dircolors-solarized on github.
|
||||
#
|
||||
# How the colors were selected:
|
||||
# - Terminal emulators often have an option typically enabled by default that makes
|
||||
# bold a different color. It is important to leave this option enabled so that
|
||||
# you can access the entire 16-color palette, and not just 8 colors.
|
||||
# - We favor universality over a greater number of colors. So we limit the number
|
||||
# of colors so that this theme will work out of the box in all terminals.
|
||||
# - We choose to have the following category of files:
|
||||
# NORMAL & FILE, DIR, LINK, EXEC and
|
||||
# editable text including source, unimportant text, binary docs & multimedia source
|
||||
# files, viewable multimedia, archived/compressed, and unimportant non-text
|
||||
# - See table below to see the assignments.
|
||||
|
||||
|
||||
# Installation instructions
|
||||
# This file goes in the /etc directory, and must be world readable.
|
||||
# You can copy this file to .dir_colors in your $HOME directory to override
|
||||
# the system defaults.
|
||||
|
||||
# Init {{{
|
||||
|
||||
# COLOR needs one of these arguments: 'tty' colorizes output to ttys, but not
|
||||
# pipes. 'all' adds color characters to all output. 'none' shuts colorization
|
||||
# off.
|
||||
COLOR tty
|
||||
|
||||
# Below, there should be one TERM entry for each termtype that is colorizable
|
||||
TERM ansi
|
||||
TERM color_xterm
|
||||
TERM color-xterm
|
||||
TERM con132x25
|
||||
TERM con132x30
|
||||
TERM con132x43
|
||||
TERM con132x60
|
||||
TERM con80x25
|
||||
TERM con80x28
|
||||
TERM con80x30
|
||||
TERM con80x43
|
||||
TERM con80x50
|
||||
TERM con80x60
|
||||
TERM cons25
|
||||
TERM console
|
||||
TERM cygwin
|
||||
TERM dtterm
|
||||
TERM Eterm
|
||||
TERM eterm-color
|
||||
TERM gnome
|
||||
TERM gnome-256color
|
||||
TERM jfbterm
|
||||
TERM konsole
|
||||
TERM kterm
|
||||
TERM linux
|
||||
TERM linux-c
|
||||
TERM mach-color
|
||||
TERM mlterm
|
||||
TERM nxterm
|
||||
TERM putty
|
||||
TERM rxvt
|
||||
TERM rxvt-256color
|
||||
TERM rxvt-cygwin
|
||||
TERM rxvt-cygwin-native
|
||||
TERM rxvt-unicode
|
||||
TERM rxvt-unicode256
|
||||
TERM rxvt-unicode-256color
|
||||
TERM screen
|
||||
TERM screen-256color
|
||||
TERM screen-256color-bce
|
||||
TERM screen-bce
|
||||
TERM screen.linux
|
||||
TERM screen-w
|
||||
TERM vt100
|
||||
TERM xterm
|
||||
TERM xterm-16color
|
||||
TERM xterm-256color
|
||||
TERM xterm-88color
|
||||
TERM xterm-color
|
||||
TERM xterm-debian
|
||||
|
||||
# EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
|
||||
EIGHTBIT 1
|
||||
|
||||
#############################################################################
|
||||
# Below are the color init strings for the basic file types. A color init
|
||||
# string consists of one or more of the following numeric codes:
|
||||
#
|
||||
# Attribute codes:
|
||||
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
||||
# Text color codes:
|
||||
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
||||
# Background color codes:
|
||||
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
|
||||
#
|
||||
# NOTES:
|
||||
# - See http://www.oreilly.com/catalog/wdnut/excerpt/color_names.html
|
||||
# - Color combinations
|
||||
# ANSI Color code Monokai
|
||||
# ~~~~~~~~~~~~~~~ ~~~~~~~~~
|
||||
# 00 none
|
||||
# 30 black black
|
||||
# 01;30 bright black bright black
|
||||
# 31 red red
|
||||
# 01;31 bright red orange
|
||||
# 32 green green
|
||||
# 01;32 bright green bright green
|
||||
# 33 yellow yellow
|
||||
# 01;33 bright yellow bright yellow
|
||||
# 34 blue blue
|
||||
# 01;34 bright blue bright blue
|
||||
# 35 magenta magenta
|
||||
# 01;35 bright magenta violet
|
||||
# 36 cyan cyan
|
||||
# 01;36 bright cyan bright cyan
|
||||
# 37 white white
|
||||
# 01;37 bright white bright white
|
||||
# 05;37;41
|
||||
|
||||
# }}}
|
||||
# File type {{{
|
||||
|
||||
# global default
|
||||
NORMAL 00
|
||||
# normal file
|
||||
FILE 00
|
||||
# directory
|
||||
DIR 36
|
||||
# symbolic link
|
||||
LINK 35
|
||||
|
||||
# pipe, socket, block device, character device (blue bg)
|
||||
FIFO 37;44
|
||||
SOCK 37;44
|
||||
DOOR 37;44 # Solaris 2.5 and later
|
||||
BLK 37;44
|
||||
CHR 37;44
|
||||
|
||||
# }}}
|
||||
# File attributes {{{
|
||||
|
||||
# Orphaned symlinks (blinking white on red)
|
||||
# Blink may or may not work (works on iTerm dark or light, and Putty dark)
|
||||
ORPHAN 05;37;45
|
||||
# ... and the files that orphaned symlinks point to (blinking white on red)
|
||||
MISSING 05;37;45
|
||||
# dir that is sticky and other-writable (+t,o+w)
|
||||
STICKY_OTHER_WRITABLE 30;46
|
||||
# dir that is other-writable (o+w) and not sticky
|
||||
OTHER_WRITABLE 30;46
|
||||
|
||||
# files with execute permission
|
||||
EXEC 01;31 # Unix
|
||||
.cmd 01;31 # Win
|
||||
.exe 01;31 # Win
|
||||
.com 01;31 # Win
|
||||
.bat 01;31 # Win
|
||||
.reg 01;31 # Win
|
||||
.app 01;31 # OSX
|
||||
|
||||
# }}}
|
||||
# File extension {{{
|
||||
|
||||
# List any file extensions like '.gz' or '.tar' that you would like ls
|
||||
# to colorize below. Put the extension, a space, and the color init string.
|
||||
# (and any comments you want to add after a '#')
|
||||
|
||||
# Text {{{
|
||||
|
||||
.txt 33
|
||||
.org 33
|
||||
.md 33
|
||||
.mkd 33
|
||||
|
||||
# }}}
|
||||
# Source {{{
|
||||
|
||||
.C 32
|
||||
.c 32
|
||||
.cc 32
|
||||
.csh 32
|
||||
.css 32
|
||||
.cxx 32
|
||||
.el 32
|
||||
.h 32
|
||||
.hs 32
|
||||
.htm 32
|
||||
.html 32
|
||||
.java 32
|
||||
.js 32
|
||||
.man 32
|
||||
.objc 32
|
||||
.php 32
|
||||
.pl 32
|
||||
.pm 32
|
||||
.pod 32
|
||||
.py 32
|
||||
.rb 32
|
||||
.rdf 32
|
||||
.sh 32
|
||||
.shtml 32
|
||||
.tex 32
|
||||
.vim 32
|
||||
.xml 32
|
||||
.zsh 32
|
||||
|
||||
# }}}
|
||||
# Image {{{
|
||||
.bmp 01;35
|
||||
.cgm 01;35
|
||||
.dl 01;35
|
||||
.dvi 01;35
|
||||
.emf 01;35
|
||||
.eps 01;35
|
||||
.gif 01;35
|
||||
.jpeg 01;35
|
||||
.jpg 01;35
|
||||
.JPG 01;35
|
||||
.mng 01;35
|
||||
.pbm 01;35
|
||||
.pcx 01;35
|
||||
.pdf 01;35
|
||||
.pgm 01;35
|
||||
.png 01;35
|
||||
.ppm 01;35
|
||||
.pps 01;35
|
||||
.ppsx 01;35
|
||||
.ps 01;35
|
||||
.svg 01;35
|
||||
.svgz 01;35
|
||||
.tga 01;35
|
||||
.tif 01;35
|
||||
.tiff 01;35
|
||||
.xbm 01;35
|
||||
.xcf 01;35
|
||||
.xpm 01;35
|
||||
.xwd 01;35
|
||||
.xwd 01;35
|
||||
.yuv 01;35
|
||||
|
||||
# }}}
|
||||
# Audio {{{
|
||||
|
||||
.aac 01;35
|
||||
.au 01;35
|
||||
.flac 01;35
|
||||
.mid 01;35
|
||||
.midi 01;35
|
||||
.mka 01;35
|
||||
.mp3 01;35
|
||||
.mpa 01;35
|
||||
.mpeg 01;35
|
||||
.mpg 01;35
|
||||
.ogg 01;35
|
||||
.ra 01;35
|
||||
.wav 01;35
|
||||
|
||||
# }}}
|
||||
# Video {{{
|
||||
|
||||
.anx 01;35
|
||||
.asf 01;35
|
||||
.avi 01;35
|
||||
.axv 01;35
|
||||
.flc 01;35
|
||||
.fli 01;35
|
||||
.flv 01;35
|
||||
.gl 01;35
|
||||
.m2v 01;35
|
||||
.m4v 01;35
|
||||
.mkv 01;35
|
||||
.mov 01;35
|
||||
.mp4 01;35
|
||||
.mp4v 01;35
|
||||
.mpeg 01;35
|
||||
.mpg 01;35
|
||||
.nuv 01;35
|
||||
.ogm 01;35
|
||||
.ogv 01;35
|
||||
.ogx 01;35
|
||||
.qt 01;35
|
||||
.rm 01;35
|
||||
.rmvb 01;35
|
||||
.swf 01;35
|
||||
.vob 01;35
|
||||
.wmv 01;35
|
||||
|
||||
# }}}
|
||||
# Documents {{{
|
||||
|
||||
.doc 33
|
||||
.docx 33
|
||||
.rtf 33
|
||||
.dot 33
|
||||
.dotx 33
|
||||
.xls 33
|
||||
.xlsx 33
|
||||
.ppt 33
|
||||
.pptx 33
|
||||
.fla 33
|
||||
.psd 33
|
||||
|
||||
# }}}
|
||||
# Archives {{{
|
||||
|
||||
.7z 1;35
|
||||
.apk 1;35
|
||||
.arj 1;35
|
||||
.bin 1;35
|
||||
.bz 1;35
|
||||
.bz2 1;35
|
||||
.cab 1;35 # Win
|
||||
.deb 1;35
|
||||
.dmg 1;35 # OSX
|
||||
.gem 1;35
|
||||
.gz 1;35
|
||||
.iso 1;35
|
||||
.jar 1;35
|
||||
.msi 1;35 # Win
|
||||
.rar 1;35
|
||||
.rpm 1;35
|
||||
.tar 1;35
|
||||
.tbz 1;35
|
||||
.tbz2 1;35
|
||||
.tgz 1;35
|
||||
.tx 1;35
|
||||
.war 1;35
|
||||
.xpi 1;35
|
||||
.xz 1;35
|
||||
.z 1;35
|
||||
.Z 1;35
|
||||
.zip 1;35
|
||||
|
||||
# }}}
|
||||
# Testing {{{
|
||||
|
||||
.ANSI-black 30
|
||||
.ANSI-black-bright 01;30
|
||||
.ANSI-red 31
|
||||
.ANSI-red-bright 01;31
|
||||
.ANSI-green 32
|
||||
.ANSI-green-bright 01;32
|
||||
.ANSI-yellow 33
|
||||
.ANSI-yellow-bright 01;33
|
||||
.ANSI-blue 34
|
||||
.ANSI-blue-bright 01;34
|
||||
.ANSI-magenta 35
|
||||
.ANSI-magenta-bright 01;35
|
||||
.ANSI-cyan 36
|
||||
.ANSI-cyan-bright 01;36
|
||||
.ANSI-white 37
|
||||
.ANSI-white-bright 01;37
|
||||
|
||||
# }}}
|
||||
# Custom {{{
|
||||
|
||||
# Unimportant text files
|
||||
*# 32
|
||||
*~ 32
|
||||
.log 32
|
||||
|
||||
# Unimportant non-text files
|
||||
*,v 01;30
|
||||
.BAK 01;30
|
||||
.DIST 01;30
|
||||
.OFF 01;30
|
||||
.OLD 01;30
|
||||
.ORIG 01;30
|
||||
.bak 01;30
|
||||
.dist 01;30
|
||||
.off 01;30
|
||||
.old 01;30
|
||||
.org_archive 01;30
|
||||
.orig 01;30
|
||||
.swo 01;30
|
||||
.swp 01;30
|
||||
|
||||
# }}}
|
||||
|
||||
# }}}
|
@ -0,0 +1,268 @@
|
||||
# Zenburn color theme for the color GNU ls utility.
|
||||
# Ivaylo Kuzev <ivkuzev@gmail.com>, 2014 - 2015
|
||||
|
||||
# Term Section
|
||||
TERM Eterm
|
||||
TERM ansi
|
||||
TERM color-xterm
|
||||
TERM con132x25
|
||||
TERM con132x30
|
||||
TERM con132x43
|
||||
TERM con132x60
|
||||
TERM con80x25
|
||||
TERM con80x28
|
||||
TERM con80x30
|
||||
TERM con80x43
|
||||
TERM con80x50
|
||||
TERM con80x60
|
||||
TERM cons25
|
||||
TERM console
|
||||
TERM cygwin
|
||||
TERM dtterm
|
||||
TERM eterm-color
|
||||
TERM gnome
|
||||
TERM gnome-256color
|
||||
TERM jfbterm
|
||||
TERM konsole
|
||||
TERM kterm
|
||||
TERM linux
|
||||
TERM linux-c
|
||||
TERM mach-color
|
||||
TERM mlterm
|
||||
TERM putty
|
||||
TERM rxvt
|
||||
TERM rxvt-256color
|
||||
TERM rxvt-cygwin
|
||||
TERM rxvt-cygwin-native
|
||||
TERM rxvt-unicode
|
||||
TERM rxvt-unicode256
|
||||
TERM rxvt-unicode-256color
|
||||
TERM screen
|
||||
TERM screen-256color
|
||||
TERM screen-256color-bce
|
||||
TERM screen-bce
|
||||
TERM screen-w
|
||||
TERM screen.linux
|
||||
TERM st
|
||||
TERM st-meta
|
||||
TERM st-256color
|
||||
TERM st-meta-256color
|
||||
TERM vt100
|
||||
TERM xterm
|
||||
TERM xterm-16color
|
||||
TERM xterm-256color
|
||||
TERM xterm-88color
|
||||
TERM xterm-color
|
||||
TERM xterm-debian
|
||||
TERM xterm-termite
|
||||
|
||||
## Documentation
|
||||
#
|
||||
# Attribute codes:
|
||||
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
||||
# Text color codes:
|
||||
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
||||
# Background color codes:
|
||||
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
|
||||
#
|
||||
# Text 256 color coding:
|
||||
# 38;5;COLOR_NUMBER
|
||||
# Background 256 color coding:
|
||||
# 48;5;COLOR_NUMBER
|
||||
|
||||
# block device driver:
|
||||
BLK 48;5;108;38;5;223;01
|
||||
# file with capability:
|
||||
CAPABILITY 01;38;5;95
|
||||
# character device driver:
|
||||
CHR 48;5;108;38;5;223;01
|
||||
# directory:
|
||||
DIR 01;38;5;223
|
||||
# door:
|
||||
DOOR 48;5;234;38;5;180;01
|
||||
# This is for files with execute permission:
|
||||
EXEC 01;38;5;108
|
||||
# pipe:
|
||||
FIFO 48;5;234;38;5;180;01
|
||||
# regular file:
|
||||
#FILE 00
|
||||
# symbolic link:
|
||||
LINK 48;5;234;38;5;223
|
||||
# normal (nonfilename) text:
|
||||
#NORMAL 00
|
||||
# orphaned symbolic link:
|
||||
ORPHAN 48;5;234;38;5;187
|
||||
# directory that is other-writable (o+w) and not sticky:
|
||||
OTHER_WRITABLE 48;5;234;38;5;180
|
||||
# file that is setuid (u+s):
|
||||
SETUID 48;5;234;38;5;66
|
||||
# file that is setgid (g+s):
|
||||
SETGID 48;5;234;38;5;66
|
||||
# socket:
|
||||
SOCK 48;5;234;38;5;180;01
|
||||
# directory with the sticky bit set (+t) and not other-writable:
|
||||
STICKY 48;5;180;38;5;234
|
||||
# dir that is sticky and other-writable (+t,o+w):
|
||||
STICKY_OTHER_WRITABLE 48;5;180;38;5;234
|
||||
|
||||
# archives
|
||||
.7z 01;38;5;174
|
||||
.arj 01;38;5;174
|
||||
.bz2 01;38;5;174
|
||||
.bz 01;38;5;174
|
||||
.gz 01;38;5;174
|
||||
.rar 01;38;5;174
|
||||
.tar 01;38;5;174
|
||||
.tgz 01;38;5;174
|
||||
.tbz 01;38;5;174
|
||||
.tbz2 01;38;5;174
|
||||
.xz 01;38;5;174
|
||||
.zip 01;38;5;174
|
||||
|
||||
# packaged apps
|
||||
.apk 01;38;5;95
|
||||
.deb 01;38;5;174
|
||||
.jad 01;38;5;95
|
||||
.jar 01;38;5;95
|
||||
.rpm 01;38;5;174
|
||||
|
||||
# images|graphics
|
||||
.bmp 00;38;5;109
|
||||
.gif 00;38;5;109
|
||||
.ico 00;38;5;109
|
||||
.jpg 00;38;5;109
|
||||
.JPG 00;38;5;109
|
||||
.jpeg 00;38;5;109
|
||||
.png 00;38;5;109
|
||||
.svg 00;38;5;109
|
||||
.xbm 00;38;5;109
|
||||
.xpm 00;38;5;109
|
||||
|
||||
# audio formats
|
||||
.aac 00;38;5;116
|
||||
.au 00;38;5;116
|
||||
.flac 00;38;5;116
|
||||
.mid 00;38;5;116
|
||||
.midi 00;38;5;116
|
||||
.mka 00;38;5;116
|
||||
.mp3 00;38;5;116
|
||||
.mpc 00;38;5;116
|
||||
.ogg 00;38;5;116
|
||||
.ra 00;38;5;116
|
||||
.wav 00;38;5;116
|
||||
|
||||
# video formats
|
||||
.mov 00;38;5;66
|
||||
.mpg 00;38;5;66
|
||||
.mpeg 00;38;5;66
|
||||
.m2v 00;38;5;66
|
||||
.mkv 00;38;5;66
|
||||
.ogm 00;38;5;66
|
||||
.mp4 00;38;5;66
|
||||
.m4v 00;38;5;66
|
||||
.mp4v 00;38;5;66
|
||||
.vob 00;38;5;66
|
||||
.qt 00;38;5;66
|
||||
.nuv 00;38;5;66
|
||||
.wmv 00;38;5;66
|
||||
.asf 00;38;5;66
|
||||
.rm 00;38;5;66
|
||||
.rmvb 01;38;5;66
|
||||
.flc 00;38;5;66
|
||||
.avi 00;38;5;66
|
||||
.fli 00;38;5;66
|
||||
.flv 00;38;5;66
|
||||
.gl 00;38;5;66
|
||||
.m2ts 00;38;5;66
|
||||
.divx 00;38;5;66
|
||||
.webm 00;38;5;66
|
||||
|
||||
# shell
|
||||
.awk 00;38;5;151
|
||||
.bash 00;38;5;151
|
||||
.bat 00;38;5;151
|
||||
.BAT 00;38;5;151
|
||||
.sed 00;38;5;151
|
||||
.sh 00;38;5;151
|
||||
.zsh 00;38;5;151
|
||||
|
||||
# build
|
||||
*CMakeLists.txt 00;38;5;187
|
||||
.cabal 00;38;5;187
|
||||
*Makefile 00;38;5;187
|
||||
.mk 00;38;5;187
|
||||
.make 00;38;5;187
|
||||
|
||||
# source files
|
||||
.c 01;38;5;187
|
||||
.h 01;38;5;187
|
||||
.s 01;38;5;187
|
||||
.cs 01;38;5;187
|
||||
.java 01;38;5;187
|
||||
.scala 01;38;5;187
|
||||
.hs 01;38;5;187
|
||||
.py 01;38;5;187
|
||||
.rb 01;38;5;187
|
||||
.php 01;38;5;187
|
||||
.pl 01;38;5;187
|
||||
.vim 01;38;5;187
|
||||
.js 01;38;5;187
|
||||
.coffee 01;38;5;187
|
||||
.go 01;38;5;187
|
||||
.lisp 01;38;5;187
|
||||
.scm 01;38;5;187
|
||||
|
||||
# documents
|
||||
.txt 04;38;5;188
|
||||
.tex 04;38;5;188
|
||||
.html 04;38;5;188
|
||||
.xhtml 04;38;5;188
|
||||
.xml 04;38;5;188
|
||||
.md 04;38;5;188
|
||||
.mkd 04;38;5;188
|
||||
.markdown 04;38;5;188
|
||||
.org 04;38;5;188
|
||||
.pandoc 04;38;5;188
|
||||
.pdc 04;38;5;188
|
||||
.pdf 04;38;5;188
|
||||
|
||||
# Files of special interest
|
||||
*rc 04;38;5;180
|
||||
.conf 04;38;5;180
|
||||
*Dockerfile 04;38;5;180
|
||||
|
||||
# meta
|
||||
*README 04;38;5;187
|
||||
*LICENSE 04;38;5;187
|
||||
*AUTHORS 04;38;5;187
|
||||
|
||||
# version control
|
||||
.gitignore 00;38;5;248
|
||||
.gitmodules 00;38;5;248
|
||||
|
||||
# logs and backups
|
||||
.log 00;38;5;234
|
||||
.bak 00;38;5;234
|
||||
.aux 00;38;5;234
|
||||
.toc 00;38;5;234
|
||||
*~ 00;38;5;234
|
||||
*# 00;38;5;234
|
||||
.swp 00;38;5;234
|
||||
.tmp 00;38;5;234
|
||||
.temp 00;38;5;234
|
||||
.o 00;38;5;234
|
||||
.pyc 00;38;5;234
|
||||
.class 00;38;5;234
|
||||
.cache 00;38;5;234
|
||||
|
||||
# pacman files
|
||||
.pacnew 48;5;95;38;5;108
|
||||
.pacsave 48;5;95;38;5;108
|
||||
.pacorig 48;5;95;38;5;108
|
||||
*PKGBUILD 00;38;5;110
|
||||
|
||||
# rpm files
|
||||
.rpmsave 48;5;95;38;5;108
|
||||
.rpmorig 48;5;95;38;5;108
|
||||
.rpmnew 48;5;95;38;5;108
|
||||
.spec 00;38;5;110
|
@ -0,0 +1,165 @@
|
||||
[Midnight-Commander]
|
||||
verbose=true
|
||||
pause_after_run=1
|
||||
shell_patterns=true
|
||||
auto_save_setup=true
|
||||
preallocate_space=false
|
||||
auto_menu=false
|
||||
use_internal_view=true
|
||||
use_internal_edit=false
|
||||
clear_before_exec=true
|
||||
confirm_delete=true
|
||||
confirm_overwrite=true
|
||||
confirm_execute=false
|
||||
confirm_history_cleanup=true
|
||||
confirm_exit=true
|
||||
confirm_directory_hotlist_delete=true
|
||||
safe_delete=false
|
||||
mouse_repeat_rate=100
|
||||
double_click_speed=250
|
||||
use_8th_bit_as_meta=false
|
||||
confirm_view_dir=false
|
||||
mouse_move_pages_viewer=true
|
||||
mouse_close_dialog=false
|
||||
fast_refresh=false
|
||||
drop_menus=false
|
||||
wrap_mode=true
|
||||
old_esc_mode=false
|
||||
old_esc_mode_timeout=1000000
|
||||
cd_symlinks=true
|
||||
show_all_if_ambiguous=false
|
||||
max_dirt_limit=10
|
||||
use_file_to_guess_type=true
|
||||
alternate_plus_minus=false
|
||||
only_leading_plus_minus=true
|
||||
show_output_starts_shell=false
|
||||
xtree_mode=false
|
||||
num_history_items_recorded=60
|
||||
file_op_compute_totals=true
|
||||
classic_progressbar=true
|
||||
vfs_timeout=60
|
||||
ftpfs_directory_timeout=900
|
||||
use_netrc=true
|
||||
ftpfs_retry_seconds=30
|
||||
ftpfs_always_use_proxy=false
|
||||
ftpfs_use_passive_connections=true
|
||||
ftpfs_use_passive_connections_over_proxy=false
|
||||
ftpfs_use_unix_list_options=true
|
||||
ftpfs_first_cd_then_ls=true
|
||||
fish_directory_timeout=900
|
||||
editor_tab_spacing=8
|
||||
editor_word_wrap_line_length=72
|
||||
editor_fill_tabs_with_spaces=false
|
||||
editor_return_does_auto_indent=true
|
||||
editor_backspace_through_tabs=false
|
||||
editor_fake_half_tabs=true
|
||||
editor_option_save_mode=0
|
||||
editor_option_save_position=true
|
||||
editor_option_auto_para_formatting=false
|
||||
editor_option_typewriter_wrap=false
|
||||
editor_edit_confirm_save=true
|
||||
editor_syntax_highlighting=true
|
||||
editor_persistent_selections=true
|
||||
editor_drop_selection_on_copy=true
|
||||
editor_cursor_beyond_eol=false
|
||||
editor_cursor_after_inserted_block=false
|
||||
editor_visible_tabs=true
|
||||
editor_visible_spaces=true
|
||||
editor_line_state=false
|
||||
editor_simple_statusbar=false
|
||||
editor_check_new_line=false
|
||||
editor_show_right_margin=false
|
||||
editor_group_undo=false
|
||||
editor_ask_filename_before_edit=false
|
||||
nice_rotating_dash=true
|
||||
mcview_remember_file_position=false
|
||||
auto_fill_mkdir_name=true
|
||||
copymove_persistent_attr=true
|
||||
editor_backup_extension=~
|
||||
editor_filesize_threshold=64M
|
||||
editor_stop_format_chars=-+*\\,.;:&>
|
||||
mcview_eof=
|
||||
ignore_ftp_chattr_errors=true
|
||||
skin=nicedark
|
||||
|
||||
editor_state_full_filename=false
|
||||
|
||||
filepos_max_saved_entries=1024
|
||||
|
||||
safe_overwrite=false
|
||||
|
||||
[Layout]
|
||||
message_visible=true
|
||||
keybar_visible=true
|
||||
xterm_title=true
|
||||
output_lines=0
|
||||
command_prompt=true
|
||||
menubar_visible=true
|
||||
free_space=true
|
||||
horizontal_split=false
|
||||
vertical_equal=true
|
||||
left_panel_size=106
|
||||
horizontal_equal=true
|
||||
top_panel_size=1
|
||||
|
||||
[Misc]
|
||||
timeformat_recent=%b %e %H:%M
|
||||
timeformat_old=%b %e %Y
|
||||
ftp_proxy_host=gate
|
||||
ftpfs_password=anonymous@
|
||||
display_codepage=UTF-8
|
||||
source_codepage=Other_8_bit
|
||||
autodetect_codeset=
|
||||
clipboard_store=
|
||||
clipboard_paste=
|
||||
|
||||
[Colors]
|
||||
base_color=
|
||||
rxvt=
|
||||
color_terminals=
|
||||
|
||||
cygwin=
|
||||
|
||||
xterm=
|
||||
|
||||
xterm-256color=
|
||||
|
||||
konsole-256color=
|
||||
|
||||
linux=
|
||||
|
||||
rxvt-cygwin=
|
||||
|
||||
rxvt-cygwin-native=
|
||||
|
||||
rxvt-unicode-256color=
|
||||
|
||||
[Panels]
|
||||
show_mini_info=true
|
||||
kilobyte_si=false
|
||||
mix_all_files=false
|
||||
show_backups=true
|
||||
show_dot_files=true
|
||||
fast_reload=false
|
||||
fast_reload_msg_shown=false
|
||||
mark_moves_down=true
|
||||
reverse_files_only=true
|
||||
auto_save_setup_panels=false
|
||||
navigate_with_arrows=true
|
||||
panel_scroll_pages=true
|
||||
mouse_move_pages=true
|
||||
filetype_mode=true
|
||||
permission_mode=false
|
||||
torben_fj_mode=false
|
||||
quick_search_mode=2
|
||||
select_flags=6
|
||||
|
||||
panel_scroll_center=false
|
||||
|
||||
simple_swap=false
|
||||
|
||||
[Panelize]
|
||||
Find *.orig after patching=find . -name \\*.orig -print
|
||||
Find SUID and SGID programs=find . \\( \\( -perm -04000 -a -perm /011 \\) -o \\( -perm -02000 -a -perm /01 \\) \\) -print
|
||||
Find rejects after patching=find . -name \\*.rej -print
|
||||
Modified git files=git ls-files --modified
|
@ -0,0 +1,459 @@
|
||||
[main]
|
||||
ChangePanel = tab
|
||||
Help = f1
|
||||
UserMenu = f2
|
||||
View = f3
|
||||
# ViewFile =
|
||||
Edit = f4
|
||||
# EditForceInternal =
|
||||
Copy = f5
|
||||
Move = f6
|
||||
MakeDir = f7
|
||||
Delete = f8
|
||||
Menu = f9
|
||||
Quit = f10
|
||||
MenuLastSelected = f19
|
||||
QuitQuiet = f20
|
||||
Find = alt-question
|
||||
CdQuick = alt-c
|
||||
HotList = ctrl-backslash
|
||||
Reread = ctrl-r
|
||||
DirSize = ctrl-space
|
||||
Suspend = ctrl-z
|
||||
Swap = ctrl-u
|
||||
History = alt-h
|
||||
# PanelListing =
|
||||
# SetupListingFormat =
|
||||
ShowHidden = alt-dot
|
||||
SplitVertHoriz = alt-comma
|
||||
SplitEqual = alt-equal
|
||||
SplitMore = alt-shift-right
|
||||
SplitLess = alt-shift-left
|
||||
Shell = ctrl-o
|
||||
PutCurrentPath = alt-a
|
||||
PutOtherPath = alt-shift-a
|
||||
PutCurrentSelected = alt-enter; ctrl-enter
|
||||
PutCurrentFullSelected = ctrl-shift-enter
|
||||
ViewFiltered = alt-exclamation
|
||||
Select = kpplus
|
||||
Unselect = kpminus
|
||||
SelectInvert = kpasterisk
|
||||
ScreenList = alt-prime
|
||||
# OptionsLayout =
|
||||
# OptionsAppearance =
|
||||
# OptionsPanel =
|
||||
# OptionsConfirm =
|
||||
# OptionsDisplayBits =
|
||||
# OptionsVfs =
|
||||
# LearnKeys =
|
||||
# SaveSetup =
|
||||
# EditExtensionsFile =
|
||||
# EditFileHighlightFile =
|
||||
# Filter =
|
||||
# ConnectFish =
|
||||
# ConnectFtp =
|
||||
# ConnectSmb =
|
||||
# Undelete =
|
||||
ExtendedKeyMap = ctrl-x
|
||||
|
||||
[main:xmap]
|
||||
ChangeMode = c
|
||||
ChangeOwn = o
|
||||
CompareDirs = d
|
||||
CompareFiles = ctrl-d
|
||||
HotListAdd = h
|
||||
LinkSymbolicEdit = ctrl-s
|
||||
Link = l
|
||||
LinkSymbolic = s
|
||||
LinkSymbolicRelative = v
|
||||
PanelInfo = i
|
||||
PanelQuickView = q
|
||||
ExternalPanelize = exclamation
|
||||
VfsList = a
|
||||
Jobs = j
|
||||
PutCurrentPath = p
|
||||
PutOtherPath = ctrl-p
|
||||
PutCurrentTagged = t
|
||||
PutOtherTagged = ctrl-t
|
||||
PutCurrentLink = r
|
||||
PutOtherLink = ctrl-r
|
||||
|
||||
[panel]
|
||||
CycleListingFormat = alt-t
|
||||
Search = ctrl-s; alt-s
|
||||
Mark = insert; ctrl-t
|
||||
MarkUp = shift-up
|
||||
MarkDown = shift-down
|
||||
# MarkLeft =
|
||||
# MarkRight =
|
||||
Down = down; ctrl-n
|
||||
Up = up; ctrl-p
|
||||
Left = left
|
||||
Right = right
|
||||
PageUp = pgup; alt-v
|
||||
PageDown = pgdn; ctrl-v
|
||||
Enter = enter
|
||||
PanelOtherCd = alt-o
|
||||
PanelOtherCdLink = alt-l
|
||||
ViewRaw = f13
|
||||
EditNew = f14
|
||||
CopySingle = f15
|
||||
MoveSingle = f16
|
||||
DeleteSingle = f18
|
||||
# SelectExt =
|
||||
Select = alt-plus
|
||||
Unselect = alt-minus
|
||||
SelectInvert = alt-asterisk
|
||||
CdChild = ctrl-pgdn
|
||||
CdParent = ctrl-pgup
|
||||
CdParentSmart = backspace
|
||||
# Panelize =
|
||||
History = alt-shift-h
|
||||
HistoryNext = alt-u
|
||||
HistoryPrev = alt-y
|
||||
BottomOnScreen = alt-j
|
||||
MiddleOnScreen = alt-r
|
||||
TopOnScreen = alt-g
|
||||
PanelOtherSync = alt-i
|
||||
SelectCodepage = alt-e
|
||||
Top = alt-lt; home; a1
|
||||
Bottom = alt-gt; end; c1
|
||||
# Sort =
|
||||
# SortPrev =
|
||||
# SortNext =
|
||||
# SortReverse =
|
||||
# SortByName =
|
||||
# SortByExt =
|
||||
# SortBySize =
|
||||
# SortByMTime =
|
||||
# ScrollLeft =
|
||||
# ScrollRight =
|
||||
|
||||
[dialog]
|
||||
Ok = enter
|
||||
Cancel = f10; esc; ctrl-g
|
||||
Up = left; up
|
||||
#Left = left; up
|
||||
Down = right; down
|
||||
#Right = right; down
|
||||
Help = f1
|
||||
Suspend = ctrl-z
|
||||
Refresh = ctrl-l
|
||||
ScreenList = alt-prime
|
||||
ScreenNext = alt-rbrace
|
||||
ScreenPrev = alt-lbrace
|
||||
|
||||
[input]
|
||||
Home = ctrl-a; alt-lt; home; a1
|
||||
End = ctrl-e; alt-gt; end; c1
|
||||
Left = left; alt-left; ctrl-b
|
||||
Right = right; alt-right; ctrl-f
|
||||
WordLeft = ctrl-left; alt-b
|
||||
WordRight = ctrl-right; alt-f
|
||||
Backspace = backspace; ctrl-h
|
||||
Delete = delete; ctrl-d
|
||||
DeleteToWordBegin = alt-backspace
|
||||
DeleteToWordEnd = alt-d
|
||||
# Mark =
|
||||
Remove = ctrl-w
|
||||
# Cut =
|
||||
Store = alt-w
|
||||
# Paste =
|
||||
Yank = ctrl-y
|
||||
DeleteToEnd = ctrl-k
|
||||
HistoryPrev = alt-p; ctrl-down
|
||||
HistoryNext = alt-n; ctrl-up
|
||||
History = alt-h
|
||||
Complete = alt-tab
|
||||
# Clear =
|
||||
MarkLeft = shift-left
|
||||
MarkRight = shift-right
|
||||
MarkToWordBegin = ctrl-shift-left
|
||||
MarkToWordEnd = ctrl-shift-right
|
||||
MarkToHome = shift-home
|
||||
MarkToEnd = shift-end
|
||||
|
||||
[listbox]
|
||||
Up = up; ctrl-p
|
||||
Down = down; ctrl-n
|
||||
Top = home; alt-lt; a1
|
||||
Bottom = end; alt-gt; c1
|
||||
PageUp = pgup; alt-v
|
||||
PageDown = pgdn; ctrl-v
|
||||
Delete = delete; d
|
||||
Clear = shift-delete; shift-d
|
||||
|
||||
[tree]
|
||||
Help = f1
|
||||
Reread = f2; ctrl-r
|
||||
Forget = f3
|
||||
ToggleNavigation = f4
|
||||
Copy = f5
|
||||
Move = f6
|
||||
Up = up; ctrl-p
|
||||
Down = down; ctrl-n
|
||||
Left = left
|
||||
Right = right
|
||||
Top = home; alt-lt; a1
|
||||
Bottom = end; alt-gt; c1
|
||||
PageUp = pgup; alt-v
|
||||
PageDown = pgdn; ctrl-v
|
||||
Enter = enter
|
||||
Search = ctrl-s; alt-s
|
||||
Delete = f8; delete
|
||||
|
||||
[help]
|
||||
Help = f1
|
||||
Index = f2; c
|
||||
Back = f3; left; l
|
||||
Quit = f10; esc
|
||||
Up = up; ctrl-p
|
||||
Down = down; ctrl-n
|
||||
PageDown = f; space; pgdn; ctrl-v
|
||||
PageUp = b; pgup; alt-v; backspace
|
||||
HalfPageDown = d
|
||||
HalfPageUp = u
|
||||
Top = home; ctrl-home; ctrl-pgup; a1; alt-lt; g
|
||||
Bottom = end; ctrl-end; ctrl-pgdn; c1; alt-gt; shift-g
|
||||
Enter = right; enter
|
||||
LinkNext = tab
|
||||
LinkPrev = alt-tab
|
||||
NodeNext = n
|
||||
NodePrev = p
|
||||
|
||||
[editor]
|
||||
Store = ctrl-insert
|
||||
Paste = shift-insert
|
||||
Cut = shift-delete
|
||||
Up = up
|
||||
Down = down
|
||||
Left = left
|
||||
Right = right
|
||||
WordLeft = ctrl-left; ctrl-z
|
||||
WordRight = ctrl-right; ctrl-x
|
||||
Enter = enter
|
||||
Return = shift-enter; ctrl-enter; ctrl-shift-enter
|
||||
BackSpace = backspace; ctrl-h
|
||||
Delete = delete; ctrl-d
|
||||
PageUp = pgup
|
||||
PageDown = pgdn
|
||||
Home = home
|
||||
End = end
|
||||
Tab = tab; shift-tab; ctrl-tab; ctrl-shift-tab
|
||||
Undo = ctrl-u
|
||||
Redo = alt-r
|
||||
Top = ctrl-home; alt-lt
|
||||
Bottom = ctrl-end; alt-gt
|
||||
ScrollUp = ctrl-up
|
||||
ScrollDown = ctrl-down
|
||||
TopOnScreen = ctrl-pgup
|
||||
BottomOnScreen = ctrl-pgdn
|
||||
DeleteToWordBegin = alt-backspace
|
||||
DeleteToWordEnd = alt-d
|
||||
DeleteLine = ctrl-y
|
||||
DeleteToEnd = ctrl-k
|
||||
# DeleteToHome =
|
||||
# ParagraphUp =
|
||||
# ParagraphDown =
|
||||
Save = f2
|
||||
# EditFile =
|
||||
EditNew = ctrl-n
|
||||
SaveAs = f12; ctrl-f2
|
||||
# Close =
|
||||
Mark = f3
|
||||
Copy = f5
|
||||
Move = f6
|
||||
Remove = f8
|
||||
# MarkLine =
|
||||
# MarkWord =
|
||||
# MarkAll =
|
||||
# Unmark =
|
||||
Search = f7
|
||||
SearchContinue = f17
|
||||
# BlockShiftLeft =
|
||||
# BlockShiftRight =
|
||||
MarkPageUp = shift-pgup
|
||||
MarkPageDown = shift-pgdn
|
||||
MarkLeft = shift-left
|
||||
MarkRight = shift-right
|
||||
MarkToWordBegin = ctrl-shift-left
|
||||
MarkToWordEnd = ctrl-shift-right
|
||||
MarkUp = shift-up
|
||||
MarkDown = shift-down
|
||||
MarkToHome = shift-home
|
||||
MarkToEnd = shift-end
|
||||
MarkToFileBegin = ctrl-shift-home
|
||||
MarkToFileEnd = ctrl-shift-end
|
||||
MarkToPageBegin = ctrl-shift-pgup
|
||||
MarkToPageEnd = ctrl-shift-pgdn
|
||||
MarkScrollUp = ctrl-shift-up
|
||||
MarkScrollDown = ctrl-shift-down
|
||||
# MarkParagraphUp =
|
||||
# MarkParagraphDown =
|
||||
MarkColumnPageUp = alt-pgup
|
||||
MarkColumnPageDown = alt-pgdn
|
||||
MarkColumnLeft = alt-left
|
||||
MarkColumnRight = alt-right
|
||||
MarkColumnUp = alt-up
|
||||
MarkColumnDown = alt-down
|
||||
# MarkColumnScrollUp =
|
||||
# MarkColumnScrollDown =
|
||||
# MarkColumnParagraphUp =
|
||||
# MarkColumnParagraphDown =
|
||||
BlockSave = ctrl-f
|
||||
MarkColumn = f13
|
||||
Replace = f4
|
||||
ReplaceContinue = f14
|
||||
Complete = alt-tab
|
||||
InsertFile = f15
|
||||
Quit = f10; esc
|
||||
InsertOverwrite = insert
|
||||
Help = f1
|
||||
# Date =
|
||||
Refresh = ctrl-l
|
||||
Goto = alt-l
|
||||
Sort = alt-t
|
||||
Mail = alt-m
|
||||
ParagraphFormat = alt-p
|
||||
MatchBracket = alt-b
|
||||
ExternalCommand = alt-u
|
||||
UserMenu = f11
|
||||
Menu = f9
|
||||
Bookmark = alt-k
|
||||
BookmarkFlush = alt-o
|
||||
BookmarkNext = alt-j
|
||||
BookmarkPrev = alt-i
|
||||
# History =
|
||||
Shell = ctrl-o
|
||||
InsertLiteral = ctrl-q
|
||||
# MacroStartRecord =
|
||||
# MacroStopRecord =
|
||||
MacroStartStopRecord = ctrl-r
|
||||
# MacroDelete =
|
||||
ShowNumbers = alt-n
|
||||
ShowTabTws = alt-underline
|
||||
SyntaxOnOff = ctrl-s
|
||||
# SyntaxChoose =
|
||||
# ShowMargin =
|
||||
Find = alt-enter
|
||||
FilePrev = alt-minus
|
||||
FileNext = alt-plus
|
||||
# RepeatStartStopRecord =
|
||||
SelectCodepage = alt-e
|
||||
# Options =
|
||||
# OptionsSaveMode =
|
||||
# SpellCheck =
|
||||
SpellCheckCurrentWord = ctrl-p
|
||||
# SpellCheckSelectLang =
|
||||
# LearnKeys =
|
||||
# WindowMove =
|
||||
# WindowResize =
|
||||
# WindowFullscreen =
|
||||
# WindowList =
|
||||
# WindowNext =
|
||||
# WindowPrev =
|
||||
# ExtendedKeyMap =
|
||||
|
||||
[viewer]
|
||||
Help = f1
|
||||
WrapMode = f2
|
||||
Quit = f3; f10; q; esc
|
||||
HexMode = f4
|
||||
Goto = f5
|
||||
Search = f7
|
||||
SearchForward = slash
|
||||
SearchBackward = question
|
||||
SearchContinue = f17; n
|
||||
SearchForwardContinue = ctrl-s
|
||||
SearchBackwardContinue = ctrl-r
|
||||
MagicMode = f8
|
||||
NroffMode = f9
|
||||
Home = ctrl-a
|
||||
End = ctrl-e
|
||||
Left = h; left
|
||||
Right = l; right
|
||||
LeftQuick = ctrl-left
|
||||
RightQuick = ctrl-right
|
||||
Up = k; y; insert; up; ctrl-p
|
||||
Down = j; e; delete; down; enter; ctrl-n
|
||||
PageDown = f; space; pgdn; ctrl-v
|
||||
PageUp = b; pgup; alt-v; backspace
|
||||
HalfPageDown = d
|
||||
HalfPageUp = u
|
||||
Top = home; ctrl-home; ctrl-pgup; a1; alt-lt; g
|
||||
Bottom = end; ctrl-end; ctrl-pgdn; c1; alt-gt; shift-g
|
||||
BookmarkGoto = m
|
||||
Bookmark = r
|
||||
FileNext = ctrl-f
|
||||
FilePrev = ctrl-b
|
||||
SelectCodepage = alt-e
|
||||
Shell = ctrl-o
|
||||
Ruler = alt-r
|
||||
|
||||
[viewer:hex]
|
||||
Help = f1
|
||||
HexEditMode = f2
|
||||
Quit = f3; f10; q; esc
|
||||
HexMode = f4
|
||||
Goto = f5
|
||||
Save = f6
|
||||
Search = f7
|
||||
SearchForward = slash
|
||||
SearchBackward = question
|
||||
SearchContinue = f17; n
|
||||
SearchForwardContinue = ctrl-s
|
||||
SearchBackwardContinue = ctrl-r
|
||||
MagicMode = f8
|
||||
NroffMode = f9
|
||||
ToggleNavigation = tab
|
||||
Home = ctrl-a; home
|
||||
End = ctrl-e; end
|
||||
Left = b; left
|
||||
Right = f; right
|
||||
Up = k; y; up
|
||||
Down = j; delete; down
|
||||
PageDown = pgdn; ctrl-v
|
||||
PageUp = pgup; alt-v
|
||||
Top = ctrl-home; ctrl-pgup; a1; alt-lt; g
|
||||
Bottom = ctrl-end; ctrl-pgdn; c1; alt-gt; shift-g
|
||||
|
||||
[diffviewer]
|
||||
ShowSymbols = alt-s; s
|
||||
ShowNumbers = alt-n; l
|
||||
SplitFull = f
|
||||
SplitEqual = equal
|
||||
SplitMore = gt
|
||||
SplitLess = lt
|
||||
Tab2 = 2
|
||||
Tab3 = 3
|
||||
Tab4 = 4
|
||||
Tab8 = 8
|
||||
Swap = ctrl-u
|
||||
Redo = ctrl-r
|
||||
HunkNext = n; enter; space
|
||||
HunkPrev = p; backspace
|
||||
Goto = g; shift-g
|
||||
Save = f2
|
||||
Edit = f4
|
||||
EditOther = f14
|
||||
Merge = f5
|
||||
MergeOther = f15
|
||||
Search = f7
|
||||
SearchContinue = f17
|
||||
Options = f9
|
||||
Top = ctrl-home
|
||||
Bottom = ctrl-end
|
||||
Down = down
|
||||
Up = up
|
||||
LeftQuick = ctrl-left
|
||||
RightQuick = ctrl-right
|
||||
Left = left
|
||||
Right = right
|
||||
PageDown = pgdn
|
||||
PageUp = pgup
|
||||
Home = home
|
||||
End = end
|
||||
Help = f1
|
||||
Quit = f10; q; shift-q; esc
|
||||
Shell = ctrl-o
|
||||
SelectCodepage = alt-e
|
@ -0,0 +1,36 @@
|
||||
[New Left Panel]
|
||||
display=listing
|
||||
reverse=false
|
||||
case_sensitive=true
|
||||
exec_first=false
|
||||
sort_order=name
|
||||
list_mode=full
|
||||
brief_cols=2
|
||||
user_format=half type name | size | mtime | perm
|
||||
user_status0=half type name | size | perm
|
||||
user_status1=half type name | size | perm
|
||||
user_status2=half type name | size | perm
|
||||
user_status3=half type name | size | perm
|
||||
user_mini_status=false
|
||||
|
||||
list_format=user
|
||||
|
||||
[New Right Panel]
|
||||
display=listing
|
||||
reverse=false
|
||||
case_sensitive=true
|
||||
exec_first=false
|
||||
sort_order=name
|
||||
list_mode=full
|
||||
brief_cols=2
|
||||
user_format=half type name | size | mtime | perm
|
||||
user_status0=half type name | size | perm
|
||||
user_status1=half type name | size | perm
|
||||
user_status2=half type name | size | perm
|
||||
user_status3=half type name | size | perm
|
||||
user_mini_status=false
|
||||
|
||||
list_format=user
|
||||
|
||||
[Dirs]
|
||||
current_is_left=false
|
@ -0,0 +1,19 @@
|
||||
ForegroundColour=217,230,242
|
||||
BackgroundColour=13,25,38
|
||||
CursorColour=217,230,242
|
||||
Black=0,0,0
|
||||
BoldBlack=38,38,38
|
||||
Red=184,122,122
|
||||
BoldRed=219,189,189
|
||||
Green=122,184,122
|
||||
BoldGreen=189,219,189
|
||||
Yellow=184,184,122
|
||||
BoldYellow=219,219,189
|
||||
Blue=122,122,184
|
||||
BoldBlue=189,189,219
|
||||
Magenta=184,122,184
|
||||
BoldMagenta=219,189,219
|
||||
Cyan=122,184,184
|
||||
BoldCyan=189,219,219
|
||||
White=217,217,217
|
||||
BoldWhite=255,255,255
|
@ -0,0 +1,19 @@
|
||||
ForegroundColour=208,208,208
|
||||
BackgroundColour=21,21,21
|
||||
CursorColour=253,157,79
|
||||
Black=21,21,21
|
||||
BoldBlack=80,80,80
|
||||
Red=172,65,66
|
||||
BoldRed=194,94,94
|
||||
Green=144,169,89
|
||||
BoldGreen=166,187,123
|
||||
Yellow=244,191,117
|
||||
BoldYellow=248,213,165
|
||||
Blue=106,159,181
|
||||
BoldBlue=140,181,198
|
||||
Magenta=170,117,159
|
||||
BoldMagenta=190,149,181
|
||||
Cyan=117,181,170
|
||||
BoldCyan=151,199,190
|
||||
White=208,208,208
|
||||
BoldWhite=245,245,245
|
@ -0,0 +1,19 @@
|
||||
ForegroundColour=208,208,208
|
||||
BackgroundColour=21,21,21
|
||||
CursorColour=253,157,79
|
||||
Black=21,21,21
|
||||
BoldBlack=80,80,80
|
||||
Red=172,65,66
|
||||
BoldRed=116,44,45
|
||||
Green=144,169,89
|
||||
BoldGreen=102,119,61
|
||||
Yellow=244,191,117
|
||||
BoldYellow=238,158,45
|
||||
Blue=106,159,181
|
||||
BoldBlue=70,120,141
|
||||
Magenta=170,117,159
|
||||
BoldMagenta=130,80,120
|
||||
Cyan=117,181,170
|
||||
BoldCyan=77,144,133
|
||||
White=208,208,208
|
||||
BoldWhite=245,245,245
|
@ -0,0 +1,19 @@
|
||||
ForegroundColour=211,208,200
|
||||
BackgroundColour=45,45,45
|
||||
CursorColour=253,157,79
|
||||
Black=45,45,45
|
||||
BoldBlack=116,115,105
|
||||
Red=242,119,122
|
||||
BoldRed=236,50,53
|
||||
Green=153,204,153
|
||||
BoldGreen=102,177,102
|
||||
Yellow=255,204,102
|
||||
BoldYellow=255,177,24
|
||||
Blue=102,153,204
|
||||
BoldBlue=57,114,173
|
||||
Magenta=204,153,204
|
||||
BoldMagenta=177,102,177
|
||||
Cyan=102,204,204
|
||||
BoldCyan=57,173,173
|
||||
White=211,208,200
|
||||
BoldWhite=242,240,236
|
@ -0,0 +1,19 @@
|
||||
ForegroundColour=248,248,242
|
||||
BackgroundColour=39,40,34
|
||||
CursorColour=253,157,79
|
||||
Black=39,40,34
|
||||
BoldBlack=117,113,94
|
||||
Red=249,38,114
|
||||
BoldRed=204,6,78
|
||||
Green=166,226,46
|
||||
BoldGreen=122,172,24
|
||||
Yellow=244,191,117
|
||||
BoldYellow=240,169,69
|
||||
Blue=102,217,239
|
||||
BoldBlue=33,199,233
|
||||
Magenta=174,129,255
|
||||
BoldMagenta=126,51,255
|
||||
Cyan=161,239,228
|
||||
BoldCyan=95,227,210
|
||||
White=248,248,242
|
||||
BoldWhite=249,248,245
|
@ -0,0 +1,19 @@
|
||||
ForegroundColour=171,171,171
|
||||
BackgroundColour=0,0,0
|
||||
CursorColour=253,157,79
|
||||
Black=0,0,0
|
||||
BoldBlack=52,52,52
|
||||
Red=233,47,47
|
||||
BoldRed=240,116,116
|
||||
Green=14,216,57
|
||||
BoldGreen=64,243,102
|
||||
Yellow=221,221,19
|
||||
BoldYellow=240,240,78
|
||||
Blue=59,72,227
|
||||
BoldBlue=125,135,236
|
||||
Magenta=249,150,226
|
||||
BoldMagenta=253,222,246
|
||||
Cyan=35,237,218
|
||||
BoldCyan=107,243,230
|
||||
White=171,171,171
|
||||
BoldWhite=249,249,249
|
@ -0,0 +1,19 @@
|
||||
ForegroundColour=147,161,161
|
||||
BackgroundColour=0,43,54
|
||||
CursorColour=253,157,79
|
||||
Black=0,43,54
|
||||
BoldBlack=101,123,131
|
||||
Red=220,50,47
|
||||
BoldRed=232,115,113
|
||||
Green=133,153,0
|
||||
BoldGreen=199,228,0
|
||||
Yellow=181,137,0
|
||||
BoldYellow=255,193,2
|
||||
Blue=38,139,210
|
||||
BoldBlue=99,173,227
|
||||
Magenta=108,113,196
|
||||
BoldMagenta=162,165,217
|
||||
Cyan=42,161,152
|
||||
BoldCyan=71,207,197
|
||||
White=147,161,161
|
||||
BoldWhite=253,246,227
|
@ -0,0 +1,19 @@
|
||||
ForegroundColour=197,200,198
|
||||
BackgroundColour=29,31,33
|
||||
CursorColour=253,157,79
|
||||
Black=29,31,33
|
||||
BoldBlack=150,152,150
|
||||
Red=204,102,102
|
||||
BoldRed=173,57,57
|
||||
Green=181,189,104
|
||||
BoldGreen=142,150,66
|
||||
Yellow=240,198,116
|
||||
BoldYellow=234,171,47
|
||||
Blue=129,162,190
|
||||
BoldBlue=82,125,159
|
||||
Magenta=178,148,187
|
||||
BoldMagenta=145,100,157
|
||||
Cyan=138,190,183
|
||||
BoldCyan=90,162,152
|
||||
White=197,200,198
|
||||
BoldWhite=255,255,255
|
@ -0,0 +1 @@
|
||||
--no-check-certificate
|
@ -0,0 +1,127 @@
|
||||
## ELinks 0.11.6 configuration file
|
||||
|
||||
## This is ELinks configuration file. You can edit it manually,
|
||||
## if you wish so; this file is edited by ELinks when you save
|
||||
## options through UI, however only option values will be altered
|
||||
## and missing options will be added at the end of file; if option
|
||||
## is not written in this file, but in some file included from it,
|
||||
## it is NOT counted as missing. Note that all your formatting,
|
||||
## own comments and so on will be kept as-is.
|
||||
##
|
||||
## Obviously, if you don't like what ELinks is going to do with
|
||||
## this file, you can change it by altering the config.saving_style
|
||||
## option. Come on, aren't we friendly guys after all?
|
||||
|
||||
|
||||
|
||||
##############################
|
||||
# Automatically saved options
|
||||
#
|
||||
|
||||
## config
|
||||
# Configuration handling options.
|
||||
|
||||
## config.saving_style_w [0|1]
|
||||
# This is internal option used when displaying a warning about
|
||||
# obsolete config.saving_style. You shouldn't touch it.
|
||||
set config.saving_style_w = 1
|
||||
|
||||
|
||||
## terminal
|
||||
# Terminal options.
|
||||
|
||||
## terminal.rxvt
|
||||
# Options specific to this terminal type (according to $TERM value).
|
||||
|
||||
## terminal.rxvt.colors <num>
|
||||
set terminal.rxvt.colors = 1
|
||||
## terminal.rxvt.m11_hack [0|1]
|
||||
set terminal.rxvt.m11_hack = 0
|
||||
## terminal.rxvt.type <num>
|
||||
set terminal.rxvt.type = 1
|
||||
|
||||
|
||||
## ui
|
||||
# User interface options.
|
||||
|
||||
## ui.language <language>
|
||||
# Language of user interface. 'System' means that the language will
|
||||
# be extracted from the environment dynamically.
|
||||
set ui.language = "System"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
##############################
|
||||
# Automatically saved options
|
||||
#
|
||||
|
||||
## terminal
|
||||
# Terminal options.
|
||||
|
||||
## terminal.rxvt
|
||||
# Options specific to this terminal type (according to $TERM value).
|
||||
|
||||
## terminal.rxvt.charset <codepage>
|
||||
set terminal.rxvt.charset = "ISO-8859-1"
|
||||
## terminal.rxvt.utf_8_io [0|1]
|
||||
set terminal.rxvt.utf_8_io = 1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
##############################
|
||||
# Automatically saved options
|
||||
#
|
||||
|
||||
## connection
|
||||
# Connection options.
|
||||
|
||||
## connection.ssl
|
||||
# SSL options.
|
||||
|
||||
## connection.ssl.cert_verify [0|1]
|
||||
# Verify the peer's SSL certificate. Note that this
|
||||
# needs extensive configuration of OpenSSL by the user.
|
||||
set connection.ssl.cert_verify = 0
|
||||
|
||||
|
||||
|
||||
## cookies
|
||||
# Cookies options.
|
||||
|
||||
## cookies.accept_policy <num>
|
||||
# Cookies accepting policy:
|
||||
# 0 is accept no cookies
|
||||
# 1 is ask for confirmation before accepting cookie
|
||||
# 2 is accept all cookies
|
||||
set cookies.accept_policy = 2
|
||||
|
||||
|
||||
## ui
|
||||
# User interface options.
|
||||
|
||||
## ui.clock
|
||||
# Digital clock in the status bar.
|
||||
|
||||
## ui.clock.enable [0|1]
|
||||
# Whether to display a digital clock in the status bar.
|
||||
set ui.clock.enable = 1
|
||||
|
||||
|
||||
## ui.leds
|
||||
# LEDs (visual indicators) options.
|
||||
|
||||
## ui.leds.enable [0|1]
|
||||
# Enable LEDs.
|
||||
# These visual indicators will inform you about various states.
|
||||
set ui.leds.enable = 1
|
||||
|
||||
|
||||
## ui.date_format <str>
|
||||
# Date format to use in dialogs. See strftime(3).
|
||||
set ui.date_format = "%b %e %H:%M"
|
||||
|
||||
|
@ -0,0 +1,27 @@
|
||||
# none, visible or audible
|
||||
set bell-style visible
|
||||
|
||||
# Ask before displaying >40 items
|
||||
set completion-query-items 40
|
||||
set completion-ignore-case on
|
||||
|
||||
# disable/enable 8bit input
|
||||
#set meta-flag on
|
||||
#set input-meta on
|
||||
#set output-meta on
|
||||
#set convert-meta on
|
||||
|
||||
# History-seach
|
||||
"\e[A": history-search-backward # Arrow-up
|
||||
"\e[B": history-search-forward # Arrow-down
|
||||
|
||||
"\e[1;5C": forward-word # Ctrl-Left
|
||||
"\e[1;5D": backward-word # Ctrl-Right
|
||||
|
||||
"\e[3;5~": kill-word # Ctrl-Del - delete word to the right
|
||||
|
||||
#"\C-k": "\C-e\C-uecho -e \"\\033c\\c\"\n" # Ctrl-K - resets the terminal (commented, I prefer binding below)
|
||||
"\C-k": "\C-e\C-u" # Ctrl-K - clears the input line regardless of cursor pos
|
||||
|
||||
"\e[5~": beginning-of-history # Page up
|
||||
"\e[6~": end-of-history # Page down
|
@ -0,0 +1,389 @@
|
||||
servers = (
|
||||
{ address = "irc.dal.net"; chatnet = "DALnet"; port = "6667"; },
|
||||
{ address = "irc.efnet.org"; chatnet = "EFNet"; port = "6667"; },
|
||||
{ address = "irc.esper.net"; chatnet = "EsperNet"; port = "6667"; },
|
||||
{
|
||||
address = "chat.freenode.net";
|
||||
chatnet = "Freenode";
|
||||
port = "6667";
|
||||
},
|
||||
{
|
||||
address = "irc.gamesurge.net";
|
||||
chatnet = "GameSurge";
|
||||
port = "6667";
|
||||
},
|
||||
{ address = "eu.irc6.net"; chatnet = "IRCnet"; port = "6667"; },
|
||||
{ address = "open.ircnet.net"; chatnet = "IRCnet"; port = "6667"; },
|
||||
{
|
||||
address = "irc.ircsource.net";
|
||||
chatnet = "IRCSource";
|
||||
port = "6667";
|
||||
},
|
||||
{ address = "irc.netfuze.net"; chatnet = "NetFuze"; port = "6667"; },
|
||||
{ address = "irc.oftc.net"; chatnet = "OFTC"; port = "6667"; },
|
||||
{
|
||||
address = "irc.quakenet.org";
|
||||
chatnet = "QuakeNet";
|
||||