summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-07-30 14:16:27 +0200
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2011-07-30 14:16:27 +0200
commit9857139ebcbb30c10e037d37b301750227142640 (patch)
tree39f7059b18c6ece34af6367fac4e31c4401dc080 /.config
parente7286b2e9e534ce75f34029639e582ef77bf8531 (diff)
downloaddotfiles-9857139ebcbb30c10e037d37b301750227142640.tar.gz
dotfiles-9857139ebcbb30c10e037d37b301750227142640.tar.bz2
dotfiles-9857139ebcbb30c10e037d37b301750227142640.zip
awesome: Use xdg-open as weblauncher
Diffstat (limited to '.config')
-rw-r--r--.config/awesome/awesome.lua2
-rw-r--r--.config/bash/bashrc3
2 files changed, 3 insertions, 2 deletions
diff --git a/.config/awesome/awesome.lua b/.config/awesome/awesome.lua
index 34b70f0..d0f4832 100644
--- a/.config/awesome/awesome.lua
+++ b/.config/awesome/awesome.lua
@@ -219,7 +219,7 @@ globalkeys = awful.util.table.join(
-- Standard program
awful.key({ modkey, }, "x", function () awful.util.spawn(terminal) end),
awful.key({ modkey, }, "a", function () awful.util.spawn(terminal .. " -e pa-sink-ctl" ) end),
- awful.key({ modkey, }, "w", function () awful.util.spawn("firefox") end),
+ awful.key({ modkey, }, "w", function () awful.util.spawn("xdg-open about:blank") end),
awful.key({ modkey, }, "p", function () awful.util.spawn("pidgin") end),
awful.key({ modkey, }, "n", function () awful.util.spawn(terminal .. " -e wicd-curses") end),
awful.key({ modkey, }, "i", function () awful.util.spawn(terminal .. " -e " .. os.getenv("HOME") .. "/.scripts/start_remote_irssi.sh") end),
diff --git a/.config/bash/bashrc b/.config/bash/bashrc
index 9b60af2..6436c37 100644
--- a/.config/bash/bashrc
+++ b/.config/bash/bashrc
@@ -1,10 +1,11 @@
[[ -d ~/.local/bin/ ]] && PATH="~/.local/bin/:$PATH"
+source ~/.config/bash/environment.sh
+
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
-source ~/.config/bash/environment.sh
source ~/.config/bash/functions.sh
source ~/.config/bash/alias.sh