dotfiles

My dotfiles.
Log | Files | Refs | LICENSE

commit 4713bd874335c224d14ccfae0eadf933809efefa
parent 3705a9fe821dcbf7d8b38089b05f165ce25075ae
Author: Ryan Jeffrey <ryan@ryanmj.xyz>
Date:   Thu,  1 Oct 2020 02:54:04 -0700

SXHKD s-i fix

SXHKD used to conflict with my emacs keybind (s-i) which I use to
switch buffers. This is no longer the case.

Diffstat:
M.config/sxhkd/sxhkdrc | 13++++++++-----
MREADME.org | 8++++++--
2 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc @@ -46,7 +46,7 @@ super + g # # set the window state -super + {t,shift + t,s,f} +super + {t,shift + t,shift + space,f} bspc node -t {tiled,pseudo_tiled,floating,fullscreen} # set the node flags @@ -78,10 +78,13 @@ super + {grave,Tab} bspc {node,desktop} -f last # focus the older or newer node in the focus history -super + {o,i} - bspc wm -h off; \ - bspc node {older,newer} -f; \ - bspc wm -h on +# TODO +# super + {o,i} +# bspc wm -h off; \ +# bspc node {older,newer} -f; \ +# bspc wm -h on + + # focus or send to the given desktop super + {_,shift + }{1_-9,0} diff --git a/README.org b/README.org @@ -1,12 +1,14 @@ #+TITLE: Dotfiles #+AUTHOR: Ryan Jeffrey -My dotfiles. My current setup is based on Arch Linux (which I use, btw), zsh for my shell, emacs as my text editor/userland replacement, and i3 as my WM. +My dotfiles. My current setup is based on Arch Linux (which I use, btw), zsh for my shell, emacs as my text editor/userland replacement, and bspwm as my WM. I recommend symlinking the files to their proper place in order to use them: #+begin_src shell +# From this repo's directory ln -s $(pwd)/.emacs.d ~/.emacs.d +ln -s $(pwd)/.config ~/.config #+end_src ..for example. @@ -14,6 +16,8 @@ ln -s $(pwd)/.emacs.d ~/.emacs.d Some of the files, such as the crontabs, need to be installed manually. * .zshrc -~.config/zsh~. Remember to change the pathnames depending on the username (ie /home/<name>) +~.config/zsh~. This needs to be symlinked to ~~/.zshrc.~ Remember to change the pathnames depending on the username (ie /home/<name>). * Emacs ~init.el~ loads ~lisp/config.org~, which contains most of the configuration. My email and RSS configs are private. + +