Compare commits

..

3 commits

Author SHA1 Message Date
e222d242af sway: Resize with point size 2022-06-01 15:06:37 -03:00
3d3f284045 sway: n workspace 2022-06-01 15:06:31 -03:00
1f27d1a240 ncmpcpp: Show bitrate 2022-06-01 15:05:54 -03:00
2 changed files with 11 additions and 10 deletions

View file

@ -1,2 +1,3 @@
mpd_host = ~/.mpd/socket mpd_host = ~/.mpd/socket
media_library_primary_tag = album_artist media_library_primary_tag = album_artist
display_bitrate = yes

View file

@ -110,7 +110,7 @@ input * {
bindsym $mod+o workspace 3:o bindsym $mod+o workspace 3:o
bindsym $mod+p workspace 4:p bindsym $mod+p workspace 4:p
bindsym $mod+y workspace 5:y bindsym $mod+y workspace 5:y
bindsym $mod+6 workspace number 6 bindsym $mod+n workspace 6:n
bindsym $mod+7 workspace number 7 bindsym $mod+7 workspace number 7
bindsym $mod+8 workspace number 8 bindsym $mod+8 workspace number 8
bindsym $mod+9 workspace number 9 bindsym $mod+9 workspace number 9
@ -121,7 +121,7 @@ input * {
bindsym $mod+Shift+o move container to workspace 3:o bindsym $mod+Shift+o move container to workspace 3:o
bindsym $mod+Shift+p move container to workspace 4:p bindsym $mod+Shift+p move container to workspace 4:p
bindsym $mod+Shift+y move container to workspace 5:y bindsym $mod+Shift+y move container to workspace 5:y
bindsym $mod+Shift+6 move container to workspace number 6 bindsym $mod+Shift+n move container to workspace 6:n
bindsym $mod+Shift+7 move container to workspace number 7 bindsym $mod+Shift+7 move container to workspace number 7
bindsym $mod+Shift+8 move container to workspace number 8 bindsym $mod+Shift+8 move container to workspace number 8
bindsym $mod+Shift+9 move container to workspace number 9 bindsym $mod+Shift+9 move container to workspace number 9
@ -166,16 +166,16 @@ mode "resize" {
# right will grow the containers width # right will grow the containers width
# up will shrink the containers height # up will shrink the containers height
# down will grow the containers height # down will grow the containers height
bindsym $left resize shrink width 10px bindsym $left resize shrink width 10
bindsym $down resize grow height 10px bindsym $down resize grow height 10
bindsym $up resize shrink height 10px bindsym $up resize shrink height 10
bindsym $right resize grow width 10px bindsym $right resize grow width 10
# Ditto, with arrow keys # Ditto, with arrow keys
bindsym Left resize shrink width 10px bindsym Left resize shrink width 10
bindsym Down resize grow height 10px bindsym Down resize grow height 10
bindsym Up resize shrink height 10px bindsym Up resize shrink height 10
bindsym Right resize grow width 10px bindsym Right resize grow width 10
# Return to default mode # Return to default mode
bindsym Return mode "default" bindsym Return mode "default"