This commit is contained in:
Henrik Bakken
2020-11-18 19:28:38 +01:00
parent d5577c96de
commit 0c92777a38
5 changed files with 19 additions and 21 deletions
+1 -1
View File
@@ -203,7 +203,7 @@ bindsym $mod+Shift+Insert move container to workspace $ws4; workspace $ws4
bindsym $mod+Shift+Home move container to workspace $ws5; workspace $ws5 bindsym $mod+Shift+Home move container to workspace $ws5; workspace $ws5
bindsym $mod+Shift+Prior move container to workspace $ws6; workspace $ws6 bindsym $mod+Shift+Prior move container to workspace $ws6; workspace $ws6
bindsym $mod+Shift+Delete move container to workspace $ws7; workspace $ws7 bindsym $mod+Shift+Delete move container to workspace $ws7; workspace $ws7
bindsym $mod+Shift+End container to workspace $ws8; workspace $ws8 bindsym $mod+Shift+End move container to workspace $ws8; workspace $ws8
bindsym $mod+Shift+Next move container to workspace $ws9; workspace $ws9 bindsym $mod+Shift+Next move container to workspace $ws9; workspace $ws9
# Open applications on specific workspaces # Open applications on specific workspaces
+11
View File
@@ -0,0 +1,11 @@
[Unit]
Description=AIO startup service
[Service]
Type=oneshot
ExecStart=liquidctl --match nzxt set fan1 speed 70
ExecStart=liquidctl --match nzxt set fan2 speed 70
ExecStart=liquidctl --match nzxt set fan3 speed 70
[Install]
WantedBy=default.target
+3
View File
@@ -8,6 +8,9 @@
* night colors `sudo pacman -S redshift` * night colors `sudo pacman -S redshift`
* gaming `sudo pacman -S steam-manjaro steam-native` * gaming `sudo pacman -S steam-manjaro steam-native`
* vlc player `sudo pacman -S libmicrodns protobuf vlc` * vlc player `sudo pacman -S libmicrodns protobuf vlc`
* hardware
* glances
* liquidctl
# coding # coding
* dry `yay dry-bin` * dry `yay dry-bin`
+3 -19
View File
@@ -71,8 +71,8 @@ endif
"highlight LineNr guibg=NONE ctermbg=NONE "highlight LineNr guibg=NONE ctermbg=NONE
" seoul256 theme config (dark 233-239, light 252-256) " seoul256 theme config (dark 233-239, light 252-256)
let g:seoul256_background=233 " let g:seoul256_background=233
colo seoul256 " colo seoul256
" statusline " statusline
set cmdheight=2 set cmdheight=2
@@ -176,13 +176,6 @@ nmap <leader>w :cd %:p:h<cr>
" ***************************** " *****************************
" REMAPPING " REMAPPING
set langmap=å(,¨),Å{,^},Ø\\;,ø:,æ^ set langmap=å(,¨),Å{,^},Ø\\;,ø:,æ^
" æ ^
" Ø ;
" ø :
" Å {
" ^ }
" ; <
" : >
" ***************************** " *****************************
" EDITING " EDITING
@@ -222,15 +215,6 @@ let g:asterisk#keeppos=1
" stay visual when indenting " stay visual when indenting
vnoremap >> >gv vnoremap >> >gv
vnoremap << <gv vnoremap << <gv
" insert mode movement
inoremap <C-h> <Left>
inoremap <C-j> <Down>
inoremap <C-k> <Up>
inoremap <C-l> <Right>
inoremap <C-b> <BS>
inoremap <C-a> <Home>
inoremap <C-e> <End>
inoremap <C-d> <Delete>
" move between errors " move between errors
nmap <M-n> <Plug>(coc-diagnostic-prev) nmap <M-n> <Plug>(coc-diagnostic-prev)
nmap <M-m> <Plug>(coc-diagnostic-next) nmap <M-m> <Plug>(coc-diagnostic-next)
@@ -256,7 +240,7 @@ nnoremap <M--> :split<cr>
nnoremap <M-_> :new<cr> nnoremap <M-_> :new<cr>
nnoremap <M-t> :tabe %<cr> nnoremap <M-t> :tabe %<cr>
nnoremap <M-T> :tabnew<cr> nnoremap <M-T> :tabnew<cr>
" buffergator " buffers and tabs
nmap <M-H> :bprev<cr> nmap <M-H> :bprev<cr>
nmap <M-L> :bnext<cr> nmap <M-L> :bnext<cr>
nmap <M-J> :tabprev<cr> nmap <M-J> :tabprev<cr>
+1 -1
View File
@@ -91,6 +91,6 @@
// - "split": "auto" makes this pane open in the direction that provides the most surface area. // - "split": "auto" makes this pane open in the direction that provides the most surface area.
// - "splitMode": "duplicate" makes the new pane use the focused pane's profile. // - "splitMode": "duplicate" makes the new pane use the focused pane's profile.
// To learn more about panes, visit https://aka.ms/terminal-panes // To learn more about panes, visit https://aka.ms/terminal-panes
{ "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } // { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" }
] ]
} }