Skip to main content

Linux - Xterm window color

Change the configuration in ~/.Xdefaults


XTerm*Background:   black
XTerm*Foreground:   linen
XTerm*font:  9x15
XTerm*saveLines:    1000
XTerm*HiForeColor: white
XTerm*HiBackColor: #c06077
#XTerm*geometry: +50+100
XTerm*geometry: 173x52+10+10
xterm*font: -*-fixed-medium-r-*-*-13-*-*-*-*-*-iso8859-*

Comments

Popular posts from this blog

Start with flask

1. Install python 2. Python comes with pip. Else install pip 3. pip install Flask 4. Create a file flaskFirst.py from flask import Flask app = Flask(__name__) @app.route('/') def index():     return 'Index Page' 3. Go to the path where the flaskFirst.py is present 4. export FLASK_APP=flaskFirst.py 5. flask run