diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2022-12-28 08:54:21 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2022-12-28 08:54:21 +0100 |
commit | c26e1fe77831d4e7803a411d6d2e6f8844c1e8d8 (patch) | |
tree | 3b5ffb438432995ecd8541303fabcf8347f46572 | |
parent | 1559f1511f746cd1f9528338e3d23cd869de173a (diff) |
US keyboard layout, disabled status bar
m--------- | .vim/bundle/Vundle.vim | 0 | ||||
-rw-r--r-- | .vimrc | 1 | ||||
-rw-r--r-- | .xinitrc | 2 | ||||
-rw-r--r-- | .xkb/desktop | 4 | ||||
-rw-r--r-- | .xkb/symbols/us-custom | 13 |
5 files changed, 17 insertions, 3 deletions
diff --git a/.vim/bundle/Vundle.vim b/.vim/bundle/Vundle.vim -Subproject 9a38216a1c0c597f978d73547d37681fc689c90 +Subproject b255382d6242d7ea3877bf059d2934125e0c4d9 @@ -21,6 +21,7 @@ Plugin 'veloce/vim-aldmeris' Plugin 'tpope/vim-fugitive' Plugin 'ctrlpvim/ctrlp.vim' + " All of your Plugins must be added before the following line call vundle#end() " required filetype plugin indent on " required @@ -16,7 +16,7 @@ fi initcfg -dwm-statusbar & +#dwm-statusbar & exec dwm #exec openbox-session diff --git a/.xkb/desktop b/.xkb/desktop index 54792c0..a8b5808 100644 --- a/.xkb/desktop +++ b/.xkb/desktop @@ -3,6 +3,6 @@ xkb_keymap { xkb_keycodes { include "evdev+aliases(qwerty)" }; xkb_types { include "complete" }; xkb_compat { include "complete" }; - xkb_symbols { include "pc+ch+inet(evdev)+ch-custom(desktop)" }; - xkb_geometry { include "pc(pc105)" }; + xkb_symbols { include "pc+us+inet(evdev)+us-custom(desktop)" }; + xkb_geometry { include "pc(pc104)" }; }; diff --git a/.xkb/symbols/us-custom b/.xkb/symbols/us-custom new file mode 100644 index 0000000..98da5ac --- /dev/null +++ b/.xkb/symbols/us-custom @@ -0,0 +1,13 @@ +default partial alphanumeric_keys +xkb_symbols "basic" { + key <CAPS> { [ Escape ] }; + key <PRSC> { [ Insert ] }; +}; + +partial alphanumeric_keys +xkb_symbols "desktop" { + include "us-custom(basic)" + + key <MENU> { [ Super_R ] }; +}; + |