mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 13:15:24 +00:00
Add to dev.sh the support for KDE konsole
This commit is contained in:
parent
de6506aee0
commit
be813b0f54
2 changed files with 6 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
|||
* Fixed a bug that truncated characters for email in the sidebar
|
||||
* **breaking change** The API endpoint `/api/database/formula/<field_id>/type/` now requires
|
||||
`table_id` instead of `field_id`, and also `name` in the request body.
|
||||
* Added support in dev.sh for KDE's Konsole terminal emulator.
|
||||
|
||||
## Released (2022-03-03 1.9.1)
|
||||
|
||||
|
|
5
dev.sh
5
dev.sh
|
@ -27,6 +27,11 @@ new_tab() {
|
|||
if [ -x "$(command -v gnome-terminal)" ]; then
|
||||
gnome-terminal \
|
||||
--tab --title="$TAB_NAME" --working-directory="$(pwd)" -- /bin/bash -c "$COMMAND"
|
||||
elif [ -x "$(command -v konsole)" ]; then
|
||||
ktab=$(qdbus $KONSOLE_DBUS_SERVICE $KONSOLE_DBUS_WINDOW newSession)
|
||||
qdbus $KONSOLE_DBUS_SERVICE /Sessions/$(($ktab)) setTitle 1 "$TAB_NAME"
|
||||
qdbus $KONSOLE_DBUS_SERVICE /Sessions/$(($ktab)) runCommand "cd $(pwd); $COMMAND"
|
||||
qdbus $KONSOLE_DBUS_SERVICE $KONSOLE_DBUS_WINDOW prevSession
|
||||
else
|
||||
if $PRINT_WARNING; then
|
||||
echo -e "\n${YELLOW}./dev.sh WARNING${NC}: gnome-terminal is the only currently supported way of opening
|
||||
|
|
Loading…
Add table
Reference in a new issue