Compare commits

..

No commits in common. "ac6b65cbffc9cec655a1546d5273e1f956c38ed5" and "6b892abb83cc534911de341a1d07ec68f9c95547" have entirely different histories.

3 changed files with 14 additions and 18 deletions

View File

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

View File

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

View File

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