Merge branch 'master' of ssh://git.lyte.dev:2222/lytedev/dotfiles
This commit is contained in:
commit
faf1f0f7f3
|
@ -5,6 +5,11 @@ profile desktop-H {
|
||||||
exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-H-workspaces.sh"
|
exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-H-workspaces.sh"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
profile desktop-H {
|
||||||
|
output "Samsung Electric Company CF791 HTRJ500315" enable mode 3440x1440@100Hz position 1440,560 scale 1 transform normal
|
||||||
|
exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-single-workspace.sh"
|
||||||
|
}
|
||||||
|
|
||||||
profile laptop-solo {
|
profile laptop-solo {
|
||||||
output "Sharp Corporation 0x144A 0x00000000" enable mode 3200x1800@60Hz position 0,0 scale 2 transform normal
|
output "Sharp Corporation 0x144A 0x00000000" enable mode 3200x1800@60Hz position 0,0 scale 2 transform normal
|
||||||
}
|
}
|
||||||
|
|
6
apps/de/kanshi/desktop-single-workspace.sh
Normal file
6
apps/de/kanshi/desktop-single-workspace.sh
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
move_workspace() { swaymsg workspace "$1"; swaymsg move workspace to "'$2'"; }
|
||||||
|
setup_output() { out="$1"; shift; while (($#)); do move_workspace "$1" "$out"; shift; done; }
|
||||||
|
setup_output 'Samsung Electric Company CF791 HTRJ500315' 1 2 3 4 5 6 7 8 9
|
1
apps/neovim/.gitignore
vendored
1
apps/neovim/.gitignore
vendored
|
@ -2,3 +2,4 @@
|
||||||
!/.gitignore
|
!/.gitignore
|
||||||
!/init.vim
|
!/init.vim
|
||||||
!/nvim_lsp.lua
|
!/nvim_lsp.lua
|
||||||
|
!/ftplugin
|
||||||
|
|
1
apps/neovim/ftplugin/nim.vim
Normal file
1
apps/neovim/ftplugin/nim.vim
Normal file
|
@ -0,0 +1 @@
|
||||||
|
set expandtab
|
|
@ -172,6 +172,7 @@ au BufReadPost * | if stridx(&ft, 'commit') >= 0 | exe "startinsert!" | endif
|
||||||
|
|
||||||
let g:status_line_max_length = 5
|
let g:status_line_max_length = 5
|
||||||
function! StatusLineBuffers()
|
function! StatusLineBuffers()
|
||||||
|
" TODO: mark buffers with unsaved changes
|
||||||
let l:active_index = -1
|
let l:active_index = -1
|
||||||
let l:acc = []
|
let l:acc = []
|
||||||
for l:bufnum in nvim_list_bufs()
|
for l:bufnum in nvim_list_bufs()
|
||||||
|
|
1
apps/shell/vt_colors
Normal file
1
apps/shell/vt_colors
Normal file
|
@ -0,0 +1 @@
|
||||||
|
vt.default_red=0x11,0xf9,0xa6,0xf4,0x66,0xae,0xa1,0xf8,0x75,0xf9,0xa6,0xf4,0x66,0xae,0xa1,0xf9 vt.default_grn=0x11,0x26,0xe2,0xbf,0xd9,0x81,0xef,0xf8,0x71,0x26,0xe2,0xbf,0xd9,0x81,0xef,0xf8 vt.default_blu=0x11,0x72,0x2e,0x75,0xef,0xff,0xe4,0xf2,0x5e,0x72,0x2e,0x75,0xef,0xff,0xe4,0xf5
|
|
@ -61,7 +61,7 @@ yay -Sy \
|
||||||
asdf-vm `# Runtime Version Manager` \
|
asdf-vm `# Runtime Version Manager` \
|
||||||
python python-pip `# Python 3 Language` \
|
python python-pip `# Python 3 Language` \
|
||||||
hexyl `# CLI Hex Viewer` \
|
hexyl `# CLI Hex Viewer` \
|
||||||
pass `# Password Management` \
|
pass passff-host `# Password Management` \
|
||||||
firefox-developer-edition `# Default Web Browser` \
|
firefox-developer-edition `# Default Web Browser` \
|
||||||
rsync `# File Transfer` \
|
rsync `# File Transfer` \
|
||||||
alsa-utils `# Audio Utilities` \
|
alsa-utils `# Audio Utilities` \
|
||||||
|
|
Reference in a new issue