16 lines
593 B
Plaintext
16 lines
593 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
#######################################################################################
|
||
|
# See /usr/share/glib-2.0/schemas/org.nemo.extensions.nemo-terminal.gschema.xml
|
||
|
# for more information
|
||
|
#######################################################################################
|
||
|
|
||
|
|
||
|
# <enum id="org.nemo.extensions.nemo-terminal.TerminalPosition">
|
||
|
# <value value="0" nick="top"/>
|
||
|
# <value value="1" nick="bottom"/>
|
||
|
# </enum>
|
||
|
gsettings set org.nemo.extensions.nemo-terminal terminal-position 'top'
|
||
|
|
||
|
gsettings set org.nemo.extensions.nemo-terminal default-terminal-height '12'
|