cleanup, removed unused configs

This commit is contained in:
Tobias Schmidl 2016-12-07 17:01:31 +01:00
parent 37c8a5dae0
commit 34e162f851
12 changed files with 0 additions and 1262 deletions

View file

@ -1,21 +0,0 @@
tabbar.hide.one=1
toolbar.visible=0
line.margin.visible=1
line.margin.width=2+
margin.width=12
toolbar.usestockicons=1
view.whitespace=1
code.page=65001
whitespace.fore=e0e0e0
font.monospace="fore:#1f1b1c,font:!Droid Sans Mono,size:9"
font.base=$(font.monospace)
font.small=$(font.monospace)
font.comment=$(font.monospace)
font.text=$(font.monospace)
font.text.comment=$(font.monospace)
font.embedded.base=$(font.monospace)
font.embedded.comment=$(font.monospace)
font.vbs=$(font.monospace)
tabsize=4
indent.size=4
use.tabs=1

View file

@ -1,39 +0,0 @@
alias alert='notify-send --urgency=low -i "$([ $? -eq 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
alias apt-autoclean='sudo apt-get autoclean'
alias apt-autoremove='sudo apt-get --purge autoremove'
alias apt-update='sudo apt-get update'
alias apt-upgrade='sudo aptitude --purge dist-upgrade'
alias bz2c='bzip2 --best'
alias ..='cd ..'
alias ...='cd ../../'
alias ....='cd ../../../'
alias cdiff="colordiff"
alias clean-gpg="for a in `gpg2 -k | sed -rn 's/pub +[0-9]+[DR]\/(0x[0-9A-Fa-f]+).*/\1/p'`; do gpg2 --quiet --no-tty --edit-key $a clean save; done;"
alias dir='dir --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias git-patch='git diff --minimal --find-renames --find-copies --relative ./ > ../$(basename `pwd`).patch && git co -- ./'
alias grep='grep --color=auto'
alias gzc='gzip --best --no-name'
alias jar='java -jar'
alias ls='ls --color=auto'
alias l='ls -FCh'
alias ll='ls -Fhl'
alias la='ll -a'
alias netcat='netcat -q -1 -vv'
alias picocom='picocom -b 115200'
alias screen='screen -RU'
alias ssh-add-all='for a in .ssh/id_*; do ssh-add $a; done;'
alias svn_mime_set='for a in $(find ./ -type f -not -regex ".*\.svn.*"); do svn pset svn:mime-type $(file --mime-type $a | sed "s/ *//g;s/[^:]*://g") $a; done;'
alias telnet='telnet -e "#"'
alias update-system='apt-update && sudo aptitude -y -s dist-upgrade'
alias upgrade-system='apt-upgrade && apt-autoclean'
alias vdir='vdir --color=auto'
alias wake_dominik="wakeonlan '00:19:99:d5:da:2f'";
alias wake_office="wakeonlan '00:19:99:C4:D4:54'";
alias xzc='xz --best --extreme'
alias more='LESSOPEN="| /usr/share/source-highlight/src-hilite-lesspipe.sh %s" LESS=" -R " less'
function ddg() { www-browser "https://duckduckgo.com/?q=`escape "$@"`"; }
function escape() { perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$@"; }
function gg() { x-www-browser "https://www.google.de/search?q=`escape "$@"`"; }
function xmlformat () { xmllint --format "$1" | unexpand -t 2 --first-only; }

105
bashrc
View file

@ -1,105 +0,0 @@
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
HISTIGNORE="pwd:ls:ll:cd"
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar
# make less more friendly for non-text input files, see lesspipe(1)
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]>'
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w>'
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
#alias grep='grep --color=auto'
#alias fgrep='fgrep --color=auto'
#alias egrep='egrep --color=auto'
fi
# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.aliases ]; then
. ~/.aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi

251
dunstrc
View file

