summaryrefslogtreecommitdiffstats
path: root/jeschli/2configs/i3.nix
blob: 58d480dd65dd3ead70dc07604ab009b9f582d5a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
{pkgs, environment, config, lib, ... }:

with pkgs;

let

  bar_update_interval = "1"; # In seconds
  terminal_pkg = "${pkgs.gnome3.gnome-terminal}/bin/gnome-terminal";
  terminal_class = "Gnome\\\\-terminal";
  terminal_instance = "gnome\\\\-terminal\\\\-server";

  reload_layout = pkgs.writeScript "reload_layout.sh" ''
    #!/bin/sh
    pkill $(basename  "${terminal_pkg}")

    i3-msg append_layout ${shell_layout}

    for i in {1..16}
    do
      ${terminal_pkg} &
    done
  '';

  single_shell_spawn = pkgs.writeScript "single_shell_spawn.sh" ''
    #!/bin/sh

    i3-msg focus parent
    i3-msg append_layout ${single_shell}
    for i in {1..2}
    do
      ${terminal_pkg}
    done
    sleep 0.3
    i3-msg focus parent
    '';

  single_shell = pkgs.writeText "single-shell.json" ''
{
    "border": "pixel",
    "floating": "auto_off",
    "layout": "tabbed",
    "percent": 1,
    "type": "con",
    "nodes": [
        {
            "border": "pixel",
            "floating": "auto_off",
            "layout": "splith",
            "percent": 1,
            "type": "con",
            "nodes": [
                {
                    "border": "pixel",
                    "floating": "auto_off",
                    "layout": "splitv",
                    "percent": 0.5,
                    "type": "con",
                    "nodes": [
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        },
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        }
                    ]
                }
            ]
        }
    ]
}
  '';

  shell_layout = pkgs.writeText "shell-layout.json" ''
    {
    "border": "pixel",
    "floating": "auto_off",
    "layout": "tabbed",
    "percent": 1,
    "type": "con",
    "nodes": [
       {
            "border": "pixel",
            "floating": "auto_off",
            "layout": "splith",
            "percent": 1,
            "type": "con",
            "nodes": [
                {
                    "border": "pixel",
                    "floating": "auto_off",
                    "layout": "splitv",
                    "percent": 0.5,
                    "type": "con",
                    "nodes": [
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        },
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        }
                    ]
                },
                {
                    "border": "pixel",
                    "floating": "auto_off",
                    "layout": "splitv",
                    "percent": 0.5,
                    "type": "con",
                    "nodes": [
                        {
                            "border": "pixel",
                            "floating": "auto_off",
                            "layout": "splitv",
                            "percent": 1,
                            "type": "con",
                            "nodes": [
                                {
                                    "border": "pixel",

                                    "floating": "auto_off",
                                    "geometry": {
                                        "height": 434,
                                        "width": 722,
                                        "x": 0,
                                        "y": 0
                                    },
                                    "percent": 0.5,
                                    "swallows": [
                                        {
                                            "class": "^${terminal_class}$",
                                            "instance": "^${terminal_instance}$"
                                        }
                                    ],
                                    "type": "con"
                                },
                                {
                                    "border": "pixel",

                                    "floating": "auto_off",
                                    "geometry": {
                                        "height": 434,
                                        "width": 722,
                                        "x": 0,
                                        "y": 0
                                    },
                                    "percent": 0.5,
                                    "swallows": [
                                        {
                                            "class": "^${terminal_class}$",
                                            "instance": "^${terminal_instance}$"
                                        }
                                    ],
                                    "type": "con"
                                }
                            ]
                        }
                    ]
                }
            ]
        },

       {
            "border": "pixel",
            "floating": "auto_off",
            "layout": "splith",
            "percent": 1,
            "type": "con",
            "nodes": [
                {
                    "border": "pixel",
                    "floating": "auto_off",
                    "layout": "splitv",
                    "percent": 0.5,
                    "type": "con",
                    "nodes": [
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        },
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        }
                    ]
                },
                {
                    "border": "pixel",
                    "floating": "auto_off",
                    "layout": "splitv",
                    "percent": 0.5,
                    "type": "con",
                    "nodes": [
                        {
                            "border": "pixel",
                            "floating": "auto_off",
                            "layout": "splitv",
                            "percent": 1,
                            "type": "con",
                            "nodes": [
                                {
                                    "border": "pixel",

                                    "floating": "auto_off",
                                    "geometry": {
                                        "height": 434,
                                        "width": 722,
                                        "x": 0,
                                        "y": 0
                                    },
                                    "percent": 0.5,
                                    "swallows": [
                                        {
                                            "class": "^${terminal_class}$",
                                            "instance": "^${terminal_instance}$"
                                        }
                                    ],
                                    "type": "con"
                                },
                                {
                                    "border": "pixel",

                                    "floating": "auto_off",
                                    "geometry": {
                                        "height": 434,
                                        "width": 722,
                                        "x": 0,
                                        "y": 0
                                    },
                                    "percent": 0.5,
                                    "swallows": [
                                        {
                                            "class": "^${terminal_class}$",
                                            "instance": "^${terminal_instance}$"
                                        }
                                    ],
                                    "type": "con"
                                }
                            ]
                        }
                    ]
                }
            ]
        },

        {
            "border": "pixel",
            "floating": "auto_off",
            "layout": "splith",
            "percent": 1,
            "type": "con",
            "nodes": [
                {
                    "border": "pixel",
                    "floating": "auto_off",
                    "layout": "splitv",
                    "percent": 0.5,
                    "type": "con",
                    "nodes": [
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        },
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        }
                    ]
                },
                {
                    "border": "pixel",
                    "floating": "auto_off",
                    "layout": "splitv",
                    "percent": 0.5,
                    "type": "con",
                    "nodes": [
                        {
                            "border": "pixel",
                            "floating": "auto_off",
                            "layout": "splitv",
                            "percent": 1,
                            "type": "con",
                            "nodes": [
                                {
                                    "border": "pixel",

                                    "floating": "auto_off",
                                    "geometry": {
                                        "height": 434,
                                        "width": 722,
                                        "x": 0,
                                        "y": 0
                                    },
                                    "percent": 0.5,
                                    "swallows": [
                                        {
                                            "class": "^${terminal_class}$",
                                            "instance": "^${terminal_instance}$"
                                        }
                                    ],
                                    "type": "con"
                                },
                                {
                                    "border": "pixel",

                                    "floating": "auto_off",
                                    "geometry": {
                                        "height": 434,
                                        "width": 722,
                                        "x": 0,
                                        "y": 0
                                    },
                                    "percent": 0.5,
                                    "swallows": [
                                        {
                                            "class": "^${terminal_class}$",
                                            "instance": "^${terminal_instance}$"
                                        }
                                    ],
                                    "type": "con"
                                }
                            ]
                        }
                    ]
                }
            ]
        },


        {
            "border": "pixel",
            "floating": "auto_off",
            "layout": "splith",
            "percent": 1,
            "type": "con",
            "nodes": [
                {
                    "border": "pixel",
                    "floating": "auto_off",
                    "layout": "splitv",
                    "percent": 0.5,
                    "type": "con",
                    "nodes": [
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        },
                        {
                            "border": "pixel",

                            "floating": "auto_off",
                            "geometry": {
                                "height": 434,
                                "width": 722,
                                "x": 0,
                                "y": 0
                            },
                            "percent": 0.5,
                            "swallows": [
                                {
                                    "class": "^${terminal_class}$",
                                    "instance": "^${terminal_instance}$"
                                }
                            ],
                            "type": "con"
                        }
                    ]
                },
                {
                    "border": "pixel",
                    "floating": "auto_off",
                    "layout": "splitv",
                    "percent": 0.5,
                    "type": "con",
                    "nodes": [
                        {
                            "border": "pixel",
                            "floating": "auto_off",
                            "layout": "splitv",
                            "percent": 1,
                            "type": "con",
                            "nodes": [
                                {
                                    "border": "pixel",

                                    "floating": "auto_off",
                                    "geometry": {
                                        "height": 434,
                                        "width": 722,
                                        "x": 0,
                                        "y": 0
                                    },
                                    "percent": 0.5,
                                    "swallows": [
                                        {
                                            "class": "^${terminal_class}$",
                                            "instance": "^${terminal_instance}$"
                                        }
                                    ],
                                    "type": "con"
                                },
                                {
                                    "border": "pixel",

                                    "floating": "auto_off",
                                    "geometry": {
                                        "height": 434,
                                        "width": 722,
                                        "x": 0,
                                        "y": 0
                                    },
                                    "percent": 0.5,
                                    "swallows": [
                                        {
                                            "class": "^${terminal_class}$",
                                            "instance": "^${terminal_instance}$"
                                        }
                                    ],
                                    "type": "con"
                                }
                            ]
                        }
                    ]
                }
            ]
        }
    ]
    }
  '';


  i3_conf_file =  pkgs.writeText "config" ''
    # This file has been auto-generated by i3-config-wizard(1).
    # It will not be overwritten, so edit it as you like.
    #
    # Should you change your keyboard layout some time, delete
    # this file and re-run i3-config-wizard(1).
    #

    # i3 config file (v4)
    #
    # Please see https://i3wm.org/docs/userguide.html for a complete reference!

    set $mod Mod4

    #######################
    #                     #
    #       LOOKS         #
    #                     #
    #######################
    # Font for window titles. Will also be used by the bar unless a different font
    # is used in the bar {} block below.
    font pango:Bitstream Vera Sans Mono 14
    font pango:Monospace 14, Icons 10
    hide_edge_borders smart
    new_window pixel 1
    new_float normal

    # Lockscreen shortcut
    bindsym $mod+l exec xscreensaver-command -l

    # start a terminal
    bindsym $mod+Return exec ${terminal_pkg}


    # class                 border  backgr. text    indicator child_border
    client.focused          #4fceea #285577 #ffffff #2e9ef4   #285577
    client.focused_inactive #333333 #5f676a #ffffff #484e50   #5f676a
    client.unfocused        #333333 #222222 #888888 #292d2e   #222222

    # Size of border
    default_border pixel 3

    #######################
    #                     #
    #   DEFAULT CONFIG    #
    #                     #
    #######################
    floating_modifier $mod
    workspace_layout stacked
    default_orientation vertical

    # Kill focused window
    bindsym $mod+Shift+q kill

    # start dmenu (a program launcher)
    bindsym $mod+d exec ${pkgs.rofi}/bin/rofi -modi drun#run -combi-modi drun#run -show combi -show-icons -display-combi run
    # Switch windows
    bindsym $mod+x exec ${pkgs.rofi}/bin/rofi -modi window -show window -auto-select

    # Arrow keys for focus navigation
    bindsym $mod+Left focus left
    bindsym $mod+Down focus down
    bindsym $mod+Up focus up
    bindsym $mod+Right focus right

    # Move focused window
    bindsym $mod+Shift+j move left
    bindsym $mod+Shift+k move down
    bindsym $mod+Shift+l move up
    bindsym $mod+Shift+odiaeresis move right

    # Arrow keys for focused window movement
    bindsym $mod+Shift+Left move left
    bindsym $mod+Shift+Down move down
    bindsym $mod+Shift+Up move up
    bindsym $mod+Shift+Right move right

    # Split in horizontal orientation
    bindsym $mod+h split h

    # Split in vertical orientation
    bindsym $mod+v split v

    # Enter fullscreen mode for the focused container
    bindsym $mod+f fullscreen toggle

    # Change container layout (stacked, tabbed, toggle split)
    bindsym $mod+s layout stacking
    bindsym $mod+w layout tabbed
    bindsym $mod+e layout toggle split

    # Toggle tiling / floating
    bindsym $mod+Shift+space floating toggle

    # Change focus between tiling / floating windows
    bindsym $mod+space focus mode_toggle

    # Focus the parent container
    bindsym $mod+a focus parent

    # Reload the configuration file
    bindsym $mod+Shift+c reload

    # Restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
    bindsym $mod+Shift+r restart

    # Exit i3 (logs you out of your X session)
    bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"

    # Resize window. You can also use the mouse for that
    mode "resize" {
      # Pressing right will grow the window’s width.
      # Pressing up will shrink the window’s height.
      # Pressing down will grow the window’s height.
      bindsym a resize shrink width 10 px or 10 ppt
      bindsym s resize grow height 10 px or 10 ppt
      bindsym w resize shrink height 10 px or 10 ppt
      bindsym d resize grow width 10 px or 10 ppt

      # same bindings, but for the arrow keys
      bindsym Left resize shrink width 10 px or 10 ppt
      bindsym Down resize grow height 10 px or 10 ppt
      bindsym Up resize shrink height 10 px or 10 ppt
      bindsym Right resize grow width 10 px or 10 ppt

      # back to normal: Enter or Escape
      bindsym Return mode "default"
      bindsym Escape mode "default"
    }

    # Enable floating
    for_window [class="usbguard-applet-qt"] floating enable
    for_window [class="Nm-connection-editor"] floating enable
    for_window [class="Gnome-disks"] floating enable
    for_window [class="QtPass" title="QtPass"] move scratchpad

    # Make the currently focused window a scratchpad
    bindsym $mod+Shift+minus move scratchpad

    # Show the first scratchpad window
    bindsym $mod+minus scratchpad show

    # Show the sup-mail scratchpad window, if any.
    bindsym $mod+Shift+s [class="QtPass" title="QtPass"] scratchpad show

    #######################
    #                     #
    #     WORKSPACES      #
    #                     #
    #######################
    # Variables
    set $workspace1 "1: Terminals"
    set $workspace2 "2: Firefox"
    set $workspace3 "3: Emacs"
    set $workspace4 "4"
    set $workspace5 "5"
    set $workspace6 "6"
    set $workspace7 "7"
    set $workspace8 "8"
    set $workspace9 "9"
    set $workspace10 "10"

    assign [class="emacs"] $workspace3
    assign [class="Firefox"] $workspace2
    assign [class="Daily"] $workspace5

    assign [class="VirtualBox Manager"] $workspace4
    assign [class="Virt-manager" title="Virtual Machine Manager"] $workspace4

    assign [class="libreoffice"] $workspace6
    assign [class="Eclipse"] $workspace6

    # Workspace lateral movement
    bindsym $mod+Next workspace next
    bindsym $mod+Prior workspace prev

    # Switch to workspace
    bindsym $mod+1 workspace $workspace1
    bindsym $mod+2 workspace $workspace2
    bindsym $mod+3 workspace $workspace3
    bindsym $mod+4 workspace $workspace4
    bindsym $mod+5 workspace $workspace5
    bindsym $mod+6 workspace $workspace6
    bindsym $mod+7 workspace $workspace7
    bindsym $mod+8 workspace $workspace8
    bindsym $mod+9 workspace $workspace9
    bindsym $mod+0 workspace $workspace10

    # Move workspace to other monitor
    bindsym $mod+Shift+Next move workspace to output right
    bindsym $mod+Shift+Prior move workspace to output left

    # move focused container to workspace
    bindsym $mod+Shift+1 move container to workspace $workspace1
    bindsym $mod+Shift+2 move container to workspace $workspace2
    bindsym $mod+Shift+3 move container to workspace $workspace3
    bindsym $mod+Shift+4 move container to workspace $workspace4
    bindsym $mod+Shift+5 move container to workspace $workspace5
    bindsym $mod+Shift+6 move container to workspace $workspace6
    bindsym $mod+Shift+7 move container to workspace $workspace7
    bindsym $mod+Shift+8 move container to workspace $workspace8
    bindsym $mod+Shift+9 move container to workspace $workspace9
    bindsym $mod+Shift+0 move container to workspace $workspace10


    #######################
    #                     #
    #  FUNCTION KEYS      #
    #                     #
    #######################
    # Backlight controls
    bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight +10
    bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -10

    # Pulse Audio controls
    bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5% #increase sound volume
    bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5% #decrease sound volume
    bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle # mute sound
    bindsym XF86AudioMicMute exec --no-startup-id  amixer set Capture toggle

    #######################
    #                     #
    #      TTY KEYS       #
    #                     #
    #######################

    bindsym Mod1+F1 exec --no-startup-id chvt 0
    bindsym Mod1+F2 exec --no-startup-id chvt 1
    bindsym Mod1+F3 exec --no-startup-id chvt 2
    bindsym Mod1+F4 exec --no-startup-id chvt 3
    bindsym Mod1+F5 exec --no-startup-id chvt 4
    bindsym Mod1+F6 exec --no-startup-id chvt 5
    bindsym Mod1+F7 exec --no-startup-id chvt 6
    bindsym Mod1+F8 exec --no-startup-id chvt 7
    bindsym Mod1+F9 exec --no-startup-id chvt 8
    bindsym Mod1+F10 exec --no-startup-id chvt 9


    #######################
    #                     #
    #  CONVENIENCE KEYS   #
    #                     #
    #######################
    bindsym Mod1+Shift+3 exec screenshot

    #######################
    #                     #
    #    WINDOW LAYOUT    #
    #                     #
    #######################
    bindsym Shift+F11 exec --no-startup-id ${reload_layout}
    bindsym Shift+F12 exec --no-startup-id ${single_shell_spawn}


    bar {
        status_command i3status
        position top
    }

    #######################
    #                     #
    #       AUTORUNS      #
    #                     #
    #######################
    ## Start 16 gnome shells
    exec i3-msg 'workspace $workspace1;' && ${reload_layout}

    # Start firefox
    exec --no-startup-id ${pkgs.firefox}/bin/firefox --Pro