summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-07i3: add configuration file for i3Olivier Gayot
Since WMII is deprecated, we finally follow the advise of switching to i3 window manager. Some configuration has been added so that it behaves like WMII as much as possible. Here is a list of some features that have been configured: * default keys to move / resize / focus windows * handling of control volume keys * names of the tags * default layout for new containers (stacked instead of split) * ... Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2015-01-06install: use submodules to handle foreign repositoriesOlivier Gayot
it is probably safer to use git submodules to handle foreign repositories like VimperatorrcBuilder Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2015-01-06wmii: Replaced tag namesOlivier Gayot
Since spaces are not printed in the trayer bar of WMII, we use (dot) instead. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-23README: fix incorrect use of mardown listOlivier Gayot
We need a blank line before a list of items (beginning with '*') so that markdown actually interprets that as a list. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-23README: describe the installation process in the README fileOlivier Gayot
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22vimperator: get vimperatorrc from duskCoder/VimperatorrcBuilderOlivier Gayot
duskCoder/VimperatorrcBuilder has been added as a submodule. The install.sh script will first clone the repositoy and then use python to generate the .vimperatorrc file. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22background: fix format issue for background imageOlivier Gayot
in $HOME/.wmii/wmiirc, we used to load the background image this way: $ feh --bg-fill ~/Images/background.jpg However, if we want to load another Image format (such as png, gif, ...), we need to change the extension in this file. To be more portable, we removed the extension since feh is capable of guessing the type of file. Now, we just have an image (or a [sym]link to an image) named ~/Image/background for it to be loaded when X starts. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22xresources: update the configuration fileOlivier Gayot
the version of this file was outdated. There was only configuration for xterm but I don't use it anymore. configuration for urxvt has been added. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22install: add execution permission to the scriptOlivier Gayot
we need to be able to chdir to the repository and just run ./install.sh mode changed to 755 to avoid this issue. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22install: remove useless lineOlivier Gayot
shopt is not used anymore since we do use GNU find instead. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22xresources: add the .Xdefault fileOlivier Gayot
this file configures the X resources such as urxvt in our case. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22install: create the installation scriptOlivier Gayot
usage: ./install.sh user [sudo] ./install.sh global Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22vim: add the vimrc fileOlivier Gayot
We should beware that this file is supposed to source a file related to the distribution. e.g. in this case: source archlinux.vim we might need to process that name or remove it completely Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22git: add the configuration file for gitOlivier Gayot
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22wmii: add configuration file for wmiiOlivier Gayot
some content in the configuration script might not check for dependencies. We should have to fix it later. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22shell: do not issue errors if we cannot source the git-prompt fileOlivier Gayot
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22shell: read from .zsh/* in the home directoryOlivier Gayot
we used to read every file located in .zsh/ directory. however, if the cwd is not $HOME/, then the shell will try to source different files. fixed by replacing .zsh/* by $ZDOTDIR/.zsh/* or $HOME/.zsh/* Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2014-12-22Added configuration files for zshOlivier Gayot
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>