Merge branch 'master' of github.com:whatevsz/dotfiles
This commit is contained in:
@@ -23,6 +23,7 @@ Structure
|
||||
---------
|
||||
|
||||
- ``scripts/`` - Scripts, e.g. for setting up the configuration.
|
||||
- ``setup/`` - Setup information, e.g. a list of packages.
|
||||
- ``MAPPING`` - File that contains mapping directives.
|
||||
- All other folders - These are the folders that contain the configuration files.
|
||||
|
||||
|
||||
12
i3/i3/config
12
i3/i3/config
@@ -217,10 +217,16 @@ for_window [class="^Firefox$"] border none
|
||||
|
||||
|
||||
# Start the wallpaper changer.
|
||||
exec --no-startup-id $path_wallchanger $wallpaper_directory $wallpaper_interval > $wallpaper_logfile
|
||||
exec --no-startup-id $path_wallchanger $wallpaper_directory $wallpaper_interval > $wallpaper_logfile &
|
||||
|
||||
# Start wicd in tray
|
||||
exec --no-startup-id wicd-gtk --tray
|
||||
# Start wicd in tray.
|
||||
exec --no-startup-id wicd-gtk --tray &
|
||||
|
||||
# Start color temperature changer.
|
||||
exec --no-startup-id gtk-redshift -l 49.5:11 -t 6500:4500 &
|
||||
|
||||
# Start pulseaudio control applet.
|
||||
exec --no-startup-id pa-applet &
|
||||
|
||||
# Start conky
|
||||
#exec --no-startup-id conky
|
||||
|
||||
157
setup/list
Normal file
157
setup/list
Normal file
@@ -0,0 +1,157 @@
|
||||
# de / wm
|
||||
### internet
|
||||
# torrents
|
||||
deluge
|
||||
# instant messaging
|
||||
pidgin
|
||||
skype
|
||||
# irc
|
||||
xchat
|
||||
# email
|
||||
thunderbird
|
||||
# network manager
|
||||
wicd-gtk
|
||||
# browser
|
||||
firefox
|
||||
flashplugin
|
||||
# ftp
|
||||
filezilla
|
||||
# online storage
|
||||
dropbox
|
||||
# ssh
|
||||
putty
|
||||
|
||||
### multimedia
|
||||
# image viewers
|
||||
geeqie
|
||||
feh
|
||||
# image manipulation
|
||||
gimp
|
||||
imagemagick
|
||||
pinta
|
||||
# audio players
|
||||
mpg123
|
||||
clementine
|
||||
spotify
|
||||
# audio tagger
|
||||
easytag
|
||||
# video players
|
||||
vlc
|
||||
|
||||
### utilities
|
||||
# package management
|
||||
pacaur
|
||||
# compression
|
||||
p7zip
|
||||
# file managers
|
||||
thunar
|
||||
thunar-archive-plugin
|
||||
thunar-dropbox
|
||||
thunar-media-tags-plugin
|
||||
# taskbars / docks
|
||||
docky
|
||||
conky
|
||||
dzen2
|
||||
|
||||
### documents
|
||||
# pdf reader
|
||||
epdfview
|
||||
# office suites
|
||||
libreoffice
|
||||
|
||||
### security
|
||||
# network
|
||||
ntop
|
||||
wireshark-cli
|
||||
wireshark-gtk
|
||||
# backup programs
|
||||
rsnapshot
|
||||
# encryption
|
||||
gnupg
|
||||
truecrypt
|
||||
encfs
|
||||
|
||||
### console
|
||||
# shells
|
||||
zsh
|
||||
# terminal emulators
|
||||
terminator
|
||||
rxvt-unicode
|
||||
# eyecandy
|
||||
archey
|
||||
|
||||
# text editors
|
||||
mousepad
|
||||
gvim
|
||||
gvim
|
||||
|
||||
# development
|
||||
git
|
||||
bzr
|
||||
eclipse-cdt
|
||||
eclipse-egit
|
||||
eclipse-pydev
|
||||
|
||||
# programming languages
|
||||
python2-xdg
|
||||
python-docs
|
||||
python-pip
|
||||
python-pylint
|
||||
|
||||
### desktop environments
|
||||
# i3
|
||||
i3-wm
|
||||
i3lock
|
||||
i3status
|
||||
dmenu
|
||||
# xfce
|
||||
xfce4
|
||||
xfce4-goodies
|
||||
|
||||
### system
|
||||
# audio stack
|
||||
alsa-utils
|
||||
pulseaudio-alsa
|
||||
pa-applet-git
|
||||
redshift
|
||||
|
||||
# kernel / drivers
|
||||
broadcom-wl-ck-atom
|
||||
xf86-input-synaptics
|
||||
xf86-video-fbdev
|
||||
xf86-video-intel
|
||||
xf86-video-modesetting
|
||||
xf86-video-vesa
|
||||
|
||||
# console
|
||||
htop
|
||||
powertop
|
||||
xorg-xev
|
||||
xorg-xfontsel
|
||||
xorg-xkill
|
||||
xorg-xprop
|
||||
stress
|
||||
|
||||
### system
|
||||
# login manager
|
||||
slim
|
||||
archlinux-themes-slim
|
||||
# disks / filesystems
|
||||
sshfs
|
||||
gptfdisk
|
||||
# kernel
|
||||
linux-ck-atom-headers
|
||||
linux-headers
|
||||
# booting
|
||||
grub
|
||||
# misc
|
||||
ntp
|
||||
|
||||
### appearance
|
||||
# X
|
||||
lxappearance
|
||||
oxygen-gtk2
|
||||
oxygen-gtk3
|
||||
xcursor-vanilla-dmz
|
||||
# fonts
|
||||
ttf-microsoft-consolas
|
||||
43
vim/vimrc
43
vim/vimrc
@@ -32,11 +32,32 @@ set rtp+=~/.vim/bundle/vundle/
|
||||
call vundle#rc()
|
||||
Bundle 'gmarik/vundle'
|
||||
|
||||
filetype plugin indent on
|
||||
|
||||
" solarized color theme
|
||||
Bundle 'altercation/vim-colors-solarized'
|
||||
|
||||
" display the undo history in a graph
|
||||
Bundle 'mbbill/undotree'
|
||||
|
||||
" tree explorer plugin
|
||||
Bundle 'scrooloose/nerdtree'
|
||||
|
||||
" quoting/parenthesizing made simple
|
||||
Bundle 'tpope/vim-surround'
|
||||
|
||||
" better commenting
|
||||
Bundle 'scrooloose/nerdcommenter'
|
||||
|
||||
" nice auto completion
|
||||
Bundle 'Shougo/neocomplcache.vim'
|
||||
|
||||
" nice text alignment
|
||||
Bundle 'godlygeek/tabular'
|
||||
|
||||
" status line plugin
|
||||
Bundle 'bling/vim-airline'
|
||||
|
||||
filetype plugin indent on
|
||||
|
||||
" setup for the solarized color theme
|
||||
set background=dark
|
||||
let g:solarized_termcolors=16
|
||||
@@ -46,6 +67,22 @@ let g:solarized_visibility="normal"
|
||||
syntax enable
|
||||
colorscheme solarized
|
||||
|
||||
set clipboard=unnamed " enable copying into the clipboard
|
||||
|
||||
|
||||
set esckeys " enable cursor keys in insert mode
|
||||
set ttimeoutlen=50
|
||||
|
||||
set modeline " respect modelines in files
|
||||
set modelines=4
|
||||
|
||||
set laststatus=2 " always show a status line
|
||||
|
||||
"set nostartofline " do not reset the cursor into the first
|
||||
" " column when moving
|
||||
|
||||
set shortmess=rti " shorten some messages
|
||||
|
||||
set mouse=a " enable mouse support
|
||||
set mousehide " hide the mouse when typing
|
||||
|
||||
@@ -115,7 +152,7 @@ set smarttab " use shiftwidth when tabbing in front of
|
||||
" a line instead of tabsstop/softtabstop
|
||||
|
||||
set undofile " use an undo file
|
||||
set undodir=~/.vim/backups " store undo files in a fixed directory
|
||||
set undodir=~/.vim/undo " store undo files in a fixed directory
|
||||
" instead of the current directory
|
||||
set undolevels=1000 " undo a maximum of 1000 changes
|
||||
set undoreload=10000 " save the whole buffer for undo when
|
||||
|
||||
Reference in New Issue
Block a user