add wallpaper, and random changes
This commit is contained in:
@@ -21,7 +21,7 @@ return {
|
||||
-- associated with each tag/workspace
|
||||
browser = 'env brave',
|
||||
editor = 'code', -- gui text editor
|
||||
social = 'telegram-desktop',
|
||||
social = 'schildichat-desktop',
|
||||
game = rofi_command,
|
||||
files = 'nautilus',
|
||||
music = 'clementine',
|
||||
@@ -44,9 +44,9 @@ return {
|
||||
'xfce4-power-manager', -- Power manager
|
||||
'pamac-tray',
|
||||
-- 'ibus-daemon --xim --daemonize', -- Ibus daemon for keyboard
|
||||
'scream-start', -- scream audio sink
|
||||
-- 'flameshot', -- screenshots
|
||||
-- 'numlockx on', -- enable numlock
|
||||
'syncthing -no-browser',
|
||||
'/usr/lib/xfce-polkit/xfce-polkit & eval $(gnome-keyring-daemon -s --components=pkcs11,secrets,ssh,gpg)', -- credential manager
|
||||
'blueman-tray', -- bluetooth tray
|
||||
--'copyq',
|
||||
@@ -56,7 +56,6 @@ return {
|
||||
-- '/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 &")',
|
||||
'keepassxc',
|
||||
'kdeconnect-indicator',
|
||||
'planner',
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -152,8 +152,8 @@ awful.key({modkey, 'Control'}, 'n', function()
|
||||
end
|
||||
end, {description = 'restore minimized', group = 'client'}),
|
||||
-- Dropdown application
|
||||
awful.key({modkey}, 'z', function() _G.toggle_quake() end,
|
||||
{description = 'dropdown application', group = 'launcher'}),
|
||||
--[[awful.key({modkey}, 'z', function() _G.toggle_quake() end,
|
||||
{description = 'dropdown application', group = 'launcher'}),]]
|
||||
-- Widgets popups
|
||||
--[[awful.key(
|
||||
{altkey},
|
||||
@@ -177,23 +177,23 @@ awful.key({modkey}, 'z', function() _G.toggle_quake() end,
|
||||
),--]]
|
||||
-- Brightness
|
||||
awful.key({}, 'XF86MonBrightnessUp',
|
||||
function() awful.spawn('xbacklight -inc 10') end,
|
||||
function() awful.spawn('xbacklight -inc 10 -time 200 -fps 60') end,
|
||||
{description = '+10%', group = 'hotkeys'}),
|
||||
awful.key({}, 'XF86MonBrightnessDown',
|
||||
function() awful.spawn('xbacklight -dec 10') end,
|
||||
function() awful.spawn('xbacklight -dec 10 -time 200 -fps 60') end,
|
||||
{description = '-10%', group = 'hotkeys'}), -- ALSA volume control
|
||||
awful.key({}, 'XF86AudioRaiseVolume', function()
|
||||
awful.spawn.easy_async('amixer -D pulse set Master 5%+', function()
|
||||
awful.spawn.easy_async('pactl set-sink-volume @DEFAULT_SINK@ +5%', function()
|
||||
_G.update_volume()
|
||||
end)
|
||||
end, {description = 'volume up', group = 'hotkeys'}),
|
||||
awful.key({}, 'XF86AudioLowerVolume', function()
|
||||
awful.spawn.easy_async('amixer -D pulse set Master 5%-', function()
|
||||
awful.spawn.easy_async('pactl set-sink-volume @DEFAULT_SINK@ -5%', function()
|
||||
_G.update_volume()
|
||||
end)
|
||||
end, {description = 'volume down', group = 'hotkeys'}),
|
||||
awful.key({}, 'XF86AudioMute', function()
|
||||
awful.spawn('amixer -D pulse set Master 1+ toggle')
|
||||
awful.spawn('pactl set-sink-mute @DEFAULT_SINK@ toggle')
|
||||
_G.update_volume()
|
||||
end, {description = 'toggle mute', group = 'hotkeys'}),
|
||||
awful.key({}, 'XF86AudioNext', function()
|
||||
|
Reference in New Issue
Block a user