summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2022-09-24 09:36:32 -0700
committerMike Crute <mike@crute.us>2022-09-24 09:36:32 -0700
commitf8dbe176bb26a58cd4ceedd84c109296ee64a535 (patch)
tree6f8de8d37522d1748ff46678605d93fcee44c48b
parent84d4a4ae2f09c6f685c4d0a8dc1b2eab2fbafeb2 (diff)
downloaddotfiles-f8dbe176bb26a58cd4ceedd84c109296ee64a535.tar.bz2
dotfiles-f8dbe176bb26a58cd4ceedd84c109296ee64a535.tar.xz
dotfiles-f8dbe176bb26a58cd4ceedd84c109296ee64a535.zip
Prefer system-installed st
-rw-r--r--.config/awesome/rc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index 75796ca..77ff553 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -53,7 +53,7 @@ beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua")
53mcrute.customize_theme() 53mcrute.customize_theme()
54 54
55-- This is used later as the default terminal and editor to run. 55-- This is used later as the default terminal and editor to run.
56terminal = os.getenv("HOME") .. "/.local/bin/st" 56terminal = "st"
57editor = os.getenv("EDITOR") or "vi" 57editor = os.getenv("EDITOR") or "vi"
58editor_cmd = terminal .. " -e " .. editor 58editor_cmd = terminal .. " -e " .. editor
59 59