master
Arne Schauf 8 years ago
parent d4c2b886db
commit dfe945cece
  1. 2
      ohmyzshrc
  2. 10
      qtile_config.py
  3. 3
      vimrc

@ -57,7 +57,7 @@ ZSH_THEME="gentoo"
plugins=(tmux dirpersist virtualenvwrapper ssh-agent extract node npm) plugins=(tmux dirpersist virtualenvwrapper ssh-agent extract node npm)
zstyle ':completion:*' special-dirs true zstyle ':completion:*' special-dirs true
zstyle :omz:plugins:ssh-agent identities id_rsa zstyle :omz:plugins:ssh-agent identities id_ed25519
# User configuration # User configuration

@ -55,11 +55,7 @@ keys = [
), ),
Key( Key(
[mod, "control"], "3", [mod, "control"], "3",
lazy.spawn("sh -c " + home + "/.screenlayout/office.sh"), lazy.spawn("sh -c " + home + "/.screenlayout/3screens.sh"),
),
Key(
[mod, "control"], "4",
lazy.spawn("sh -c " + home + "/.screenlayout/home.sh"),
), ),
# Switch between windows in current stack pane # Switch between windows in current stack pane
@ -103,7 +99,7 @@ keys = [
lazy.layout.toggle_split() lazy.layout.toggle_split()
), ),
Key([mod], "Return", lazy.spawn("terminator")), Key([mod], "Return", lazy.spawn("terminator")),
Key(["control", "mod1"], "l", lazy.spawn("xautolock -locknow")), Key(["control", "mod1"], "l", lazy.spawn("i3lock -i /home/asmaps/Pictures/wallpapers/garfield.png")),
Key([], "XF86AudioMute", lazy.spawn("pavucontrol")), Key([], "XF86AudioMute", lazy.spawn("pavucontrol")),
Key([], "XF86MonBrightnessUp", lazy.spawn("xbacklight -inc 3")), Key([], "XF86MonBrightnessUp", lazy.spawn("xbacklight -inc 3")),
Key(["shift"], "XF86MonBrightnessUp", lazy.spawn("xbacklight -set 100")), Key(["shift"], "XF86MonBrightnessUp", lazy.spawn("xbacklight -set 100")),
@ -121,6 +117,7 @@ keys = [
Key([mod, "control"], "q", lazy.shutdown()), Key([mod, "control"], "q", lazy.shutdown()),
Key([mod], "r", lazy.spawncmd()), Key([mod], "r", lazy.spawncmd()),
Key([mod, "control"], "space", lazy.window.toggle_floating()), Key([mod, "control"], "space", lazy.window.toggle_floating()),
Key([], "Print", lazy.spawn("bash /home/asmaps/.take_screenshot.sh")),
] ]
groups = [Group(i) for i in "12345"] groups = [Group(i) for i in "12345"]
@ -194,6 +191,7 @@ screens = [
widget.DF(), widget.DF(),
widget.Sep(), widget.Sep(),
widget.Battery(), widget.Battery(),
widget.Battery(battery_name='BAT1'),
widget.Sep(), widget.Sep(),
widget.CurrentLayout(), widget.CurrentLayout(),
], ],

@ -81,6 +81,9 @@ autocmd BufNewFile,BufReadPost *.md set formatoptions+=t
autocmd BufNewFile,BufReadPost Dockerfile set filetype=dockerfile autocmd BufNewFile,BufReadPost Dockerfile set filetype=dockerfile
autocmd BufNewFile,BufReadPost *.yml set shiftwidth=2
autocmd BufNewFile,BufReadPost *.yml set softtabstop=2
"" Vundle "" Vundle
" Setting up Vundle - the vim plugin bundler " Setting up Vundle - the vim plugin bundler

Loading…
Cancel
Save