Browse Source

Add default to limit notification size

master
Marcel Schneider 2 years ago
parent
commit
fc0b98ef90
No known key found for this signature in database GPG Key ID: 86027C59718EEE88
  1. 8
      awesome/rc.lua
  2. 3
      zsh/aliases.zsh

8
awesome/rc.lua

@ -51,6 +51,9 @@ end
-- Themes define colours, icons, font and wallpapers.
beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua")
-- Notifications
naughty.config.defaults['icon_size'] = 100
-- This is used later as the default terminal and editor to run.
terminal = "x-terminal-emulator"
editor = os.getenv("EDITOR") or "editor"
@ -354,6 +357,11 @@ globalkeys = gears.table.join(
-- Menubar
awful.key({ modkey }, "p", function() menubar.show() end,
{description = "show the menubar", group = "launcher"})
-- custom
--awful.key({ }, "XF86Launch8", function() awful.spawn.with_shell("xdotool key XF86AudioPrev") end,
--{description = "show the menubar", group = "launcher"}),
--awful.key({ }, "XF86Launch9", function() awful.spawn.with_shell("xdotool key XF86AudioNext") end,
--{description = "show the menubar", group = "launcher"})
)
clientkeys = gears.table.join(

3
zsh/aliases.zsh

@ -59,3 +59,6 @@ alias killbg='kill ${${(v)jobstates##*:*:}%=*}'
alias dns='dig +noall +answer any '
alias standup='cd /home/schneider/git/ && git standup -m 8 -d 7 -s'
alias fuu='fuck'
alias jswatch='/home/schneider/.yarn/bin/watch '
Loading…
Cancel
Save