diff options
author | uint23 <[email protected]> | 2025-04-29 19:44:02 +0100 |
---|---|---|
committer | uint23 <[email protected]> | 2025-04-29 19:44:02 +0100 |
commit | 5eb226d371222ae219756e489f1e988ae06cd4ef (patch) | |
tree | 585af9013534391dc6c691d7a9d2f7c7bab87eea /default_sxrc | |
parent | 821b0a17f8fa5b94d5c330469cdf08288d76f9b5 (diff) |
removed dependacy on config.h, updated readme to have config guide, updated default_sxrc
Diffstat (limited to 'default_sxrc')
-rw-r--r-- | default_sxrc | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/default_sxrc b/default_sxrc new file mode 100644 index 0000000..f973f08 --- /dev/null +++ b/default_sxrc @@ -0,0 +1,71 @@ +# Colour Themes: +focused_border_colour : #c0cbff +unfocused_border_colour : #555555 +swap_border_colour : #fff4c0 + +# General Options: +gaps : 10 +border_width : 1 +master_width : 60 # Percentage of screen width +resize_master_amount : 1 +snap_distance : 5 +motion_throttle : 60 # Set to screen refresh rate for smoothest motions + +# Keybinds: +# Commands must be surrounded with "" +# Function calls don't need this + +mod_key : super + +# Application Launchers: +bind : [mod + Return] : "st" +bind : [mod + b] : "firefox" +bind : [mod + p] : "dmenu_run" + +# Window Management: +bind : [mod + shift + q] : close_window +bind : [mod + shift + e] : quit + +# Focus Movement: +bind : [mod + j] : focus_next +bind : [mod + k] : focus_prev + +# Master/Stack Movement +bind : [mod + shift + j] : master_next +bind : [mod + shift + k] : master_previous + +# Master Area Resize +bind : [mod + l] : master_increase +bind : [mod + h] : master_decrease + +# Gaps +bind : [mod + equal] : increase_gaps +bind : [mod + minus] : decrease_gaps + +# Floating/Fullscreen +bind : [mod + space] : toggle_floating +bind : [mod + shift + space] : global_floating +bind : [mod + shift + f] : fullscreen + +# Reload Config +bind : [mod + r] : reload_config + +# Workspaces (1-9) +bind : [mod + 1] : change_ws1 +bind : [mod + shift + 1] : moveto_ws1 +bind : [mod + 2] : change_ws2 +bind : [mod + shift + 2] : moveto_ws2 +bind : [mod + 3] : change_ws3 +bind : [mod + shift + 3] : moveto_ws3 +bind : [mod + 4] : change_ws4 +bind : [mod + shift + 4] : moveto_ws4 +bind : [mod + 5] : change_ws5 +bind : [mod + shift + 5] : moveto_ws5 +bind : [mod + 6] : change_ws6 +bind : [mod + shift + 6] : moveto_ws6 +bind : [mod + 7] : change_ws7 +bind : [mod + shift + 7] : moveto_ws7 +bind : [mod + 8] : change_ws8 +bind : [mod + shift + 8] : moveto_ws8 +bind : [mod + 9] : change_ws9 +bind : [mod + shift + 9] : moveto_ws9
\ No newline at end of file |