This commit is contained in:
Daniel Bauer
2018-09-14 11:56:02 +02:00
parent e0b529b91a
commit a807f5eb1e
45 changed files with 53 additions and 14 deletions

View File

@@ -213,9 +213,9 @@ exec thunar --daemon
exec --no-startup-id xautolock -time 5 -locker 'i3lock -i ~/.lockscreen/`ls /home/bauer/lockscreens | shuf -n 1` -t -f'
# Pulse Audio controls
bindsym --release XF86AudioLowerVolume exec --no-startup-id amixer -D pulse sset Master 5%- #decrease sound volume
bindsym --release XF86AudioRaiseVolume exec --no-startup-id amixer -D pulse sset Master 5%+ #increase sound volume
bindsym --release XF86AudioMute exec --no-startup-id amixer -D pulse sset Master toggle # mute sound
bindsym --release XF86AudioLowerVolume exec --no-startup-id amixer sset Master 5%- #decrease sound volume
bindsym --release XF86AudioRaiseVolume exec --no-startup-id amixer sset Master 5%+ #increase sound volume
bindsym --release XF86AudioMute exec --no-startup-id amixer sset Master toggle # mute sound
# Sreen brightness controls
bindsym XF86MonBrightnessUp exec xbacklight -inc 20 # increase screen brightness

BIN
.config/polybar/.config.swp Normal file

Binary file not shown.

View File

@@ -199,15 +199,16 @@ format-prefix-foreground = ${colors.foreground-alt}
format-underline = #f90000
label =  %percentage%%
format = <label> <ramp-coreload>
ramp-coreload-0 =
ramp-coreload-1 =
ramp-coreload-2 =
ramp-coreload-3 =
ramp-coreload-4 =
ramp-coreload-5 =
ramp-coreload-6 =
ramp-coreload-7 =
ramp-coreload-0 = -
ramp-coreload-1 = 1
ramp-coreload-2 = 2
ramp-coreload-3 = 3
ramp-coreload-4 = 4
ramp-coreload-5 = 5
ramp-coreload-6 = 6
ramp-coreload-7 = 7
ramp-coreload-8 = 8
ramp-coreload-9 = 9
[module/memory]
type = internal/memory

5
.gitconfig Normal file
View File

@@ -0,0 +1,5 @@
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Daniel Bauer
email = bauer@cbs.tu-darmstadt.de

1
.pymol/.pymol Symbolic link
View File

@@ -0,0 +1 @@
/home/bauer/dotfiles/.pymol

1
.vim/.vim Symbolic link
View File

@@ -0,0 +1 @@
/home/bauer/dotfiles/.vim

1
.zim Submodule

Submodule .zim added at 872926c84c

View File

@@ -25,7 +25,20 @@ zssh_ids=(id_ed25519)
#
# Set your desired prompt here
#
POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='black'
POWERLEVEL9K_DIR_DEFAULT_FOREGROUND='009'
POWERLEVEL9K_CONTEXT_DEFAULT_BACKGROUND='black'
POWERLEVEL9K_CONTEXT_DEFAULT_FOREGROUND='009'
DEFAULT_USER=bauer
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir vcs anaconda)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(background_jobs status time)
# Anaconda
POWERLEVEL9K_ANACONDA_RIGHT_DELIMITER='>'
POWERLEVEL9K_ANACONDA_LEFT_DELIMITER='<'
POWERLEVEL9K_ANACONDA_BACKGROUND='24'
POWERLEVEL9K_ANACONDA_FOREGROUND='111'
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
zprompt_theme='powerlevel9k'
#zprompt_theme='eriner'

View File

@@ -22,9 +22,14 @@ export BROWSER="firefox"
export PAGER='most'
source ~/.zshrc_functions
source ~/.zshrc_local
if [ -f $HOME/.zshrc_local ];
then
source $HOME/.zshrc_local
fi
# alter path
export PATH="/opt/pymol:${PATH}"
export PATH="$HOME/anaconda3/bin:${PATH}" # binaries
export PATH="$HOME/bin:${PATH}" # binaries
export PATH="$HOME/scripts:${PATH}" # scripts
export PATH="$HOME/.local/bin:${PATH}" # python executeables

12
dotfiles_setup.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
dir="${HOME}/dotfiles"
conffolder="${HOME}/.config"
dotfiles=("matplotlibrc" ".pymolrc" ".pymol" ".vimrc" ".vim" ".vimrc" ".zshrc" ".zshrc_functions" ".zim" ".zimrc" ".gitconfig")
for dotfile in "${dotfiles[@]}"; do
ln -sf $dir/$dotfile ${HOME}/${dotfile}
done
# fonts
mkdir -p .config/fontconfig
ln -sf $dir/.config/fontconfig/fonts.conf $conffolder/fontconfig/fonts.conf