Larry Harris
09/12/2022, 7:05 PManthonywall
09/12/2022, 7:11 PMLarry Harris
09/12/2022, 7:28 PMLarry Harris
09/12/2022, 7:34 PMLarry Harris
09/12/2022, 7:35 PManthonywall
09/12/2022, 8:02 PMStefan Schippers
09/13/2022, 12:26 PMcp ...share//pdk/sky130A/libs.tech/xschem/xschemrc .
Then you can set the terminal
variable to use a bigger font. For example:
set terminal {xterm -fn 12x24}
or
set terminal {gnome-terminal}
Larry Harris
09/13/2022, 1:55 PMStefan Schippers
09/13/2022, 1:59 PMxschemrc
file, find the word 'terminal' (so you add the line in the right place to find) and add the following line:
set terminal {gnome-terminal}
I assume you are using gnome, otherwise put in another editor that is installed on the system.Larry Harris
09/13/2022, 6:58 PMLarry Harris
09/13/2022, 8:24 PMStefan Schippers
09/13/2022, 10:45 PMxschemrc
file copied into a directory where you start xschem
If you don't know where you installed open_pdks you can try to find the schemrc
file:
find / -name xschemrc
(this command may take a long time to complete).
The one you found in a previous post is not the right one, it is for a windows installation.
you must locate a pdk/
directory and under this directory find the xschemrc
file:
.../share/pdk/sky130A/libs.tech/xschem/xschemrc
then you create an empty directory and copy the xschemrc into it:
mkdir test_sky130
cd test_sky130
cp .../share/pdk/sky130A/libs.tech/xschem/xschemrc .
then you edit the xschemrc
file, search for the word '`terminal`' and in this position add either:
set terminal {xterm -fn 12x24}
or
set terminal {gnome-terminal}
Larry Harris
09/14/2022, 10:22 PM