swaywm config and colors

This commit is contained in:
Ivan Dimitrov 2023-10-01 20:18:18 +03:00
parent b7f3fbb7e2
commit 627509fb62

View File

@ -19,11 +19,7 @@ output * bg $HOME/pic/bg.png fill
# Start your launcher
bindsym $mod+p exec $menu
# Drag floating windows by holding down $mod and left mouse button.
# Resize them with right mouse button + $mod.
# Despite the name, also works for non-floating windows.
# Change normal to inverse to use left mouse button for resizing and right
# mouse button for dragging.
# Resize windows with mod + mouse
floating_modifier $mod normal
# Reload the configuration file
@ -41,16 +37,10 @@ output * bg $HOME/pic/bg.png fill
#
# Moving around:
#
# Move your focus around
bindsym $mod+$left focus left
bindsym $mod+$down focus down
bindsym $mod+$up focus up
bindsym $mod+$right focus right
# Or use $mod+[up|down|left|right]
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
# Move the focused window with the same, but add Shift
bindsym $mod+Shift+$left move left
@ -87,23 +77,12 @@ output * bg $HOME/pic/bg.png fill
bindsym $mod+Shift+8 move container to workspace number 8
bindsym $mod+Shift+9 move container to workspace number 9
bindsym $mod+Shift+0 move container to workspace number 10
# Note: workspaces can have any name you want, not just numbers.
# We just use 1-10 as the default.
#
# Layout stuff:
#
# You can "split" the current object of your focus with
# $mod+b or $mod+v, for horizontal and vertical splits
# respectively.
bindsym $mod+b splith
bindsym $mod+v splitv
# Switch the current container between different layout styles
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# Make the current focus fullscreen
bindsym $mod+f fullscreen
# Toggle the current focus between tiling and floating mode
@ -117,39 +96,12 @@ output * bg $HOME/pic/bg.png fill
#
# Scratchpad:
#
# Sway has a "scratchpad", which is a bag of holding for windows.
# You can send windows there and get them back later.
# Move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
# If there are multiple scratchpad windows, this command cycles through them.
bindsym $mod+minus scratchpad show
#
# Resizing containers:
#
mode "resize" {
# left will shrink the containers width
# right will grow the containers width
# up will shrink the containers height
# down will grow the containers height
bindsym $left resize shrink width 10px
bindsym $down resize grow height 10px
bindsym $up resize shrink height 10px
bindsym $right resize grow width 10px
# Ditto, with arrow keys
bindsym Left resize shrink width 10px
bindsym Down resize grow height 10px
bindsym Up resize shrink height 10px
bindsym Right resize grow width 10px
# Return to default mode
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
#
# Status Bar:
@ -166,13 +118,29 @@ bar {
statusline #ffffff
background #323232
inactive_workspace #32323200 #32323200 #5c5c5c
focused_workspace #a6e3a1 #a6e3a1 #000000
}
}
#
# Window styles:
#
# Focused window
client.focused #a6e3a1 #a6e3a1 #000000 #a6e3a1
# Focused but inactive window
client.focused_inactive #333333 #5f676a #ffffff #484e50
# Unfocused window
client.unfocused #333333 #222222 #888888 #292d2e
# Urgent window
client.urgent #2f343a #900000 #ffffff #900000
input "*"
{
xkb_layout us,bg
xkb_options grp:win_space_toggle
xkb_options grp:alt_shift_toggle
xkb_variant ,phonetic
}