Last active
July 19, 2017 13:16
-
-
Save Strae/62d2f31115dcc35628a4fddfb9702637 to your computer and use it in GitHub Desktop.
Random terminator proifile (max 12)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# '4' is the number of profiles. | |
N=$(( ( RANDOM % 4 ) + 1 )); | |
terminator -p profile_$N -T $N & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global_config] | |
suppress_multiple_term_dialog = True | |
[keybindings] | |
[profiles] | |
[[default]] | |
use_system_font = False | |
background_darkness = 0.8 | |
audible_bell = True | |
background_type = transparent | |
background_image = None | |
foreground_color = "#ffffff" | |
font = Fira Mono Medium 10 | |
[[rogue1]] | |
use_system_font = False | |
background_darkness = 0.8 | |
audible_bell = True | |
background_type = transparent | |
background_image = None | |
foreground_color = "#ffffff" | |
font = Fira Mono Medium 10 | |
background_color = "#001919" | |
scrollback_infinite = True | |
[[rogue2]] | |
use_system_font = False | |
background_darkness = 0.8 | |
audible_bell = True | |
background_type = transparent | |
background_image = None | |
foreground_color = "#ffffff" | |
font = Fira Mono Medium 10 | |
background_color = "#191900" | |
scrollback_infinite = True | |
[[rogue3]] | |
use_system_font = False | |
background_darkness = 0.8 | |
audible_bell = True | |
background_type = transparent | |
background_image = None | |
foreground_color = "#ffffff" | |
font = Fira Mono Medium 10 | |
background_color = "#00190E" | |
scrollback_infinite = True | |
[[rogue4]] | |
use_system_font = False | |
background_darkness = 0.8 | |
audible_bell = True | |
background_type = transparent | |
background_image = None | |
foreground_color = "#ffffff" | |
font = Fira Mono Medium 10 | |
background_color = "#190017" | |
scrollback_infinite = True | |
[layouts] | |
[[default]] | |
[[[child1]]] | |
type = Terminal | |
parent = window0 | |
[[[window0]]] | |
type = Window | |
parent = "" | |
[plugins] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment