this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Stowize chunkwm config

+68 -73
+68
wm/.chunkwmrc
··· 1 + #!/bin/bash 2 + 3 + if [ -r ~/.cache/wal/chunkwmcolors ]; then 4 + source ~/.cache/wal/chunkwmcolors 5 + fi 6 + 7 + NFOCUS=$(echo $FOCUS | sed 's/#//') 8 + NPRESE=$(echo $PRESE | sed 's/#//') 9 + 10 + # 11 + # NOTE: specify the absolutepath to the directory to use when 12 + # loading a plugin. '~' expansion is supported. 13 + # 14 + 15 + chunkc core::plugin_dir /usr/local/opt/chunkwm/share/chunkwm/plugins 16 + 17 + # 18 + # NOTE: if enabled, chunkwm will monitor the specified plugin_dir 19 + # and automatically reload any '.so' file that is changed. 20 + # 21 + 22 + chunkc core::hotload 1 23 + chunkc core::unload tiling.so 24 + chunkc core::unload ffm.so 25 + chunkc core::unload border.so 26 + 27 + # 28 + # NOTE: the following are config variables for the chunkwm-tiling plugin. 29 + # 30 + 31 + chunkc set global_desktop_mode bsp 32 + 33 + chunkc set global_desktop_offset_top 5 34 + chunkc set global_desktop_offset_bottom 5 35 + chunkc set global_desktop_offset_left 10 36 + chunkc set global_desktop_offset_right 10 37 + chunkc set global_desktop_offset_gap 5 38 + 39 + chunkc set bsp_optimal_ratio 1.618 40 + chunkc set bsp_split_mode optimal 41 + chunkc set bsp_split_ratio 0.5 42 + 43 + # chunkc set mouse_move_window shift 44 + # chunkc set mouse_resize_window shift 45 + # chunkc set mouse_motion_interval 35 46 + 47 + chunkc set monitor_focus_cycle 1 48 + chunkc set window_focus_cycle monitor 49 + 50 + chunkc set window_float_next 0 51 + chunkc set window_float_center 1 52 + chunkc set window_region_locked 1 53 + 54 + chunkc set focused_border_color "$NFOCUS" 55 + chunkc set focused_border_width 5 56 + chunkc set focused_border_radius 0 57 + chunkc set focused_border_skip_floating 0 58 + 59 + chunkc tiling::rule --owner Dash --state float 60 + 61 + # 62 + # NOTE: specify plugins to load when chunkwm starts. 63 + # if chunkc plugin_dir is not set, the absolutepath is necessary. 64 + # 65 + 66 + chunkc core::load border.so 67 + chunkc core::load tiling.so 68 + chunkc core::load ffm.so
-12
wm/Makefile
··· 1 - PWD = $(shell pwd) 2 - UTILS = chunkwmrc skhdrc 3 - 4 - $(UTILS): 5 - $(LN) ${PWD}/$@ ${HOME}/.$@ 6 - 7 - install: $(UTILS) 8 - 9 - clear: 10 - for util in $(UTILS); do rm ${HOME}/.$$util; done 11 - 12 - .PHONY: install clear $(UTILS)
-61
wm/chunkwmrc
··· 1 - #!/bin/bash 2 - 3 - # 4 - # NOTE: specify the absolutepath to the directory to use when 5 - # loading a plugin. '~' expansion is supported. 6 - # 7 - 8 - chunkc core::plugin_dir /usr/local/opt/chunkwm/share/chunkwm/plugins 9 - 10 - # 11 - # NOTE: if enabled, chunkwm will monitor the specified plugin_dir 12 - # and automatically reload any '.so' file that is changed. 13 - # 14 - 15 - chunkc core::hotload 1 16 - chunkc core::unload tiling.so 17 - chunkc core::unload ffm.so 18 - chunkc core::unload border.so 19 - 20 - # 21 - # NOTE: the following are config variables for the chunkwm-tiling plugin. 22 - # 23 - 24 - chunkc set global_desktop_mode bsp 25 - 26 - chunkc set global_desktop_offset_top 5 27 - chunkc set global_desktop_offset_bottom 5 28 - chunkc set global_desktop_offset_left 10 29 - chunkc set global_desktop_offset_right 10 30 - chunkc set global_desktop_offset_gap 5 31 - 32 - chunkc set bsp_optimal_ratio 1.618 33 - chunkc set bsp_split_mode optimal 34 - chunkc set bsp_split_ratio 0.5 35 - 36 - # chunkc set mouse_move_window shift 37 - # chunkc set mouse_resize_window shift 38 - # chunkc set mouse_motion_interval 35 39 - 40 - chunkc set monitor_focus_cycle 1 41 - chunkc set window_focus_cycle monitor 42 - 43 - chunkc set window_float_next 0 44 - chunkc set window_float_center 1 45 - chunkc set window_region_locked 1 46 - 47 - chunkc set focused_border_color 0xff008097 48 - chunkc set focused_border_width 5 49 - chunkc set focused_border_radius 0 50 - chunkc set focused_border_skip_floating 0 51 - 52 - chunkc tiling::rule --owner Dash --state float 53 - 54 - # 55 - # NOTE: specify plugins to load when chunkwm starts. 56 - # if chunkc plugin_dir is not set, the absolutepath is necessary. 57 - # 58 - 59 - chunkc core::load border.so 60 - chunkc core::load tiling.so 61 - chunkc core::load ffm.so
wm/skhdrc wm/.skhdrc