@ -1,251 +0,0 @@
[global]
font = Hack 9
# Allow a small subset of html markup:
# <b>bold</b>
# <i>italic</i>
# <s>strikethrough</s>
# <u>underline</u>
#
# For a complete reference see
# <http://developer.gnome.org/pango/stable/PangoMarkupFormat.html>.
# If markup is not allowed, those tags will be stripped out of the
# message.
allow_markup = yes
# The format of the message. Possible variables are:
# %a appname
# %s summary
# %b body
# %i iconname (including its path)
# %I iconname (without its path)
# %p progress value if set ([ 0%] to [100%]) or nothing
# Markup is allowed
format = "<b>%s</b>\n%b"
# Sort messages by urgency.
sort = yes
# Show how many messages are currently hidden (because of geometry).
indicate_hidden = yes
# Alignment of message text.
# Possible values are "left", "center" and "right".
alignment = left
# The frequency with wich text that is longer than the notification
# window allows bounces back and forth.
# This option conflicts with "word_wrap".
# Set to 0 to disable.
bounce_freq = 0
# Show age of message if message is older than show_age_threshold
# seconds.
# Set to -1 to disable.
show_age_threshold = 60
# Split notifications into multiple lines if they don't fit into
# geometry.
word_wrap = yes
# Ignore newlines '\n' in notifications.
ignore_newline = no
# The geometry of the window:
# [{width}]x{height}[+/-{x}+/-{y}]
# The geometry of the message window.
# The height is measured in number of notifications everything else
# in pixels. If the width is omitted but the height is given
# ("-geometry x2"), the message window expands over the whole screen
# (dmenu-like). If width is 0, the window expands to the longest
# message displayed. A positive x is measured from the left, a
# negative from the right side of the screen. Y is measured from
# the top and down respectevly.
# The width can be negative. In this case the actual width is the
# screen width minus the width defined in within the geometry option.
geometry = "300x5-30+20"
# Shrink window if it's smaller than the width. Will be ignored if
# width is 0.
shrink = no
# The transparency of the window. Range: [0; 100].
# This option will only work if a compositing windowmanager is
# present (e.g. xcompmgr, compiz, etc.).
transparency = 0
# Don't remove messages, if the user is idle (no mouse or keyboard input)
# for longer than idle_threshold seconds.
# Set to 0 to disable.
idle_threshold = 120
# Which monitor should the notifications be displayed on.
monitor = 0
# Display notification on focused monitor. Possible modes are:
# mouse: follow mouse pointer
# keyboard: follow window with keyboard focus
# none: don't follow anything
#
# "keyboard" needs a windowmanager that exports the
# _NET_ACTIVE_WINDOW property.
# This should be the case for almost all modern windowmanagers.
#
# If this option is set to mouse or keyboard, the monitor option
# will be ignored.
follow = mouse
# Should a notification popped up from history be sticky or timeout
# as if it would normally do.
sticky_history = yes
# Maximum amount of notifications kept in history
history_length = 20
# Display indicators for URLs (U) and actions (A).
show_indicators = yes
# The height of a single line. If the height is smaller than the
# font height, it will get raised to the font height.
# This adds empty space above and under the text.
line_height = 0
# Draw a line of "separatpr_height" pixel height between two
# notifications.
# Set to 0 to disable.
separator_height = 2
# Padding between text and separator.
padding = 8
# Horizontal padding.
horizontal_padding = 8
# Define a color for the separator.
# possible values are:
# * auto: dunst tries to find a color fitting to the background;
# * foreground: use the same color as the foreground;
# * frame: use the same color as the frame;
# * anything else will be interpreted as a X color.
separator_color = frame
# Print a notification on startup.
# This is mainly for error detection, since dbus (re-)starts dunst
# automatically after a crash.
startup_notification = false
# dmenu path.
dmenu = /usr/bin/dmenu -p dunst:
# Browser for opening urls in context menu.
browser = /usr/bin/x-www-browser -new-tab
# Align icons left/right/off
icon_position = left
# Paths to default icons.
icon_folders = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
[frame]
width = 1
color = "#fdf6e3"
[shortcuts]
# Shortcuts are specified as [modifier+][modifier+]...key
# Available modifiers are "ctrl", "mod1" (the alt-key), "mod2",
# "mod3" and "mod4" (windows-key).
# Xev might be helpful to find names for keys.
# Close notification.
close = mod4+period
# Close all notifications.
close_all = mod4+shift+period
# Redisplay last message(s).
# On the US keyboard layout "grave" is normally above TAB and left
# of "1".
history = mod4+comma
# Context menu.
context = mod4+minus
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
# Background is S_base03
background = "#002b36"
# Foreground is S_base0
foreground = "#839496"
timeout = 10
[urgency_normal]
# Background is S_base03
background = "#002b36"
# Foreground is S_base3
foreground = "#fdf6e3"
timeout = 10
[urgency_critical]
# Background is S_red
background = "#dc322f"
# Foreground is S_base03
foreground = "#002b36"
timeout = 0
# Every section that isn't one of the above is interpreted as a rules to
# override settings for certain messages.
# Messages can be matched by "appname", "summary", "body", "icon", "category",
# "msg_urgency" and you can override the "timeout", "urgency", "foreground",
# "background", "new_icon" and "format".
# Shell-like globbing will get expanded.
#
# SCRIPTING
# You can specify a script that gets run when the rule matches by
# setting the "script" option.
# The script will be called as follows:
# script appname summary body icon urgency
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
#
# NOTE: if you don't want a notification to be displayed, set the format
# to "".
# NOTE: It might be helpful to run dunst -print in a terminal in order
# to find fitting options for rules.
#[espeak]
# summary = "*"
# script = dunst_espeak.sh
#[script-test]
# summary = "*script*"
# script = dunst_test.sh
#[ignore]
# # This notification will not be displayed
# summary = "foobar"
# format = ""
#[signed_on]
# appname = Pidgin
# summary = "*signed on*"
# urgency = low
#
#[signed_off]
# appname = Pidgin
# summary = *signed off*
# urgency = low
#
#[says]
# appname = Pidgin
# summary = *says*
# urgency = critical
#
#[twitter]
# appname = Pidgin
# summary = *twitter.com*
# urgency = normal
#
# vim: ft=cfg

