From 9d69429d1f9a42fd05d21da951c1c49eef31e033 Mon Sep 17 00:00:00 2001 From: Arne Schauf Date: Wed, 3 Feb 2016 10:23:28 +0100 Subject: [PATCH 1/2] change theme --- ohmyzshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ohmyzshrc b/ohmyzshrc index 3a29559..c74f50c 100644 --- a/ohmyzshrc +++ b/ohmyzshrc @@ -9,7 +9,7 @@ export ZSH=~/.oh-my-zsh # Look in ~/.oh-my-zsh/themes/ # Optionally, if you set this to "random", it'll load a random theme each # time that oh-my-zsh is loaded. -ZSH_THEME="clean" +ZSH_THEME="gentoo" # Uncomment the following line to use case-sensitive completion. # CASE_SENSITIVE="true" From 6adb8a854084ffdce54d7851b734459246c78bc1 Mon Sep 17 00:00:00 2001 From: Arne Schauf Date: Wed, 3 Feb 2016 14:04:25 +0100 Subject: [PATCH 2/2] more screenconfig --- qtile_config.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/qtile_config.py b/qtile_config.py index f6be391..6759e9d 100644 --- a/qtile_config.py +++ b/qtile_config.py @@ -25,11 +25,10 @@ # SOFTWARE. import os -import subprocess from libqtile.config import Key, Screen, Group, Drag, Click from libqtile.command import lazy -from libqtile import layout, bar, widget, hook +from libqtile import layout, bar, widget mod = "mod4" @@ -38,6 +37,10 @@ home = os.path.expanduser('~') keys = [ Key( [mod, "control"], "1", + lazy.spawn("sh -c " + home + "/.screenlayout/1screen.sh"), + ), + Key( + [mod, "control"], "2", lazy.spawn("sh -c " + home + "/.screenlayout/office.sh"), ),