From 5b37deb0913cd8c4385e6b64dd6240eeeb371ef6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Mon, 4 Dec 2017 20:39:49 +0700 Subject: [PATCH] Update 2017-12-04 --- awesome/.config/awesome/rc.lua | 11 +++++++---- meta/.profile | 1 + 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 37a650d..6fc4576 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -51,7 +51,8 @@ editor = "gvim" -- And some additional applications root_terminal = "x-terminal-emulator -e sudo -i dvtm" ranger = "x-terminal-emulator -e ranger" -python = "x-terminal-emulator -e python3" +ipython = "x-terminal-emulator -e ipython" +python3 = "x-terminal-emulator -e python3" guile = "x-terminal-emulator -e guile" mutt = "x-terminal-emulator -e mutt" cmus = "x-terminal-emulator -e cmus" @@ -368,15 +369,17 @@ globalkeys = awful.util.table.join( {description = "open a root terminal", group = "launcher"}), awful.key({modkey}, "v", function() awful.spawn(editor) end, {description = "open GVim", group = "launcher"}), - awful.key({modkey}, "b", function() awful.spawn("firefox") end, - {description = "open Firefox", group = "launcher"}), + awful.key({modkey}, "b", function() awful.spawn("luakit") end, + {description = "open Luakit", group = "launcher"}), awful.key({modkey, "Shift"}, "b", function() awful.spawn("torbrowser-launcher") end, {description = "open Tor Browser", group = "launcher"}), awful.key({modkey}, "r", function() awful.spawn(ranger) end, {description = "open ranger file manager", group = "launcher"}), - awful.key({modkey}, "p", function() awful.spawn(python) end, + awful.key({modkey}, "p", function() awful.spawn(python3) end, {description = "open Python 3 interpreter", group = "launcher"}), + awful.key({modkey, "Shift"}, "p", function() awful.spawn(ipython) end, + {description = "open Interactive Python 2", group = "launcher"}), awful.key({modkey}, "g", function() awful.spawn(guile) end, {description = "open Guile interpreter", group = "launcher"}), awful.key({modkey}, "z", function() awful.spawn("zathura") end, diff --git a/meta/.profile b/meta/.profile index 0f9da1f..ba0a210 100644 --- a/meta/.profile +++ b/meta/.profile @@ -19,3 +19,4 @@ fi PATH="$HOME/.local/bin:$HOME/.local/share/go/bin:$PATH" export GOPATH="$HOME/.local/share/go" export XMODIFIERS=@im=ibus +export WEBKIT_DISABLE_COMPOSITING_MODE=1