277
fbpanel
View file

@ -1,277 +0,0 @@
########################################
## fbpanel configuration file ##
########################################
Global {
edge = top
allign = right
margin = 0
widthtype = pixel
width = 1600
height = 24
transparent = false
tintcolor = #808080
alpha = 224
setdocktype = true
#setpartialstrut = true
autohide = false
heightWhenHidden = 2
roundcorners = false
#roundcornersradius = 7
#layer = none
MaxElemHeight = 24
}
Plugin {
type = space
config {
size = 5
}
}
Plugin {
type = menu
config {
IconSize = 16
#icon = start-here
# Use a nice Debian logo for the menu list ;-)
image = /usr/share/pixmaps/debian-logo.png
systemmenu {
}
separator {
}
menu {
name = Computer
icon = computer
item {
name = Terminal
icon = terminal
action = x-terminal-emulator
}
item {
name = Lock Display
icon = gnome-lockscreen
action = xscreensaver-command -lock
}
separator {
}
item {
name = Reboot
icon = gnome-session-reboot
action = reboot
}
item {
name = Shutdown
icon = gnome-session-halt
action = halt
}
item {
name = logout
icon = gnome-session-logout
action = /usr/lib/fbpanel/fbpanel/xlogout
}
}
}
}
Plugin {
type = space
config {
size = 5
}
}
Plugin {
type = launchbar
config {
button {
icon = file-manager
tooltip = File Manager
action = dolphin
}
button {
icon = terminal
tooltip = Terminal
action = x-terminal-emulator
}
button {
icon = web-browser
tooltip = Web Browser
action = x-www-browser
}
}
}
Plugin {
type = space
config {
size = 5
}
}
Plugin {
type = wincmd
config {
icon = gnome-fs-desktop
tooltip = Left click to iconify all windows. Middle click to shade them.
}
}
Plugin {
type = space
config {
size = 10
}
}
Plugin {
type = taskbar
expand = true
config {
ShowIconified = true
ShowMapped = true
ShowAllDesks = false
tooltips = true
IconsOnly = false
#MaxTaskWidth = 150
}
}
# Plugin {
# type = space
# config {
# size = 10
# }
# }
# Plugin {
# type = pager
# config {
# showwallpaper = true
# }
# }
Plugin {
type = space
config {
size = 10
}
}
Plugin {
type = mem
expand = false
padding = 2
config {
ShowSwap = true
}
}
Plugin {
type = cpu
config {
Color = green
}
}
# Plugin {
# type = net
# expand = false
# padding = 0
# config {
# #interface = ppp0
# interface = eth0
# # set connection limits to make traffic graph more accurate
# TxLimit = 1000000
# RxLimit = 1000000
# TxColor = violet
# RxColor = blue
# }
# }
Plugin {
type = space
config {
size = 10
}
}
# plugin {
# type = volume
# }
plugin {
type = battery
}
Plugin {
type = tray
}
Plugin {
type = space
config {
size = 10
}
}
# Digital Clock
Plugin {
type = tclock
config {
ShowSeconds = false
HoursView = 24
TooltipFmt = %A %x
Color = black
#Action = xmessage Please define some command &
}
}
# 'icons' plugin lets you customize window icons.
# these changes apply to entire desktop
Plugin {
type = icons
config {
DefaultIcon = /usr/share/fbpanel/images/default.xpm
application {
icon = gnome-terminal
ClassName = XTerm
}
application {
icon = gnome-terminal
ClassName = mlterm
}
application {
icon = gnome-terminal
ClassName = URxvt
}
application {
icon = gnome-emacs
ClassName = Emacs
}
application {
icon = mozilla-firefox
ClassName = Firefox-bin
}
application {
icon = mozilla-firefox
ClassName = Firefox
}
}
}

