aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Javier2021-09-28 14:57:11 -0400
committerKyle Javier2021-09-28 14:57:11 -0400
commit9e2a86eb5693a3d900421e9009d50ed849cc25be (patch)
tree067347f4f7a250a8fe4dd77932969adfbd36101e
parentadd67c0fe11dd7a6a3e13441d6e4f57cf961993a (diff)
changed notification daemon, autostart, and compositor settings
-rwxr-xr-xawesome/autorun.sh5
-rw-r--r--awesome/rc.lua14
2 files changed, 11 insertions, 8 deletions
diff --git a/awesome/autorun.sh b/awesome/autorun.sh
index 98745b2..092ce0f 100755
--- a/awesome/autorun.sh
+++ b/awesome/autorun.sh
@@ -7,7 +7,9 @@ function run {
fi
}
-run picom
+setxkbmap -config compose:ralt
+
+run picom --experimental-backends
run nitrogen --restore
run volumeicon
run lxsession
@@ -32,5 +34,6 @@ run /usr/lib/gsd-power
run /usr/bin/gnome-keyring-daemon --start --components=secrets
run /usr/bin/gnome-keyring-daemon --start --components=ssh
run xfce4-power-manager
+run /usr/lib/xfce4/notifyd/xfce4-notifyd
run /home/kylert/.config/awesome/keymapper.sh
run /home/kylert/.config/awesome/xinput-daemon.sh
diff --git a/awesome/rc.lua b/awesome/rc.lua
index cc159f2..2a48b0b 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -11,7 +11,7 @@ local wibox = require("wibox")
-- Theme handling library
local beautiful = require("beautiful")
-- Notification library
-local naughty = require("naughty")
+--local naughty = require("naughty")
local menubar = require("menubar")
local hotkeys_popup = require("awful.hotkeys_popup")
-- Enable hotkeys help widget for VIM and other apps
@@ -21,11 +21,11 @@ require("awful.hotkeys_popup.keys")
-- {{{ Error handling
-- Check if awesome encountered an error during startup and fell back to
-- another config (This code will only ever execute for the fallback config)
-if awesome.startup_errors then
+--[[if awesome.startup_errors then
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors })
-end
+end]]--
-- Handle runtime errors after startup
--[[do
@@ -44,7 +44,7 @@ end]]--
-- Faux notifications to make suspend/resume of notifications look normal
-do
+--[[do
local in_error = false
awesome.connect_signal("debug::error", function (err)
-- Make sure we don't go into an endless error loop
@@ -54,7 +54,7 @@ do
naughty.notify({ title = "Notifications Resumed: All indexed notifications have been destroyed", message = "All indexed notifications have been destroyed", timeout = 1 })
in_error = false
end)
-end
+end]]--
-- }}}
@@ -279,10 +279,10 @@ globalkeys = gears.table.join(
{description = "swap with previous client by index", group = "client"}),
-- Notification Manipulation
- awful.key({ modkey, }, "n", function () naughty.suspend() end,
+ --[[awful.key({ modkey, }, "n", function () naughty.suspend() end,
{description = "Suspend Notifications", group = "awesome"}),
awful.key({ modkey, }, "m", function () naughty.toggle() naughty.resume() end,
- {description = "Resume Notifications", group = "awesome"}),
+ {description = "Resume Notifications", group = "awesome"}), ]]--
-- Unmodified Keys - Kyle