some tweaks
This commit is contained in:
parent
b549289841
commit
721cec2397
3 changed files with 20 additions and 19 deletions
36
rc.lua
36
rc.lua
|
@ -511,7 +511,7 @@ awful.rules.rules = {
|
||||||
buttons = clientbuttons
|
buttons = clientbuttons
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
-- Floating only rules class based rules
|
-- Floating only rules:
|
||||||
{
|
{
|
||||||
rule_any = {
|
rule_any = {
|
||||||
class = {
|
class = {
|
||||||
|
@ -533,7 +533,7 @@ awful.rules.rules = {
|
||||||
floating = true
|
floating = true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
-- Mostly floating rules, we want to keep them separately since it's easier to manage
|
-- Per app rules
|
||||||
-- firefox
|
-- firefox
|
||||||
{
|
{
|
||||||
rule = { class = 'Firefox' },
|
rule = { class = 'Firefox' },
|
||||||
|
@ -558,7 +558,20 @@ awful.rules.rules = {
|
||||||
properties = { size_hints_honor = false }
|
properties = { size_hints_honor = false }
|
||||||
},
|
},
|
||||||
-- Specific desktops rules: place windows only on specific tags by default
|
-- Specific desktops rules: place windows only on specific tags by default
|
||||||
-- steam
|
-- tag 2: games = maximized
|
||||||
|
{
|
||||||
|
rule_any = {
|
||||||
|
instance = {
|
||||||
|
'BaldursGate',
|
||||||
|
'IcewindDale'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
properties = {
|
||||||
|
border_width = 0,
|
||||||
|
tag = tags[1][2]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
-- tag 4: steam
|
||||||
{
|
{
|
||||||
rule_any = {
|
rule_any = {
|
||||||
class = { 'Steam' },
|
class = { 'Steam' },
|
||||||
|
@ -566,7 +579,7 @@ awful.rules.rules = {
|
||||||
},
|
},
|
||||||
properties = { tag = tags[1][4] }
|
properties = { tag = tags[1][4] }
|
||||||
},
|
},
|
||||||
-- games = float / fullscreen
|
-- tag 5: mostly games, float / fullscreen
|
||||||
{
|
{
|
||||||
rule_any = {
|
rule_any = {
|
||||||
class = {
|
class = {
|
||||||
|
@ -599,19 +612,6 @@ awful.rules.rules = {
|
||||||
floating = true,
|
floating = true,
|
||||||
tag = tags[1][5]
|
tag = tags[1][5]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
-- games = maximized
|
|
||||||
{
|
|
||||||
rule_any = {
|
|
||||||
instance = {
|
|
||||||
'BGEE.exe',
|
|
||||||
'Baldur.exe'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
properties = {
|
|
||||||
border_width = 0,
|
|
||||||
tag = tags[1][2]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
-- }}}
|
-- }}}
|
||||||
|
@ -624,7 +624,7 @@ client.connect_signal(
|
||||||
c:connect_signal(
|
c:connect_signal(
|
||||||
'mouse::enter',
|
'mouse::enter',
|
||||||
function(c)
|
function(c)
|
||||||
if awful.layout.get(c.screen) ~= layouts.float[1] and awful.client.focus.filter(c) then
|
if awful.layout.get(c.screen) ~= layouts.magnifier[1] and awful.client.focus.filter(c) then
|
||||||
client.focus = c
|
client.focus = c
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# tmux.conf
|
# vim: ft=tmux
|
||||||
bind r source-file /home/von/.tmux.conf\; display-message "Config reloaded."
|
bind r source-file /home/von/.tmux.conf\; display-message "Config reloaded."
|
||||||
bind s split-window -v
|
bind s split-window -v
|
||||||
bind v split-window -h
|
bind v split-window -h
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
! vim: ft=xdefaults
|
||||||
! {{{ xft and cursor configuration
|
! {{{ xft and cursor configuration
|
||||||
Xcursor.theme: Ardoise_opaque
|
Xcursor.theme: Ardoise_opaque
|
||||||
Xft.antialias: true
|
Xft.antialias: true
|
||||||
|
|
Loading…
Reference in a new issue