pre-disk slice
parent
9b8bad33bc
commit
95eb136f80
|
@ -5,7 +5,7 @@ config_reader_min_version=3
|
||||||
fields=0 48 17 18 38 39 40 2 46 47 49 1
|
fields=0 48 17 18 38 39 40 2 46 47 49 1
|
||||||
hide_kernel_threads=1
|
hide_kernel_threads=1
|
||||||
hide_userland_threads=0
|
hide_userland_threads=0
|
||||||
hide_running_in_container=1
|
hide_running_in_container=0
|
||||||
shadow_other_users=0
|
shadow_other_users=0
|
||||||
show_thread_names=1
|
show_thread_names=1
|
||||||
show_program_path=0
|
show_program_path=0
|
||||||
|
@ -42,7 +42,7 @@ tree_view=1
|
||||||
sort_key=46
|
sort_key=46
|
||||||
tree_sort_key=0
|
tree_sort_key=0
|
||||||
sort_direction=-1
|
sort_direction=-1
|
||||||
tree_sort_direction=-1
|
tree_sort_direction=1
|
||||||
tree_view_always_by_pid=1
|
tree_view_always_by_pid=1
|
||||||
all_branches_collapsed=1
|
all_branches_collapsed=1
|
||||||
screen:Main=PID USER PRIORITY NICE M_VIRT M_RESIDENT M_SHARE STATE PERCENT_CPU PERCENT_MEM TIME Command
|
screen:Main=PID USER PRIORITY NICE M_VIRT M_RESIDENT M_SHARE STATE PERCENT_CPU PERCENT_MEM TIME Command
|
||||||
|
@ -51,7 +51,7 @@ screen:Main=PID USER PRIORITY NICE M_VIRT M_RESIDENT M_SHARE STATE PERCENT_CPU P
|
||||||
.tree_view=1
|
.tree_view=1
|
||||||
.tree_view_always_by_pid=1
|
.tree_view_always_by_pid=1
|
||||||
.sort_direction=-1
|
.sort_direction=-1
|
||||||
.tree_sort_direction=-1
|
.tree_sort_direction=1
|
||||||
.all_branches_collapsed=1
|
.all_branches_collapsed=1
|
||||||
screen:I/O=PID USER IO_PRIORITY IO_RATE IO_READ_RATE IO_WRITE_RATE PERCENT_SWAP_DELAY PERCENT_IO_DELAY Command
|
screen:I/O=PID USER IO_PRIORITY IO_RATE IO_READ_RATE IO_WRITE_RATE PERCENT_SWAP_DELAY PERCENT_IO_DELAY Command
|
||||||
.sort_key=IO_RATE
|
.sort_key=IO_RATE
|
||||||
|
|
|
@ -108,8 +108,8 @@ return require('lazy').setup({
|
||||||
python = {
|
python = {
|
||||||
function()
|
function()
|
||||||
return {
|
return {
|
||||||
exe = 'black',
|
exe = 'ruff',
|
||||||
args = {'-q', '-'},
|
args = {'format', '-q', '-'},
|
||||||
stdin = true,
|
stdin = true,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
@ -233,6 +233,7 @@ return require('lazy').setup({
|
||||||
'json5',
|
'json5',
|
||||||
'jsonnet',
|
'jsonnet',
|
||||||
'julia',
|
'julia',
|
||||||
|
'kdl',
|
||||||
'latex',
|
'latex',
|
||||||
'llvm',
|
'llvm',
|
||||||
'lua',
|
'lua',
|
||||||
|
|
|
@ -43,6 +43,8 @@ for_window [app_id="firefox" title="Picture-in-Picture"] floating enable
|
||||||
# Kill focused window
|
# Kill focused window
|
||||||
bindsym $mod+Shift+c kill
|
bindsym $mod+Shift+c kill
|
||||||
|
|
||||||
|
bindsym $mod+e exec emacs
|
||||||
|
|
||||||
|
|
||||||
bindsym $mod+w exec firefox
|
bindsym $mod+w exec firefox
|
||||||
bindsym $mod+Shift+w exec flatpak run com.google.Chrome
|
bindsym $mod+Shift+w exec flatpak run com.google.Chrome
|
||||||
|
@ -133,9 +135,9 @@ for_window [app_id="firefox" title="Picture-in-Picture"] floating enable
|
||||||
bindsym $mod+b exec "zathura $(fd . ~/books | wofi --show dmenu)"
|
bindsym $mod+b exec "zathura $(fd . ~/books | wofi --show dmenu)"
|
||||||
|
|
||||||
# Switch the current container between different layout styles
|
# Switch the current container between different layout styles
|
||||||
bindsym $mod+s layout stacking
|
#bindsym $mod+s layout stacking
|
||||||
#bindsym $mod+w layout tabbed
|
#bindsym $mod+w layout tabbed
|
||||||
bindsym $mod+e layout toggle split
|
#bindsym $mod+e layout toggle split
|
||||||
|
|
||||||
# Make the current focus fullscreen
|
# Make the current focus fullscreen
|
||||||
bindsym $mod+f fullscreen
|
bindsym $mod+f fullscreen
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
set guioptions none
|
set guioptions none
|
||||||
|
set selection-clipboard clipboard
|
||||||
|
|
Loading…
Reference in New Issue