Update dotfiles

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-02-01 16:54:47 +02:00
parent d23f3dd3b6
commit 9da042ec2a
5 changed files with 27 additions and 29 deletions

View File

@@ -91,7 +91,7 @@ globalkeys =
{},
"XF86AudioRaiseVolume",
function()
awful.spawn("amixer set Master 2%+", false)
awful.spawn("pactl set-sink-volume @DEFAULT_SINK@ +2%", false)
end,
{description = "volume +2%", group = "hotkeys"}
),
@@ -99,7 +99,7 @@ globalkeys =
{},
"XF86AudioLowerVolume",
function()
awful.spawn("amixer set Master 2%-", false)
awful.spawn("pactl set-sink-volume @DEFAULT_SINK@ -2%", false)
end,
{description = "volume -2%", group = "hotkeys"}
),
@@ -298,8 +298,8 @@ globalkeys =
{description = "go back", group = "tag"}
),
awful.key(
{modkey},
".",
{modkey, "Shift"},
";",
function()
awful.spawn("/usr/bin/emoji-picker")
end,

View File

@@ -36,11 +36,11 @@ awful.rules.rules = {
"GLava",
"Conky",
"eww-wrapper",
"Emulator",
"File Operation Progress",
},
role = {
}
},
properties = {floating = true},
properties = { floating = true },
},
-- Fullscreen clients
{
@@ -59,25 +59,16 @@ awful.rules.rules = {
class = {
"qalculate-gtk",
"Qalculate-gtk",
"Emulator",
},
name = {
"File Operation Progress",
},
},
properties = {
ontop = true
}
},
-- Anbox floating window size
{
rule_any = {
class = {
"anbox",
}
},
properties = {
floating = true,
height = 800,
width = 480,
},
},
-- Music Visualizer
{
rule_any = {
@@ -111,4 +102,4 @@ awful.rules.rules = {
focusable = false
}
}
}
}