Description of Problem:
I'm trying to use terminator in a bash script but I keep getting an error stating that No such file or directory: ~/.config/terminator/config. and its keeping the terminals from popping up on screen. However when I run terminator on my terminal the window pops up. So I definitely have terminator installed I just don't know where terminator/config is.
Questions and summary of issue:
- How would I check if terminator/config exists on my system?
- Where would I find it since it isn't in
~/.config? - Why would this be happening?
Solutions that I know don't work and extra information
- Uninstalling and reinstalling. I did it before I came to this site to ask.
- These are the commands I used to install it the first time:
- sudo add-apt-repository ppa:gnome-terminator
- sudo apt-get update
- sudo apt-get install terminator
- I don't think I was at the home directory when I installed terminator if that matters.
Either find the file using 'locate':
Or even better, use stat:
If the file does not exist, you cannot find it ofcourse.
Perhaps create the file yourself.
The systems provides an error message. Because it expects there to be file, which isn't. Please read the documentation.