summaryrefslogtreecommitdiff
path: root/user
AgeCommit message (Collapse)Author
2015-08-10shell: updated PATH environment variableOlivier Gayot
Having a .local directory in the user home directory allows to have the same hierarchy as for the root directory. replaced $HOME/bin with $HOME/.local/bin Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2015-08-10wmii: do not add the local bin directory to the PATHOlivier Gayot
The PATH environment variable is supposed to be set for the user so it is removed from the configuration of wmii. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2015-03-10i3: added bindings for XF86 keysOlivier Gayot
XF86PowerOff is bound to `lock' XF86VolumeMute will toggle between the state of the Master volume (muted or not) using `amixer'. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2015-01-13i3: fix volume up command for XF86AudioRaiseVolumeOlivier Gayot
amixer was mispelled Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2015-01-07xinit: added the configuration fileOlivier Gayot
This script currently tries to do the following: - start the screensaver/screenlocker daemon - start pulseaudio daemon - set the desktop wallpaper - exectutes the window manager Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
2015-01-07zsh: added .zprofile fileOlivier Gayot
The file only contains an alias s to startx and extends the path to include the $HOME/bin directory Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
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-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-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-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-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: 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>