This commit is contained in:
Stephan Raabe 2023-04-11 15:42:44 +02:00
parent dcb159a86d
commit f7c2f7d8c9
2 changed files with 16 additions and 13 deletions

View File

@ -190,12 +190,7 @@ layouts = [
# layout.TreeTab(), # layout.TreeTab(),
# layout.VerticalTile(), # layout.VerticalTile(),
# layout.Zoomy(), # layout.Zoomy(),
layout.Floating( layout.Floating()
border_width=3,
single_border_width=3,
border_focus=ColorC,
border_normal="#FFFFFF",
)
] ]
# -------------------------------------------------------- # --------------------------------------------------------
@ -304,7 +299,7 @@ else:
] ]
# -------------------------------------------------------- # --------------------------------------------------------
# Drag floating layouts. # Drag floating layouts
# -------------------------------------------------------- # --------------------------------------------------------
mouse = [ mouse = [
@ -314,14 +309,13 @@ mouse = [
] ]
# -------------------------------------------------------- # --------------------------------------------------------
# General Setup # Define floating layouts
# -------------------------------------------------------- # --------------------------------------------------------
dgroups_app_rules = [] # type: list
follow_mouse_focus = True
bring_front_click = False
cursor_warp = False
floating_layout = layout.Floating( floating_layout = layout.Floating(
border_width=3,
border_focus=ColorC,
border_normal="FFFFFF",
float_rules=[ float_rules=[
# Run the utility of `xprop` to see the wm class and name of an X client. # Run the utility of `xprop` to see the wm class and name of an X client.
*layout.Floating.default_float_rules, *layout.Floating.default_float_rules,
@ -333,6 +327,15 @@ floating_layout = layout.Floating(
Match(title="pinentry"), # GPG key password entry Match(title="pinentry"), # GPG key password entry
] ]
) )
# --------------------------------------------------------
# General Setup
# --------------------------------------------------------
dgroups_app_rules = [] # type: list
follow_mouse_focus = True
bring_front_click = False
cursor_warp = False
auto_fullscreen = True auto_fullscreen = True
focus_on_window_activation = "smart" focus_on_window_activation = "smart"
reconfigure_screens = True reconfigure_screens = True

View File

@ -10,7 +10,7 @@
# ----------------------------------------------------- # -----------------------------------------------------
# Select wallpaper # Select wallpaper
selected=$(ls -1 ~/wallpaper | grep "jpg" | rofi -dmenu -p "Select the wallpaper") selected=$(ls -1 ~/wallpaper | grep "jpg" | rofi -dmenu -p "Wallpapers")
if [ "$selected" ]; then if [ "$selected" ]; then