Compare commits

...

2 Commits

3 changed files with 18 additions and 14 deletions

View File

@ -1,6 +1,8 @@
# Binds are of the form <key sequence> = <command to run>
# To use '=' in a key sequence, substitute it with "Eq": "<Ctrl+Eq>"
# If you wish to bind #, you can wrap the key sequence in quotes: "#" = quit
<A-p> = :prev-tab<Enter>
<A-n> = :next-tab<Enter>
<C-p> = :prev-tab<Enter>
<C-n> = :next-tab<Enter>
<C-t> = :term<Enter>
@ -100,8 +102,8 @@ $noinherit = true
$ex = <C-x>
<C-k> = :prev-field<Enter>
<C-j> = :next-field<Enter>
<C-p> = :prev-tab<Enter>
<C-n> = :next-tab<Enter>
<A-p> = :prev-tab<Enter>
<A-n> = :next-tab<Enter>
[compose::review]
# Keybindings used when reviewing a message to be sent

View File

@ -8,6 +8,7 @@ video/mp4=org.videolan.VLC.desktop
text/markdown=nvim.desktop
video/webm=org.videolan.VLC.desktop
text/x-log=nvim.desktop
text/plain=nvim.desktop
[Added Associations]
x-scheme-handler/sms=org.gnome.Shell.Extensions.GSConnect.desktop;
@ -20,3 +21,4 @@ video/mp4=org.videolan.VLC.desktop;
text/markdown=nvim.desktop;
video/webm=org.videolan.VLC.desktop;
text/x-log=nvim.desktop;
text/plain=nvim.desktop;

View File

@ -1,14 +1,14 @@
# Default workspaces definitions
set $terminal_workspace "1:"
set $editor_workspace "2:"
set $browser_workspace "3:"
set $chat_workspace "6:"
set $ongoing_operations "9:"
set $ide_workspace "4:"
set $workspace7 "7:"
set $note_workspace "8:"
set $git_workspace "5:"
set $music_workspace "10:"
set $terminal_workspace 1:
set $editor_workspace 2:
set $browser_workspace 3:
set $chat_workspace 6:
set $ongoing_operations 9:
set $ide_workspace 4:
set $email_workspace 7:
set $note_workspace 8:
set $git_workspace 5:
set $music_workspace 10:
# switch to workspace
bindsym $mod+1 workspace $terminal_workspace
@ -17,7 +17,7 @@ bindsym $mod+3 workspace $browser_workspace
bindsym $mod+6 workspace $chat_workspace
bindsym $mod+9 workspace $ongoing_operations
bindsym $mod+4 workspace $ide_workspace
bindsym $mod+7 workspace $workspace7
bindsym $mod+7 workspace $email_workspace
bindsym $mod+8 workspace $note_workspace
bindsym $mod+5 workspace $git_workspace
bindsym $mod+0 workspace $music_workspace
@ -29,7 +29,7 @@ bindsym $mod+Shift+3 move container to workspace $browser_workspace
bindsym $mod+Shift+6 move container to workspace $chat_workspace
bindsym $mod+Shift+9 move container to workspace $ongoing_operations
bindsym $mod+Shift+4 move container to workspace $ide_workspace
bindsym $mod+Shift+7 move container to workspace $workspace7
bindsym $mod+Shift+7 move container to workspace $email_workspace
bindsym $mod+Shift+8 move container to workspace $note_workspace
bindsym $mod+Shift+5 move container to workspace $git_workspace
bindsym $mod+Shift+0 move container to workspace $music_workspace