aboutsummaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authortoni <matzeton@googlemail.com>2014-07-07 14:44:30 +0200
committertoni <matzeton@googlemail.com>2014-07-07 14:44:30 +0200
commit8d431770f90997c21005ecde942fd0f9317413ec (patch)
treeb345ed2d458d82655a8f10e1e198b653318f3d80 /configs
parent29eecdc76456e6db739f1b7fcca9e9608ef2911e (diff)
some X related stuff
Diffstat (limited to 'configs')
-rw-r--r--configs/Xdefaults5
-rw-r--r--configs/bashrc101
-rw-r--r--configs/xinitrc16
-rw-r--r--configs/xinitrc_dwm17
4 files changed, 133 insertions, 6 deletions
diff --git a/configs/Xdefaults b/configs/Xdefaults
new file mode 100644
index 0000000..6d0c417
--- /dev/null
+++ b/configs/Xdefaults
@@ -0,0 +1,5 @@
+xterm*Background: black
+xterm*Foreground: green
+xterm*cursorColor: LightBlue
+xterm*pointerShape: arrow
+xterm*pointerColor: blue
diff --git a/configs/bashrc b/configs/bashrc
new file mode 100644
index 0000000..94b2f02
--- /dev/null
+++ b/configs/bashrc
@@ -0,0 +1,101 @@
+# ~/.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 in the history. See bash(1) for more options
+# don't overwrite GNU Midnight Commander's setting of `ignorespace'.
+HISTCONTROL=$HISTCONTROL${HISTCONTROL+:}ignoredups
+# ... or force ignoredups and ignorespace
+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)
+
+# check the window size after each command and, if necessary,
+# update the values of LINES and COLUMNS.
+shopt -s checkwinsize
+
+# 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
+
+alias ssh-htwk='ssh -C -X kain.imn.htwk-leipzig.de -l tuhlig'
+# 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 grep='grep --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 ~/.bash_aliases ]; then
+ . ~/.bash_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
+
+export PATH="${PATH}:$HOME/bin"
+DEBEMAIL="matzeton@googlemail.com"
+DEBFULLNAME="Toni Uhlig"
+export DEBEMAIL DEBFULLNAME
+export CLICOLOR=TRUE
diff --git a/configs/xinitrc b/configs/xinitrc
index e834bc5..2099baa 100644
--- a/configs/xinitrc
+++ b/configs/xinitrc
@@ -1,19 +1,23 @@
#!/bin/sh
-PATH=${PATH}:~/.cabal/bin
-
-unclutter -idle 1 -root & # hide cursor when unused
+# hide cursor when unused
+unclutter -idle 3 -root &
# Turn CapsLock into Control
xmodmap -e "clear lock" -e "keycode 66 = Control_R" -e "add Control = Control_R"
-# minimal GTK+ traybar
-trayer --edge bottom --align left --SetDockType true --SetPartialStrut false --expand true --width 10 --height 25 &
-
# starting gpg daemon
gpg-agent --daemon --use-standard-socket
# activating xscreensaver
xscreensaver -nosplash &
+# akonadi server (kde4.* compat)
+if [ -x /usr/bin/akonadi_agent_server ]; then
+ akonadi_agent_server &
+fi
+
+# activate trickled network bandwith control
+trickled
+
exec ck-launch-session dbus-launch xmonad
diff --git a/configs/xinitrc_dwm b/configs/xinitrc_dwm
new file mode 100644
index 0000000..32dd3a6
--- /dev/null
+++ b/configs/xinitrc_dwm
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+unclutter -root & # hide cursor when unused
+
+# Turn Super/Windows key into XF86Launch1
+xmodmap -e "keycode 133 = XF86Launch1"
+
+# Turn CapsLock into Control
+xmodmap -e "clear lock" -e "keycode 66 = Control_R" -e "add Control = Control_R"
+
+# Show memory use, volume %, battery % and time in status bar
+while xsetroot -name "$(free -m | awk '/cache:/ { print $3"MB" }') Vol:$(amixer get Master | tail -1 | awk '{ print $5 }' | tr -d '[]') $(date +%R) $(df -h | sed -e 's/[[:space:]]\([[:digit:]]\{1,2\}%\) \(\/home\|\/boot\|\/$\)/MP: \2 USG: \1/' | grep -oE '[[:space:]]MP:(.*)$' | tr '\n' ' ') Upt:$(uptime | sed -e 's/,[[:space:]]*[[:digit:]]*[[:space:]]users,.*//')"
+do
+ sleep 1
+done &
+
+exec ck-launch-session dbus-launch dwm