[Newm] Switch back to rofi, some visual changes
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Set explicit refresh rate for primary screen Set blur and transparency for rofi Disable animation on focus change
This commit is contained in:
parent
9017ccf4ef
commit
febef82271
@ -78,8 +78,14 @@ pywm = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
outputs = [
|
outputs = [
|
||||||
{"name": "eDP-1"},
|
{"name": "eDP-1", "mHz": 120_000},
|
||||||
{"name": "HDMI-A-1", "pos_x": -2560, "pos_y": 0, "width": 2560, "height": 1080},
|
{
|
||||||
|
"name": "HDMI-A-1",
|
||||||
|
"pos_x": -2560,
|
||||||
|
"pos_y": 0,
|
||||||
|
"width": 2560,
|
||||||
|
"height": 1080,
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
wob_runner = WobRunner("wob -a bottom -M 100")
|
wob_runner = WobRunner("wob -a bottom -M 100")
|
||||||
@ -95,7 +101,7 @@ def synchronous_update() -> None:
|
|||||||
|
|
||||||
|
|
||||||
def rules(m_view):
|
def rules(m_view):
|
||||||
blur_apps = ("kitty", "wofi", "emacsclient", "emacs")
|
blur_apps = ("kitty", "wofi", "rofi", "emacsclient", "emacs")
|
||||||
float_apps = ("Rofi", "xfce-polkit")
|
float_apps = ("Rofi", "xfce-polkit")
|
||||||
nonfloat_apps = ("discord",)
|
nonfloat_apps = ("discord",)
|
||||||
if debug_windows:
|
if debug_windows:
|
||||||
@ -115,8 +121,8 @@ def rules(m_view):
|
|||||||
pactl = PaCtl(0, wob_runner)
|
pactl = PaCtl(0, wob_runner)
|
||||||
|
|
||||||
focus = {
|
focus = {
|
||||||
"animate_on_change": True,
|
"animate_on_change": False,
|
||||||
"distance": 4,
|
"distance": 6,
|
||||||
"width": 2,
|
"width": 2,
|
||||||
"color": "#5E81ACDD",
|
"color": "#5E81ACDD",
|
||||||
"anim_time": 0.1,
|
"anim_time": 0.1,
|
||||||
@ -135,7 +141,7 @@ leader: str = "L-Spc "
|
|||||||
def key_bindings(layout: Layout) -> list[tuple[str, Callable[[], Any]]]:
|
def key_bindings(layout: Layout) -> list[tuple[str, Callable[[], Any]]]:
|
||||||
return [
|
return [
|
||||||
("L-Return", lambda: os.system("kitty &")),
|
("L-Return", lambda: os.system("kitty &")),
|
||||||
(leader + "a r", lambda: run_shell("wofi --show drun")),
|
(leader + "a r", lambda: run_shell("rofi -combi-modi drun,window -show combi")),
|
||||||
(leader + "a b", lambda: run_shell("firefox")),
|
(leader + "a b", lambda: run_shell("firefox")),
|
||||||
(leader + "a d", lambda: run_shell("discord")),
|
(leader + "a d", lambda: run_shell("discord")),
|
||||||
(leader + "a e", lambda: run_shell("emacsclient -c")),
|
(leader + "a e", lambda: run_shell("emacsclient -c")),
|
||||||
|
Loading…
Reference in New Issue
Block a user