From 2e2ab20022875fdcda969b39cb25c3f39cb98b24 Mon Sep 17 00:00:00 2001 From: streetturtle Date: Sat, 30 Mar 2019 18:29:01 -0400 Subject: add run shell video --- run-shell/run-shell.lua | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) (limited to 'run-shell/run-shell.lua') diff --git a/run-shell/run-shell.lua b/run-shell/run-shell.lua index c2a2e29..5ab4065 100644 --- a/run-shell/run-shell.lua +++ b/run-shell/run-shell.lua @@ -14,6 +14,8 @@ local gears = require("gears") local completion = require("awful.completion") local naughty = require("naughty") +local HOME = os.getenv("HOME") + local run_shell = awful.widget.prompt() local widget = {} @@ -38,21 +40,41 @@ function widget.new() image = '/usr/share/icons/Arc/actions/symbolic/system-shutdown-symbolic.svg', widget = wibox.widget.imagebox, resize = false, + opacity = 0.2, set_hover = function(self, opacity) - naughty.notify{text = tostring(self.opacity)} self.opacity = opacity self.image = '/usr/share/icons/Arc/actions/symbolic/system-shutdown-symbolic.svg' end } + local turnoff_notification + suspend_button:connect_signal("mouse::enter", function() + turnoff_notification = naughty.notify{ + icon = HOME .. "/.config/awesome/nichosi.png", + icon_size=100, + title = "Huston, we have a problem", + text = "You're about to turn off your computer", + timeout = 5, hover_timeout = 0.5, + position = "bottom_right", + bg = "#F06060", + fg = "#EEE9EF", + width = 300, + } suspend_button:set_hover(1) end) suspend_button:connect_signal("mouse::leave", function() + naughty.destroy(turnoff_notification) suspend_button:set_hover(0.2) end) + suspend_button:connect_signal("button::press", function(_,_,_,button) + if (button == 1) then + awful.spawn("shutdown now") + end + end) + w:setup { { { @@ -90,16 +112,6 @@ function widget.new() { { suspend_button, - { - image = '/usr/share/icons/Arc/actions/symbolic/application-exit-symbolic.svg', - resize = false, - widget = wibox.widget.imagebox, - }, - { - image = '/usr/share/icons/Arc/actions/symbolic/application-exit-symbolic.svg', - resize = false, - widget = wibox.widget.imagebox - }, layout = wibox.layout.fixed.horizontal }, valign = 'bottom', -- cgit v1.2.3