]> git.donarmstrong.com Git - don.git/commitdiff
change the inline code bits
authorDon Armstrong <don@donarmstrong.com>
Tue, 7 Nov 2017 03:59:40 +0000 (19:59 -0800)
committerDon Armstrong <don@donarmstrong.com>
Tue, 7 Nov 2017 03:59:40 +0000 (19:59 -0800)
posts/autorandr.mdwn

index c94dcc65408a3f51264ddf6add2caca409e57be3..d75883439d14cd6df5c877ce5ef8d8216e7aa097 100644 (file)
@@ -20,17 +20,13 @@ the
 To use it, simply install the package, and create your initial
 configuration (in my case, undocked):
 
 To use it, simply install the package, and create your initial
 configuration (in my case, undocked):
 
-```
-autorandr --save undocked
-```
+     autorandr --save undocked
 
 then, dock your laptop (or plug in your external monitor(s)), change
 the configuration using xrandr (or whatever you use), and save your
 new configuration (in my case, workstation):
 
 
 then, dock your laptop (or plug in your external monitor(s)), change
 the configuration using xrandr (or whatever you use), and save your
 new configuration (in my case, workstation):
 
-```
-autorandr --save workstation
-```
+    autorandr --save workstation
 
 repeat for any additional configurations you have (or as you find new
 configurations).
 
 repeat for any additional configurations you have (or as you find new
 configurations).
@@ -43,15 +39,14 @@ manually too if you need to. You can also add your own
 configuration is loaded. Since I run i3, my workstation configuration
 looks like this:
 
 configuration is loaded. Since I run i3, my workstation configuration
 looks like this:
 
-```
-#!/bin/bash
+     #!/bin/bash
+     
+     xrandr --dpi 92
+     xrandr --output DP2-2 --primary
+     i3-msg '[workspace="^(1|4|6)"] move workspace to output DP2-2;'
+     i3-msg '[workspace="^(2|5|9)"] move workspace to output DP2-3;'
+     i3-msg '[workspace="^(3|8)"] move workspace to output DP2-1;'
 
 
-xrandr --dpi 92
-xrandr --output DP2-2 --primary
-i3-msg '[workspace="^(1|4|6)"] move workspace to output DP2-2;'
-i3-msg '[workspace="^(2|5|9)"] move workspace to output DP2-3;'
-i3-msg '[workspace="^(3|8)"] move workspace to output DP2-1;'
-```
 
 which fixes the dpi appropriately, sets the primary screen (possibly
 not needed?), and moves the i3 workspaces about. You can also arrange
 
 which fixes the dpi appropriately, sets the primary screen (possibly
 not needed?), and moves the i3 workspaces about. You can also arrange