Update
This commit is contained in:
		| @@ -165,16 +165,6 @@ keys = [ | |||||||
|         Key([], "b", lazy.group['scratchpad'].dropdown_toggle('bjendal'), desc="Launch xrdp: bjendal"), |         Key([], "b", lazy.group['scratchpad'].dropdown_toggle('bjendal'), desc="Launch xrdp: bjendal"), | ||||||
|         Key([], "s", lazy.spawn('passmenu'), desc="Launch pass"), |         Key([], "s", lazy.spawn('passmenu'), desc="Launch pass"), | ||||||
|         Key([], "r", lazy.run_extension(extension.DmenuRun(dmenu_prompt = "\uf101")), desc="Launch dmenu"), |         Key([], "r", lazy.run_extension(extension.DmenuRun(dmenu_prompt = "\uf101")), desc="Launch dmenu"), | ||||||
|         # FLAMESHOT chord |  | ||||||
|         KeyChord([], "f", [ |  | ||||||
|             Key([], "f", lazy.spawn('flameshot'), desc="Launch flameshot"), |  | ||||||
|             Key([], "s", lazy.spawn('flameshot gui'), desc="Launch gui with option to select region"), |  | ||||||
|             Key([], "a", lazy.spawn('flameshot full'), desc="Screenshot all monitors"), |  | ||||||
|             Key([], "c", lazy.spawn('flameshot full --clipboard'), desc="Save capture to clipboard"), |  | ||||||
|             Key([], "l", lazy.spawn('flameshot launcher'), desc="Launch launcher"), |  | ||||||
|             ], |  | ||||||
|             name='flameshot', |  | ||||||
|         ) |  | ||||||
|         ], |         ], | ||||||
|         #mode=True, |         #mode=True, | ||||||
|         name="launch", |         name="launch", | ||||||
| @@ -184,31 +174,36 @@ keys = [ | |||||||
|         Key([], "s", lazy.hide_show_bar(), desc="Toggle show bar"), |         Key([], "s", lazy.hide_show_bar(), desc="Toggle show bar"), | ||||||
|         Key([], "f", lazy.window.toggle_floating(), desc="Toggle floating mode"), |         Key([], "f", lazy.window.toggle_floating(), desc="Toggle floating mode"), | ||||||
|         Key([], "z", lazy.window.toggle_fullscreen(), desc="Toggle fullscreen mode"), |         Key([], "z", lazy.window.toggle_fullscreen(), desc="Toggle fullscreen mode"), | ||||||
|         # BOXES chord |         Key([], "e", lazy.widget['media_box_1'].toggle(), | ||||||
|         KeyChord([], "t", [ |                      lazy.widget['media_box_2'].toggle(), | ||||||
|                 Key([], "1", lazy.widget['widget_box_1'].toggle(), desc="Toggle Widget Box 1"), |                      lazy.widget['media_box_3'].toggle(), desc="Toggle Media Boxes"), | ||||||
|                 Key([], "2", lazy.widget['widget_box_2'].toggle(), desc="Toggle Widget Box 2"), |         Key([], "t", lazy.widget['widget_box_1'].toggle(), | ||||||
|                 Key([], "3", lazy.widget['widget_box_3'].toggle(), desc="Toggle Widget Box 3"), |                      lazy.widget['widget_box_2'].toggle(), | ||||||
|                 Key([], "e", lazy.widget['media_box_1'].toggle(), |                      lazy.widget['widget_box_3'].toggle(), desc="Toggle Widget Boxes"), | ||||||
|                              lazy.widget['media_box_2'].toggle(), |         Key([], "1", lazy.widget['widget_box_1'].toggle(), desc="Toggle Widget Box 1"), | ||||||
|                              lazy.widget['media_box_3'].toggle(), desc="Toggle Media Boxes"), |         Key([], "2", lazy.widget['widget_box_2'].toggle(), desc="Toggle Widget Box 2"), | ||||||
|                 Key([], "t", lazy.widget['widget_box_1'].toggle(), |         Key([], "3", lazy.widget['widget_box_3'].toggle(), desc="Toggle Widget Box 3"), | ||||||
|                              lazy.widget['widget_box_2'].toggle(), |  | ||||||
|                              lazy.widget['widget_box_3'].toggle(), desc="Toggle Widget Boxes"), |  | ||||||
|                 ], |  | ||||||
|             name="boxes", |  | ||||||
|             ), |  | ||||||
|         ], |         ], | ||||||
|         name="toggle", |         name="toggle", | ||||||
|     ), |     ), | ||||||
|     # MEDIA chord |     # MEDIA chord | ||||||
|     KeyChord([mod], "v", [ |     KeyChord([mod], "v", [ | ||||||
|             Key([], "v", lazy.widget['spotifyd'].play_pause(), desc="Play - Pause"), |         Key([], "v", lazy.widget['spotifyd'].play_pause(), desc="Play - Pause"), | ||||||
|             Key([], "h", lazy.widget['spotifyd'].previous(), desc="Previous"), |         Key([], "h", lazy.widget['spotifyd'].previous(), desc="Previous"), | ||||||
|             Key([], "l", lazy.widget['spotifyd'].next(), desc="Next"), |         Key([], "l", lazy.widget['spotifyd'].next(), desc="Next"), | ||||||
|         ], |         ], | ||||||
|         name="media", |         name="media", | ||||||
|     ), |     ), | ||||||
|  |     # FLAMESHOT chord | ||||||
|  |     KeyChord([mod], "f", [ | ||||||
|  |         Key([], "f", lazy.spawn('flameshot'), desc="Launch flameshot"), | ||||||
|  |         Key([], "s", lazy.spawn('flameshot gui'), desc="Launch gui with option to select region"), | ||||||
|  |         Key([], "a", lazy.spawn('flameshot full'), desc="Screenshot all monitors"), | ||||||
|  |         Key([], "c", lazy.spawn('flameshot full --clipboard'), desc="Save capture to clipboard"), | ||||||
|  |         Key([], "l", lazy.spawn('flameshot launcher'), desc="Launch launcher"), | ||||||
|  |         ], | ||||||
|  |         name='flameshot', | ||||||
|  |     ), | ||||||
| ] | ] | ||||||
|  |  | ||||||
| # Groups | # Groups | ||||||
|   | |||||||
							
								
								
									
										5
									
								
								.vimrc
									
									
									
									
									
								
							
							
						
						
									
										5
									
								
								.vimrc
									
									
									
									
									
								
							| @@ -24,9 +24,14 @@ Plug 'preservim/nerdtree' | |||||||
| Plug 'tpope/vim-commentary' | Plug 'tpope/vim-commentary' | ||||||
| Plug 'tpope/vim-surround' | Plug 'tpope/vim-surround' | ||||||
| Plug 'ryanoasis/vim-devicons' | Plug 'ryanoasis/vim-devicons' | ||||||
|  | Plug 'xuhdev/vim-latex-live-preview' | ||||||
| call plug#end() | call plug#end() | ||||||
|  |  | ||||||
| colorscheme nord | colorscheme nord | ||||||
| let g:lightline = { | let g:lightline = { | ||||||
|       \ 'colorscheme': 'nord', |       \ 'colorscheme': 'nord', | ||||||
|       \ } |       \ } | ||||||
|  |  | ||||||
|  | " vim-laxet-live-preview settings | ||||||
|  | autocmd Filetype tex setl updatetime=1 | ||||||
|  | let g:livepreview_previewer = 'zathura' | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user