From df7b38d7ec4078346f3ca6e40fd082bebcd2ed9b Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Wed, 29 Jul 2015 22:43:14 +0200 Subject: [PATCH] TERMINAL / terminal absolute path fix --- .config/awesome/rc.lua | 2 +- .zshrc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index dbff00b0..8fa52787 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -79,7 +79,7 @@ if file_exists(name) then end -- This is used later as the default terminal and editor to run. -terminal = "uxterm -bg black -fg grey -sb -leftbar -si -bc -cr orange" +terminal = "/usr/bin/uxterm -bg black -fg grey -sb -leftbar -si -bc -cr orange" editor = "/usr/bin/vim" editor_cmd = terminal .. " -e " .. editor diff --git a/.zshrc b/.zshrc index 001179fd..60ed2ccd 100644 --- a/.zshrc +++ b/.zshrc @@ -3,7 +3,7 @@ export PATH=$HOME/bin:$PATH # Export the $EDITOR and $TERMINAL export EDITOR=/usr/bin/vim -export TERMINAL="uxterm -bg black -fg grey -sb -leftbar -si -bc -cr orange" +export TERMINAL="/usr/bin/uxterm -bg black -fg grey -sb -leftbar -si -bc -cr orange" # Fix to make JAVA applications behave more friendly in awesome. Still many JAVA apps # suck in awesome. PyCharm works perfect, Arduino does not!