View file

@ -1,36 +0,0 @@
[http]
sslCAPath = /etc/ssl/certs # System CA path
sslVerify = true # make sure that https requests get verified
# some system aliases
[alias]
st = status
ci = commit
di = diff
wdi = diff --color-words
co = checkout
up = fetch --all
# default push destination
[push]
default = upstream
# try rebase whenever possible
[branch "master"]
rebase = true
# try rebase whenever possible
[pull]
rebase = true
# recognize file copies
[diff]
renames = copies
# allow writing by all users in the same group
[core]
sharedRepository = group
# deny ununsual write options
[receive]
denyNonFastForwards = true

61
gitk
View file

@ -1,61 +0,0 @@
set mainfont {{DejaVu Sans} 9}
set textfont {{Droid Sans Mono} 9}
set uifont {{DejaVu Sans} 9}
set tabstop 8
set findmergefiles 0
set maxgraphpct 50
set maxwidth 16
set cmitmode patch
set wrapcomment none
set autoselect 1
set autosellen 40
set showneartags 1
set maxrefs 20
set hideremotes 1
set showlocalchanges 1
set datetimeformat {%Y-%m-%d %H:%M:%S}
set limitdiffs 1
set uicolor grey85
set want_ttk 1
set bgcolor white
set fgcolor black
set uifgcolor black
set uifgdisabledcolor #999
set colors {green red blue magenta darkgrey brown orange}
set diffcolors {red "#00a000" blue}
set mergecolors {red blue green purple brown "#009090" magenta "#808000" "#009000" "#ff0080" cyan "#b07070" "#70b0f0" "#70f0b0" "#f0b070" "#ff70b0"}
set markbgcolor #e0e0ff
set diffcontext 3
set selectbgcolor gray85
set foundbgcolor yellow
set currentsearchhitbgcolor orange
set extdifftool meld
set perfile_attrs 0
set headbgcolor green
set headfgcolor black
set headoutlinecolor black
set remotebgcolor #ffddaa
set tagbgcolor yellow
set tagfgcolor black
set tagoutlinecolor black
set reflinecolor black
set filesepbgcolor #aaaaaa
set filesepfgcolor black
set linehoverbgcolor #ffff80
set linehoverfgcolor black
set linehoveroutlinecolor black
set mainheadcirclecolor yellow
set workingfilescirclecolor red
set indexcirclecolor green
set circlecolors {white blue gray blue blue}
set linkfgcolor blue
set circleoutlinecolor black
set geometry(main) 1600x829+0+42
set geometry(state) normal
set geometry(topwidth) 1600
set geometry(topheight) 472
set geometry(pwsash0) "1018 1"
set geometry(pwsash1) "1575 1"
set geometry(botwidth) 1585
set geometry(botheight) 352
set permviews {}

