List profiles
dconf dump /org/gnome/terminal/legacy/profiles:/
Determine the terminal profile string for the profile you will need. This is the terminal profile that I will export:
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Gary Hammock, 2022 | |
| # SPDX-License-Identifier: MIT | |
| # | |
| # This script shows the massive speed up between using Pandas/NumPy `apply()` and | |
| # using vectorization. | |
| from functools import wraps |
| How to manually setup flake8 as PyCharm external tool | |
| File / Settings / Tools / External Tools / Add | |
| Name: Flake8 | |
| Program: $PyInterpreterDirectory$/python | |
| Parameters: -m flake8 --max-complexity 10 --ignore E501 $FilePath$ | |
| Working directory: $ProjectFileDir$ | |
| Output Filters / Add | |
| Name: Filter 1 |
| # My GNU screen configuration file | |
| # Gary Hammock | |
| defscrollback 10000 | |
| termcapinfo screen-256color ti@:te@ | |
| # Lets me click on a pane to activate instead of C-a <tab>-ing everywhere. | |
| mousetrack on | |
| # I like to have four, equally-sized panes |
| –ctrl a c -> create new window | |
| –ctrl a A -> set window name | |
| –ctrl a w -> show all window | |
| –ctrl a 1|2|3|… -> switch to window n | |
| –ctrl a ” -> choose window | |
| –ctrl a ctrl a -> switch between window | |
| –ctrl a d -> detach window | |
| –ctrl a ? -> help | |
| –ctrl a [ -> start copy, move cursor to the copy location, press ENTER, select the chars, press ENTER to copy the selected characters to the buffer | |
| –ctrl a ] -> paste from buffer |