aboutsummaryrefslogtreecommitdiff
path: root/awesome
diff options
context:
space:
mode:
authorBlista Kanjo2021-11-03 18:29:59 -0400
committerBlista Kanjo2021-11-03 18:29:59 -0400
commitf52b6f401f4495c615cec573d1850c2a2e977b5b (patch)
tree3d8bf7336ef8e808fcb205cdba67718c3b8f22ed /awesome
parentdd58a8b37ef6f39382b12680a7c1068114ce3d96 (diff)
now using gedit… yes gedit as the default editor
Diffstat (limited to 'awesome')
-rw-r--r--awesome/rc.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index cc90514..edec9f9 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -28,7 +28,7 @@ beautiful.init(theme_path)
-- This is used later as the default terminal and editor to run.
terminal = "qterminal"
-editor = os.getenv("EDITOR") or "xed"
+editor = os.getenv("EDITOR") or "gedit"
editor_cmd = terminal .. " -e " .. editor
-- Default modkey.
@@ -65,7 +65,7 @@ myawesomemenu = {
{ "show hotkeys", function() hotkeys_popup.show_help(nil, awful.screen.focused()) end },
-- { "manual", terminal .. " -e man awesome" },
{ "config file", editor .. " " .. awesome.conffile },
- { "picom config", function() awful.spawn.easy_async_with_shell("sh -c 'xed $HOME/.config/picom.conf'") end },
+ { "picom config", function() awful.spawn.easy_async_with_shell("sh -c 'gedit $HOME/.config/picom.conf'") end },
{ "change wallpaper", function() awful.spawn.easy_async_with_shell("sh -c 'nitrogen'") end },
{ "xdg_menu refresh", function() awful.spawn.easy_async_with_shell("sh -c 'xdg_menu --format awesome --root-menu /etc/xdg/menus/arch-applications.menu > ~/.config/awesome/xdgmenu.lua'") end, },
{ "refresh", awesome.restart },