From 1895071b65aa44015ad09cf5b08566bfd9a18a34 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 10 Apr 2014 17:00:29 +0200 Subject: [PATCH 01/16] temporarily log xscreensaver --- .config/awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 71ec9e1..4a28c5e 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -491,7 +491,7 @@ globalkeys = awful.util.table.join(globalkeys, awful.key({ cmdmodkey }, "o", function () awful.util.spawn("okular") end), awful.key({ cmdmodkey }, "l", function () awful.util.spawn("libreoffice") end), awful.key({ cmdmodkey }, "i", function () awful.util.spawn(terminal .. " -title irc -name irc -e mosh -- irc screen -dr irc") end), - awful.key({ cmdmodkey }, "x", function () awful.util.spawn_with_shell("/sbin/start-stop-daemon --start --background --exec /usr/bin/xscreensaver; xscreensaver-command -lock") end), + awful.key({ cmdmodkey }, "x", function () awful.util.spawn_with_shell("/sbin/start-stop-daemon --start --background --exec /usr/bin/xscreensaver -- -no-capture-stderr -log ~/.tmp/xscreensaver.log; xscreensaver-command -lock") end), awful.key({ cmdmodkey, "Shift" }, "x", function () awful.util.spawn("xscreensaver-command -exit") end), awful.key(nil, "XF86ScreenSaver", function () awful.util.spawn("xset dpms force off") end) ) -- 2.39.2 From 3549383d58191b5f90cec0573fe0b0f1249fe15f Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 8 Sep 2014 22:46:53 +0200 Subject: [PATCH 02/16] manipulate mixer relatively, not absolutely --- .config/awesome/rc.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 4a28c5e..8cd9f1e 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -456,10 +456,10 @@ cmdmodkey = "Mod3" -- xmms2 & sound globalkeys = awful.util.table.join(globalkeys, - awful.key({ cmdmodkey }, "Prior", function () awful.util.spawn("amixer set Master 2+") end), - awful.key({ cmdmodkey }, "Next", function () awful.util.spawn("amixer set Master 2-") end), - awful.key({ cmdmodkey }, "Up", function () awful.util.spawn("amixer set PCM 2+") end), - awful.key({ cmdmodkey }, "Down", function () awful.util.spawn("amixer set PCM 2-") end), + awful.key({ cmdmodkey }, "Prior", function () awful.util.spawn("amixer set Master 2%+") end), + awful.key({ cmdmodkey }, "Next", function () awful.util.spawn("amixer set Master 2%-") end), + awful.key({ cmdmodkey }, "Up", function () awful.util.spawn("amixer set PCM 2%+") end), + awful.key({ cmdmodkey }, "Down", function () awful.util.spawn("amixer set PCM 2%-") end), awful.key({ cmdmodkey }, "Home", function () awful.util.spawn("amixer set Mic toggle") end), awful.key({ cmdmodkey }, "End", function () awful.util.spawn("amixer set Master toggle") end), awful.key({ cmdmodkey }, "Left", function () awful.util.spawn("nyxmms2 prev") end), -- 2.39.2 From 653a3b0751ed4c8b75246aca6320177a686604d0 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 24 Sep 2014 12:57:34 +0200 Subject: [PATCH 03/16] cleanup --- .config/awesome/rc.lua | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 8cd9f1e..b181c1a 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -401,10 +401,6 @@ clientkeys = awful.util.table.join( c.maximized_horizontal = false c.maximized_vertical = false end - -- b = c.maximized_horizontal + c.maximized_vertical * 2 - -- b = (b + 1) % 4 - -- c.maximized_horizontal = b & 1 - -- c.maximized_vertical = (b & 2) >>1 end) ) @@ -519,12 +515,6 @@ awful.rules.rules = { properties = { tag = tags[screen.count() == 3 and 1 or screen.count()][9], switchtotag = false, floating = false } }, { rule = { class = "Icedove", instance = "Mail" }, properties = { tag = tags[screen.count() == 3 and 1 or screen.count()][8], switchtotag = false, floating = false } }, --- { rule = { class = "Iceweasel", instance = "Dialog" }, --- properties = { floating = true } }, - -- { rule = { name = "OpenOffice.org" }, - -- properties = { switchtotag = true, floating = true, maximized_vertical = true, maximized_horizontal = true, callback = awful.placement.no_offscreen } }, - -- { rule = { name = "Okular" }, --- properties = { switchtotag = true, floating = true, maximized_vertical = true, maximized_horizontal = true, callback = awful.placement.no_offscreen } }, } -- }}} -- 2.39.2 From 962a305081af59428b24facd1b17fcf82b057d09 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 24 Sep 2014 12:57:41 +0200 Subject: [PATCH 04/16] reformat --- .config/awesome/rc.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index b181c1a..43c61a2 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -506,7 +506,8 @@ awful.rules.rules = { floating = true, keys = clientkeys, buttons = clientbuttons }, - callback = awful.placement.centered }, + callback = awful.placement.centered + }, { rule = { class = "URxvt" }, properties = { floating = false } }, { rule = { class = "URxvt", instance = "irc" }, -- 2.39.2 From 02e533f0246bf670c8bb5cc14f78df14a53533fe Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 6 Oct 2014 13:46:11 +0200 Subject: [PATCH 05/16] screen key-bindings --- .config/awesome/rc.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 43c61a2..c6f2149 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -373,7 +373,13 @@ globalkeys = awful.util.table.join( mypromptbox[mouse.screen].widget, awful.util.eval, nil, awful.util.getdir("cache") .. "/history_eval") - end) + end), + awful.key({ modkey }, "F1", function () awful.screen.focus(3) end), + awful.key({ modkey }, "F2", function () awful.screen.focus(1) end), + awful.key({ modkey }, "F3", function () awful.screen.focus(2) end), + awful.key({ modkey }, "F1", function () awful.client.movetoscreen(c, 3) end), + awful.key({ modkey }, "F2", function () awful.client.movetoscreen(c, 1) end), + awful.key({ modkey }, "F3", function () awful.client.movetoscreen(c, 2) end) ) clientkeys = awful.util.table.join( @@ -381,7 +387,8 @@ clientkeys = awful.util.table.join( awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end), awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ), awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end), - awful.key({ modkey, }, "o", awful.client.movetoscreen ), + awful.key({ modkey, }, "o", function (c) awful.client.movetoscreen(c, c.screen-1) end), + awful.key({ modkey, }, "p", function (c) awful.client.movetoscreen(c, c.screen+1) end), awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end), awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end), awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end), -- 2.39.2 From 73a0107035f0a4474469dd94648941435ca4fff3 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 6 Oct 2014 13:47:20 +0200 Subject: [PATCH 06/16] fix moving functions --- .config/awesome/rc.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index c6f2149..2f94d46 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -377,9 +377,9 @@ globalkeys = awful.util.table.join( awful.key({ modkey }, "F1", function () awful.screen.focus(3) end), awful.key({ modkey }, "F2", function () awful.screen.focus(1) end), awful.key({ modkey }, "F3", function () awful.screen.focus(2) end), - awful.key({ modkey }, "F1", function () awful.client.movetoscreen(c, 3) end), - awful.key({ modkey }, "F2", function () awful.client.movetoscreen(c, 1) end), - awful.key({ modkey }, "F3", function () awful.client.movetoscreen(c, 2) end) + awful.key({ modkey, "Shift" }, "F1", function () awful.client.movetoscreen(c, 3) end), + awful.key({ modkey, "Shift" }, "F2", function () awful.client.movetoscreen(c, 1) end), + awful.key({ modkey, "Shift" }, "F3", function () awful.client.movetoscreen(c, 2) end) ) clientkeys = awful.util.table.join( -- 2.39.2 From 532afa7568659345b49db45c127268fa9f17771c Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Tue, 7 Oct 2014 10:19:24 +0200 Subject: [PATCH 07/16] fix screen ordering --- .config/awesome/rc.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 2f94d46..5981911 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -374,12 +374,12 @@ globalkeys = awful.util.table.join( awful.util.eval, nil, awful.util.getdir("cache") .. "/history_eval") end), - awful.key({ modkey }, "F1", function () awful.screen.focus(3) end), - awful.key({ modkey }, "F2", function () awful.screen.focus(1) end), - awful.key({ modkey }, "F3", function () awful.screen.focus(2) end), - awful.key({ modkey, "Shift" }, "F1", function () awful.client.movetoscreen(c, 3) end), - awful.key({ modkey, "Shift" }, "F2", function () awful.client.movetoscreen(c, 1) end), - awful.key({ modkey, "Shift" }, "F3", function () awful.client.movetoscreen(c, 2) end) + awful.key({ modkey }, "F1", function () awful.screen.focus(1) end), + awful.key({ modkey }, "F2", function () awful.screen.focus(2) end), + awful.key({ modkey }, "F3", function () awful.screen.focus(3) end), + awful.key({ modkey, "Shift" }, "F1", function () awful.client.movetoscreen(c, 1) end), + awful.key({ modkey, "Shift" }, "F2", function () awful.client.movetoscreen(c, 2) end), + awful.key({ modkey, "Shift" }, "F3", function () awful.client.movetoscreen(c, 3) end) ) clientkeys = awful.util.table.join( -- 2.39.2 From bbd633fd5c7b3fe2bd38c29ee4d28ba7bbd6b3c3 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 30 Oct 2014 12:30:05 +0100 Subject: [PATCH 08/16] inhibit mosh xterm title --- .config/awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 5981911..9dfc717 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -493,7 +493,7 @@ globalkeys = awful.util.table.join(globalkeys, awful.key({ cmdmodkey }, "g", function () awful.util.spawn("gscan2pdf") end), awful.key({ cmdmodkey }, "o", function () awful.util.spawn("okular") end), awful.key({ cmdmodkey }, "l", function () awful.util.spawn("libreoffice") end), - awful.key({ cmdmodkey }, "i", function () awful.util.spawn(terminal .. " -title irc -name irc -e mosh -- irc screen -dr irc") end), + awful.key({ cmdmodkey }, "i", function () awful.util.spawn(terminal .. " -title irc -name irc -e env MOSH_TITLE_NOPREFIX=true mosh -- irc screen -dr irc") end), awful.key({ cmdmodkey }, "x", function () awful.util.spawn_with_shell("/sbin/start-stop-daemon --start --background --exec /usr/bin/xscreensaver -- -no-capture-stderr -log ~/.tmp/xscreensaver.log; xscreensaver-command -lock") end), awful.key({ cmdmodkey, "Shift" }, "x", function () awful.util.spawn("xscreensaver-command -exit") end), awful.key(nil, "XF86ScreenSaver", function () awful.util.spawn("xset dpms force off") end) -- 2.39.2 From 51c2a451d33d8257ae40eaa816c793f889032b43 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 10 Mar 2016 11:11:20 +0100 Subject: [PATCH 09/16] layout changes for tags 5/6 --- .config/awesome/rc.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 9dfc717..7cb0048 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -113,8 +113,8 @@ tags.settings = { { name = "2", layout = layouts[1] }, { name = "3", layout = layouts[1] }, { name = "4", layout = layouts[1] }, - { name = "5", layout = layouts[5] }, - { name = "6", layout = layouts[3] }, + { name = "5", layout = layouts[1] }, + { name = "6", layout = layouts[1] }, { name = "7", layout = layouts[3] }, { name = "8", layout = layouts[3] }, { name = "9", layout = layouts[3] }, -- 2.39.2 From 4a34e360c73960f4f93320490ed3c7ab7b5007fa Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 10 Mar 2016 11:11:56 +0100 Subject: [PATCH 10/16] screen swapping keymappings fixed --- .config/awesome/rc.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 7cb0048..b281d34 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -319,10 +319,8 @@ globalkeys = awful.util.table.join( awful.key({ modkey, }, "Left", awful.tag.viewprev ), awful.key({ modkey, }, "Right", awful.tag.viewnext ), awful.key({ modkey, }, "Escape", awful.tag.history.restore), - awful.key({ modkey, "Shift" }, "Right", function () awful.screen.focus( 1) end), - awful.key({ modkey, "Shift" }, "Left", function () awful.screen.focus(-1) end), - awful.key({ modkey, "Shift" }, "h", awful.tag.viewprev ), - awful.key({ modkey, "Shift" }, "l", awful.tag.viewnext ), + awful.key({ modkey, "Shift" }, "Right", function () awful.screen.focus_relative( 1) end), + awful.key({ modkey, "Shift" }, "Left", function () awful.screen.focus_relative(-1) end), awful.key({ modkey, }, "k", function () -- 2.39.2 From 13f8fda788cf16ea7269b4e9b4868cd06195577f Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 10 Mar 2016 11:12:16 +0100 Subject: [PATCH 11/16] volume keys now do pulseaudio --- .config/awesome/rc.lua | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index b281d34..a56aab0 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -457,12 +457,10 @@ cmdmodkey = "Mod3" -- xmms2 & sound globalkeys = awful.util.table.join(globalkeys, - awful.key({ cmdmodkey }, "Prior", function () awful.util.spawn("amixer set Master 2%+") end), - awful.key({ cmdmodkey }, "Next", function () awful.util.spawn("amixer set Master 2%-") end), - awful.key({ cmdmodkey }, "Up", function () awful.util.spawn("amixer set PCM 2%+") end), - awful.key({ cmdmodkey }, "Down", function () awful.util.spawn("amixer set PCM 2%-") end), - awful.key({ cmdmodkey }, "Home", function () awful.util.spawn("amixer set Mic toggle") end), - awful.key({ cmdmodkey }, "End", function () awful.util.spawn("amixer set Master toggle") end), + awful.key({ cmdmodkey }, "Prior", function () awful.util.spawn("pactl set-sink-volume 0 +2%") end), + awful.key({ cmdmodkey }, "Next", function () awful.util.spawn("pactl set-sink-volume 0 -2%") end), + awful.key({ cmdmodkey }, "Home", function () awful.util.spawn("pactl set-source-mute 1 toggle") end), + awful.key({ cmdmodkey }, "End", function () awful.util.spawn("pactl set-sink-mute 0 toggle") end), awful.key({ cmdmodkey }, "Left", function () awful.util.spawn("nyxmms2 prev") end), awful.key({ cmdmodkey }, "Right", function () awful.util.spawn("nyxmms2 next") end), awful.key({ cmdmodkey }, "space", function () awful.util.spawn("nyxmms2 toggle") end), -- 2.39.2 From a7301841f71c6aa49f3157db805fce3c3a979927 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 10 Mar 2016 11:12:35 +0100 Subject: [PATCH 12/16] virt-manager shortcut --- .config/awesome/rc.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index a56aab0..48192b7 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -487,6 +487,7 @@ globalkeys = awful.util.table.join(globalkeys, awful.key({ cmdmodkey }, "c", function () awful.util.spawn("icedove") end), awful.key({ cmdmodkey }, "r", function () mypromptbox[mouse.screen]:run() end), awful.key({ cmdmodkey }, "g", function () awful.util.spawn("gscan2pdf") end), + awful.key({ cmdmodkey }, "v", function () awful.util.spawn("virt-manager") end), awful.key({ cmdmodkey }, "o", function () awful.util.spawn("okular") end), awful.key({ cmdmodkey }, "l", function () awful.util.spawn("libreoffice") end), awful.key({ cmdmodkey }, "i", function () awful.util.spawn(terminal .. " -title irc -name irc -e env MOSH_TITLE_NOPREFIX=true mosh -- irc screen -dr irc") end), -- 2.39.2 From 4bd59a2ac8d593943f118ed4a9acdac9f0125568 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 10 Mar 2016 11:12:44 +0100 Subject: [PATCH 13/16] connect to irc-host --- .config/awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 48192b7..3695b61 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -490,7 +490,7 @@ globalkeys = awful.util.table.join(globalkeys, awful.key({ cmdmodkey }, "v", function () awful.util.spawn("virt-manager") end), awful.key({ cmdmodkey }, "o", function () awful.util.spawn("okular") end), awful.key({ cmdmodkey }, "l", function () awful.util.spawn("libreoffice") end), - awful.key({ cmdmodkey }, "i", function () awful.util.spawn(terminal .. " -title irc -name irc -e env MOSH_TITLE_NOPREFIX=true mosh -- irc screen -dr irc") end), + awful.key({ cmdmodkey }, "i", function () awful.util.spawn(terminal .. " -title irc -name irc -e env MOSH_TITLE_NOPREFIX=true mosh -- irc-host screen -dr irc") end), awful.key({ cmdmodkey }, "x", function () awful.util.spawn_with_shell("/sbin/start-stop-daemon --start --background --exec /usr/bin/xscreensaver -- -no-capture-stderr -log ~/.tmp/xscreensaver.log; xscreensaver-command -lock") end), awful.key({ cmdmodkey, "Shift" }, "x", function () awful.util.spawn("xscreensaver-command -exit") end), awful.key(nil, "XF86ScreenSaver", function () awful.util.spawn("xset dpms force off") end) -- 2.39.2 From 9bed174f669ab4dabc460f748e5325e37bc406a7 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 10 Mar 2016 11:12:56 +0100 Subject: [PATCH 14/16] fix chromium to web tag --- .config/awesome/rc.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 3695b61..e630208 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -520,6 +520,8 @@ awful.rules.rules = { properties = { tag = tags[screen.count() == 3 and 1 or screen.count()][9], switchtotag = false, floating = false } }, { rule = { class = "Icedove", instance = "Mail" }, properties = { tag = tags[screen.count() == 3 and 1 or screen.count()][8], switchtotag = false, floating = false } }, + { rule = { class = "chromium" }, + properties = { tag = tags[screen.count() == 3 and 1 or screen.count()][9], switchtotag = false, floating = false } }, } -- }}} -- 2.39.2 From 51da084705fe51d2c877c0f8ccd65ff4992e4ae7 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 10 Mar 2016 11:13:11 +0100 Subject: [PATCH 15/16] suspend apps without focus --- .config/awesome/rc.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index e630208..18209c0 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -576,6 +576,27 @@ function hook_battery() end -- }}} +-- from https://blog.mister-muffin.de/2014/11/07/automatically-suspending-cpu-hungry-applications/ +client.add_signal("focus", function(c) + if c.class == "Iceweasel" or c.class == "chromium" or c.class == "Icedove" then + awful.util.spawn("kill -CONT " .. c.pid) + end +end) +client.add_signal("unfocus", function(c) + local capi = { timer = timer } + if c.class == "Iceweasel" or c.class == "chromium" or c.class == "Icedove" then + local timer_stop = capi.timer { timeout = 10 } + local send_sigstop = function () + timer_stop:stop() + if client.focus.pid ~= c.pid then + awful.util.spawn("kill -STOP " .. c.pid) + end + end + timer_stop:add_signal("timeout", send_sigstop) + timer_stop:start() + end +end) + -- {{{ Statusbar battery -- function get_acpibatt() -- 2.39.2 From af39d38d11abfaefda1f22480ee8d1d3654620cb Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 10 Mar 2016 11:13:22 +0100 Subject: [PATCH 16/16] java awt reparenting hack --- .xsession.d/50-awesomewm | 1 + 1 file changed, 1 insertion(+) diff --git a/.xsession.d/50-awesomewm b/.xsession.d/50-awesomewm index 9c48f8b..a322305 100644 --- a/.xsession.d/50-awesomewm +++ b/.xsession.d/50-awesomewm @@ -1,3 +1,4 @@ +export _JAVA_AWT_WM_NONREPARENTING=1 if [ -x ~/code/awesome/awesome ]; then ~/code/awesome/awesome elif [[ -x =awesome ]]; then -- 2.39.2