Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Strae/62d2f31115dcc35628a4fddfb9702637 to your computer and use it in GitHub Desktop.
Save Strae/62d2f31115dcc35628a4fddfb9702637 to your computer and use it in GitHub Desktop.
Random terminator proifile (max 12)
[Desktop Entry]
Version=1.0
Type=Application
Name=Terminal
Icon=Terminal
Exec=PATH_OF_FILE_t.sh
NoDisplay=false
Categories=System;
StartupNotify=false
Terminal=false
#!/bin/bash
# '4' is the number of profiles.
N=$(( ( RANDOM % 4 ) + 1 ));
terminator -p profile_$N -T $N &
[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