243
i3-config
View file

@ -1,243 +0,0 @@
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout somewhen, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
workspace 1 output LVDS-0
workspace 2 output DVI-D-0
workspace 3 output LVDS-0
workspace 4 output DVI-D-0
workspace 5 output LVDS-0
workspace 6 output DVI-D-0
workspace 7 output LVDS-0
workspace 8 output DVI-D-0
workspace 9 output LVDS-0
workspace_layout tabbed
new_window none
set $mod Mod4
popup_during_fullscreen leave_fullscreen
# font for window titles. ISO 10646 = Unicode
font xft:Droid Sans Mono 8
# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod
# lock screen
bindsym $mod+l exec xscreensaver-command -lock
# start a terminal
bindsym $mod+Return exec i3-sensible-terminal
# start kate
bindsym $mod+k exec kate -u
# start dolphin
# bindsym $mod+e exec dolphin
bindsym $mod+Print exec ksnapshot
bindsym $mod+Shift+Print exec ksnapshot -c
# music control
bindsym $mod+p exec clementine --play-pause
bindsym $mod+i exec clementine --show-osd
bindsym $mod+n exec clementine --next
# kill focused window
bindsym $mod+Shift+Q kill
# start dmenu (a program launcher)
#Colors: S_base2 <--> S_base01 (Selected is vice versa)
bindsym $mod+d exec dmenu_run -sb '#586e75' -sf '#eee8d5' -nb '#eee8d5' -nf '#586e75'
# change focus
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
bindsym $mod+t border toggle
# move focused window
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
# split in horizontal orientation
bindsym $mod+h split h
# split in vertical orientation
bindsym $mod+v split v
# enter fullscreen mode for the focused container
bindsym $mod+f fullscreen
# change container layout (stacked, tabbed, default)
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout default
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
# change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle
# focus the parent container
bindsym $mod+a focus parent
# switch to workspace
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
bindsym $mod+4 workspace 4
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
bindsym $mod+7 workspace 7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
# move focused container to workspace
bindsym $mod+Shift+exclam move workspace 1
bindsym $mod+Shift+quotedbl move workspace 2
bindsym $mod+Shift+section move workspace 3
bindsym $mod+Shift+dollar move workspace 4
bindsym $mod+Shift+percent move workspace 5
bindsym $mod+Shift+ampersand move workspace 6
bindsym $mod+Shift+slash move workspace 7
bindsym $mod+Shift+parenleft move workspace 8
bindsym $mod+Shift+parenright move workspace 9
bindsym $mod+Shift+equal move workspace 10
# reload the configuration file
bindsym $mod+Shift+C reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+R restart
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+E exit
# suspend, hibernate
bindsym $mod+Shift+S exec dbus-send --system --print-reply --dest="org.freedesktop.UPower" '/org/freedesktop/UPower' 'org.freedesktop.UPower.Suspend'
bindsym $mod+Shift+H exec dbus-send --system --print-reply --dest="org.freedesktop.UPower" '/org/freedesktop/UPower' 'org.freedesktop.UPower.Hibernate'
# resize window (you can also use the mouse for that)
mode "resize" {
# These bindings trigger as soon as you enter the resize mode
# They resize the border in the direction you pressed, e.g.
# when pressing left, the window is resized so that it has
# more space on its left
bindsym Left resize shrink left 10 px or 10 ppt
bindsym Shift+Left resize grow left 10 px or 10 ppt
bindsym Down resize shrink down 10 px or 10 ppt
bindsym Shift+Down resize grow down 10 px or 10 ppt
bindsym Up resize shrink up 10 px or 10 ppt
bindsym Shift+Up resize grow up 10 px or 10 ppt
bindsym Right resize shrink right 10 px or 10 ppt
bindsym Shift+Right resize grow right 10 px or 10 ppt
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
# Floating windows
for_window [title="KCalc"] floating enable;
for_window [class="Qalculate"] floating enable;
# Color settings
# The point here is to keep the hue difference between text and background constant,
# even if the colors change.
# We get this by using only fixed pairs:
# S_base03 <--> S_base0
# S_base02 <--> S_base1
# S_base01 <--> S_base2
# S_base00 <--> S_base3
# class border backgr. text indicator
# S_base03 S_base3 S_base03 S_base0
client.focused #002b36 #839496 #002b36 #839496
# S_base03 S_base01 S_base2 S_base01
client.focused_inactive #002b36 #586e75 #eee8d5 #586e75
# S_base03 S_base03 S_base0 S_base03
client.unfocused #002b36 #002b36 #839496 #002b36
# S_base03 S_red S_base03 S_base03
client.urgent #002b36 #dc322f #002b36 #dc322f
# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
bar {
output LVDS-0
#mode hide
#hidden_state hide
tray_output LVDS-0
status_command i3status
position top
colors {
# background is S_base03
background #002b36
# statusline is S_base0
statusline #839496
# separator is S_base00
separator #657b83
# settings copied from color.x scheme above, keep in sync!
# border backgr. text
focused_workspace #002b36 #839496 #002b36
active_workspace #002b36 #586e75 #eee8d5
inactive_workspace #002b36 #002b36 #839496
urgent_workspace #002b36 #dc322f #002b36
}
}
bar {
output DVI-D-0
mode hide
tray_output none
hidden_state hide
position top
# Color settings see bar for LVDS1
colors {
background #002b36
statusline #839496
separator #657b83
focused_workspace #002b36 #839496 #002b36
active_workspace #002b36 #586e75 #eee8d5
inactive_workspace #002b36 #002b36 #839496
urgent_workspace #002b36 #dc322f #002b36
}
}
exec startup.sh

View file

@ -1,7 +0,0 @@
{
"navigator": "ff",
"kmail" : "mail",
"kontact" : "mail",
"x-terminal-emulator" : "t",
"quasselclient" : "quassel"
}

View file

@ -1,80 +0,0 @@
general {
colors = true
# Good is S_cyan
color_good = "#2aa198"
# Degraded is S_green
color_degraded = "#859900"
# Bad is S_red
color_bad ="#dc322f"
interval = 5
}
#order += "ipv6"
order += "disk /"
#order += "run_watch DHCP"
#order += "run_watch VPN"
order += "wireless wlan0"
order += "ethernet eth0"
order += "battery 0"
order += "battery 1"
order += "cpu_temperature 0"
order += "cpu_temperature 1"
order += "load"
order += "time"
wireless wlan0 {
format_up = "W: (%quality at %essid) %ip"
format_down = ""
}
ethernet eth0 {
# if you use %speed, i3status requires root privileges
format_up = "E: %ip (%speed)"
format_down = ""
}
battery 0 {
format = "%status %percentage %remaining"
path = "/sys/class/power_supply/CMB1/uevent"
format_down = ""
}
battery 1 {
format = "%status %percentage %remaining"
path = "/sys/class/power_supply/CMB2/uevent"
format_down = ""
}
run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}
run_watch VPN {
pidfile = "/var/run/vpnc/pid"
}
time {
format = "%Y-%m-%d %H:%M:%S"
}
load {
format = "%1min %5min %15min"
}
cpu_temperature 0 {
format = "T1: %degrees °C"
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp2_input"
}
cpu_temperature 1 {
format = "T2: %degrees °C"
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp4_input"
}
disk "/" {
format = "%free"
}

136
mc.ini
View file

@ -1,136 +0,0 @@
[Midnight-Commander]
verbose=1
pause_after_run=1
shell_patterns=1
auto_save_setup=1
preallocate_space=0
auto_menu=0
use_internal_view=1
use_internal_edit=0
clear_before_exec=1
confirm_delete=1
confirm_overwrite=1
confirm_execute=0
confirm_history_cleanup=1
confirm_exit=1
confirm_directory_hotlist_delete=1
safe_delete=0
mouse_repeat_rate=100
double_click_speed=250
use_8th_bit_as_meta=0
confirm_view_dir=0
mouse_move_pages_viewer=1
mouse_close_dialog=0
fast_refresh=0
drop_menus=0
wrap_mode=1
old_esc_mode=0
old_esc_mode_timeout=1000000
cd_symlinks=1
show_all_if_ambiguous=0
max_dirt_limit=10
use_file_to_guess_type=1
alternate_plus_minus=0
only_leading_plus_minus=1
show_output_starts_shell=0
xtree_mode=0
num_history_items_recorded=60
file_op_compute_totals=1
classic_progressbar=1
vfs_timeout=60
ftpfs_directory_timeout=900
use_netrc=1
ftpfs_retry_seconds=30
ftpfs_always_use_proxy=0
ftpfs_use_passive_connections=1
ftpfs_use_passive_connections_over_proxy=0
ftpfs_use_unix_list_options=1
ftpfs_first_cd_then_ls=1
fish_directory_timeout=900
editor_tab_spacing=8
editor_word_wrap_line_length=72
editor_fill_tabs_with_spaces=0
editor_return_does_auto_indent=0
editor_backspace_through_tabs=0
editor_fake_half_tabs=1
editor_option_save_mode=0
editor_option_save_position=1
editor_option_auto_para_formatting=0
editor_option_typewriter_wrap=0
editor_edit_confirm_save=1
editor_syntax_highlighting=1
editor_persistent_selections=1
editor_cursor_beyond_eol=0
editor_visible_tabs=1
editor_visible_spaces=1
editor_line_state=0
editor_simple_statusbar=0
editor_check_new_line=0
editor_show_right_margin=0
editor_group_undo=0
nice_rotating_dash=1
mcview_remember_file_position=0
auto_fill_mkdir_name=1
copymove_persistent_attr=1
select_flags=6
editor_backup_extension=~
mcview_eof=
ignore_ftp_chattr_errors=true
keymap=mc.keymap
skin=default
[Layout]
message_visible=1
keybar_visible=1
xterm_title=1
output_lines=0
command_prompt=1
menubar_visible=1
free_space=1
horizontal_split=0
vertical_equal=1
left_panel_size=113
horizontal_equal=1
top_panel_size=1
[Misc]
timeformat_recent=%d. %b %H:%M
timeformat_old=%d. %b %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=lightgray,green:normal=green,default:selected=white,gray:marked=yellow,default:markselect=yellow,gray:directory=blue,default:executable=brightgreen,default:link=cyan,default:device=brightmagenta,default:special=lightgray,default:errors=red,default:reverse=green,default:gauge=green,default:input=white,gray:dnormal=green,gray:dfocus=brightgreen,gray:dhotnormal=cyan,gray:dhotfocus=brightcyan,gray:menu=green,default:menuhot=cyan,default:menusel=green,gray:menuhotsel=cyan,default:helpnormal=cyan,default:editnormal=green,default:editbold=blue,default:editmarked=gray,blue:stalelink=red,default
[Panels]
show_mini_info=true
kilobyte_si=false
mix_all_files=false
show_backups=true
show_dot_files=false
fast_reload=false
fast_reload_msg_shown=false
mark_moves_down=true
reverse_files_only=true
auto_save_setup_panels=true
navigate_with_arrows=false
panel_scroll_pages=true
mouse_move_pages=true
filetype_mode=true
permission_mode=true
torben_fj_mode=false
quick_search_mode=2
simple_swap=false
[Panelize]
Modified git files=git ls-files --modified
Nach dem Patchen nach Rejects suchen=find . -name \\*.rej -print
Suche SUID und SGID Programme=find . \\( \\( -perm -04000 -a -perm +011 \\) -o \\( -perm -02000 -a -perm +01 \\) \\) -print
Suche nach *.orig nach dem Patchen=find . -name \\*.orig -print

View file

@ -1,6 +0,0 @@
dockapp_mode simple
window_type dock
kludges force_icons_size
icon_size 16
skip_taskbar true
transparent true