aboutsummaryrefslogtreecommitdiff
path: root/config.in
diff options
context:
space:
mode:
authorNick Paladino <nickp@ncpholdings.org>2019-05-21 00:29:00 -0500
committerDrew DeVault <sir@cmpwn.com>2019-05-21 08:12:49 -0600
commit08ec88692adbe8969a07f6b8ed30180b80a5c3d1 (patch)
treed3a7145964a4da7bcc7a94fdb6cb7873d8dfd977 /config.in
parente4f1ffe6015fbd33994a18f1de65cbd62c177a83 (diff)
Make comment casing consistient
Makes the first letter of all the comments uppercase. THus making the config file more consistient
Diffstat (limited to 'config.in')
-rw-r--r--config.in26
1 files changed, 13 insertions, 13 deletions
diff --git a/config.in b/config.in
index 9d6f2e66..1ba0443a 100644
--- a/config.in
+++ b/config.in
@@ -62,13 +62,13 @@ output * bg @datadir@/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
#
# Basics:
#
- # start a terminal
+ # Start a terminal
bindsym $mod+Return exec $term
- # kill focused window
+ # Kill focused window
bindsym $mod+Shift+q kill
- # start your launcher
+ # Start your launcher
bindsym $mod+d exec $menu
# Drag floating windows by holding down $mod and left mouse button.
@@ -78,10 +78,10 @@ output * bg @datadir@/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
# mouse button for dragging.
floating_modifier $mod normal
- # reload the configuration file
+ # Reload the configuration file
bindsym $mod+Shift+c reload
- # exit sway (logs you out of your Wayland session)
+ # Exit sway (logs you out of your Wayland session)
bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
#
# Moving around:
@@ -91,18 +91,18 @@ output * bg @datadir@/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
bindsym $mod+$down focus down
bindsym $mod+$up focus up
bindsym $mod+$right focus right
- # or use $mod+[up|down|left|right]
+ # Or use $mod+[up|down|left|right]
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
- # _move_ the focused window with the same, but add Shift
+ # Move the focused window with the same, but add Shift
bindsym $mod+Shift+$left move left
bindsym $mod+Shift+$down move down
bindsym $mod+Shift+$up move up
bindsym $mod+Shift+$right move right
- # ditto, with arrow keys
+ # Ditto, with arrow keys
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
@@ -110,7 +110,7 @@ output * bg @datadir@/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
#
# Workspaces:
#
- # switch to workspace
+ # Switch to workspace
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
@@ -121,7 +121,7 @@ output * bg @datadir@/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
- # move focused container to workspace
+ # Move focused container to workspace
bindsym $mod+Shift+1 move container to workspace 1
bindsym $mod+Shift+2 move container to workspace 2
bindsym $mod+Shift+3 move container to workspace 3
@@ -157,7 +157,7 @@ output * bg @datadir@/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
# Swap focus between the tiling area and the floating area
bindsym $mod+space focus mode_toggle
- # move focus to the parent container
+ # Move focus to the parent container
bindsym $mod+a focus parent
#
# Scratchpad:
@@ -184,13 +184,13 @@ mode "resize" {
bindsym $up resize shrink height 10px
bindsym $right resize grow width 10px
- # ditto, with arrow keys
+ # Ditto, with arrow keys
bindsym Left resize shrink width 10px
bindsym Down resize grow height 10px
bindsym Up resize shrink height 10px
bindsym Right resize grow width 10px
- # return to default mode
+ # Return to default mode
bindsym Return mode "default"
bindsym Escape mode "default"
}