diff options
| author | Blista Kanjo | 2022-01-05 04:57:34 -0500 |
|---|---|---|
| committer | Blista Kanjo | 2022-01-05 04:57:34 -0500 |
| commit | 4c3f58aff4ad2ebce83f838d7ef116ae27de53f3 (patch) | |
| tree | 4cc60203c99b0b7714465ebb9bd43a1b85cbca34 | |
| parent | a14bba772e510a46bf27db91ae558852f6e8d625 (diff) | |
changed default editor to xed
| -rw-r--r-- | awesome/rc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index be0986b..d6bfebb 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 "gvim" +editor = os.getenv("EDITOR") or "xed" 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 'gvim $HOME/.config/picom.conf'") end }, + { "picom config", function() awful.spawn.easy_async_with_shell("sh -c 'xed $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 }, |
