Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
41 views

i create a script that is supposed to create a new workspace and that workspace launch four terminal each in given position with a command ran in it. this is the script.sh #!/usr/bin/env bash WS='9:...
oumaima's user avatar
  • 49
0 votes
1 answer
279 views

The vte library and gnome-terminal implemented recently the presentation progress indicators. It should look like this: See: The circle icon on left of the second tab. The progress bar within the ...
Peter's user avatar
  • 2,358
0 votes
1 answer
90 views

I am running the following script in a bash terminal on a mac: #!/bin/bash string_list=( host1 host2 host3 host4 ) password="12345" for i in "${!string_list[@]}&...
Enub's user avatar
  • 1
2 votes
2 answers
242 views

I am working on building a simple X O (tic-tac-toe) game in C on a Linux system. I want to fork three child processes: Child 1: Player 1 Child 2: Player 2 Child 3: Display for the game where Player 1 ...
Belal Qatoum's user avatar
0 votes
1 answer
120 views

Image displaying the available shells to be used in the integrated terminal of VS Code. A picture is worth a thousand words... I recently migrated from Windows and I'm using Zorin 17. Once I installed ...
Alexandre Mendes de Oliveira's user avatar
0 votes
0 answers
80 views

I'm trying to use git-graph. I have installed it, but I cannot obtain the output I see in the screenshots. In particular when I run it with its own repository from the Gnome terminal in Ubuntu, the ...
Pythonist's user avatar
  • 2,729
1 vote
0 answers
179 views

The context We have a 9-line Braille display (Canute 360) which is exactly emulating the visual output of a terminal window. Both the Braille display and the gnome-terminal window are 40 characters ...
Ed Rogers's user avatar
-2 votes
1 answer
695 views

While try to open from XTerminal getting this error: #Locale not supported by C library Using the fallback 'C' locale #Error constructing proxy for org.gnome.Terminal:/org/gnome/Terminal/Factory0: ...
Tariqur's user avatar
  • 11
0 votes
0 answers
139 views

For fun and learning, I'm writing an ncurses app in C under ubuntu which calls mvaddch to place an 'o' character as close as it can to the mouse position as I drag the mouse pointer around. The app ...
fromscratch's user avatar
-3 votes
1 answer
96 views

when some one attack like DDOS or Dos in our computer for example someone like hacker let's say run infinite loop in your terminal to open the gnome-terminal code:-- while : do gnome-terminal done ...
HackingwithHarry's user avatar
0 votes
1 answer
462 views

New to linux terminal, gnome and terminals in general. Thought it would be a good way to learn by customizing UI. I am trying to automatically add these directories to my PATH instead of doing it ...
Oskar Wolf's user avatar
1 vote
1 answer
200 views

My ultimate goal is to let my python script launch a child process, in another terminal, that runs independently from the parent: When the parent process finishes, the child process should continue. ...
K.Mulier's user avatar
  • 9,770
3 votes
0 answers
2k views

All Gnome terminals keeps crashing randomly on Ubuntu 22.04, all scripts running on them crushed. Did sudo apt update and sudo apt upgrade but the problem persists I would like to know where to find ...
God of Money's user avatar
0 votes
0 answers
667 views

This is a spin-off from other post. This command retrieves a password from keepassxc, prints it as stdin to an openconnect (for VPN connection) command, and the process goes to the background. sh -c '...
Miguel's user avatar
  • 356
3 votes
0 answers
1k views

I'm trying to write a short bash script that opens some gnome-terminals and runs a program and issues keystrokes to them. Got parts 1 & 2 done and working. I am trying to use xdotool to do part ...
Adam Mills's user avatar
1 vote
0 answers
146 views

I'd like to automate the setup of my dev environment. I had to fallback from guake to gnome-terminal since guake (dropdown behavior was incredible) has issues with Wayland. I'm on Manjaro with gnome ...
Sebastjan Hribar's user avatar
1 vote
0 answers
81 views

TL;DR? How can I change every instance of one character (e.g. 'E') in a terminal window to another string of characters (e.g. '~E'), moving all other characters along in the window in the process? So: ...
Ed Rogers's user avatar
0 votes
2 answers
223 views

I need to know if there is a command where I can show what time it will be after X seconds. In my case: I often need to set "sleep (seconds)"; in terminal before and between other following ...
STAI Global Blockchain's user avatar
0 votes
1 answer
726 views

I'm trying to achieve this: for i in {01..31} do touch -t 202207$i0000 $i-07-2022.md done I have 31 .md files named 01-07-2022.md, 02-07-2022.md ... I basically want to change their creation date ...
user avatar
0 votes
0 answers
299 views

I have a piece of code in which I want to read a character from the terminal. The goal is to give keyboard input for moving a robot. If there is no input in the terminal , the code should return -1, ...
S07's user avatar
  • 1
0 votes
0 answers
212 views

I'm trying to write a script which will check if gnome-terminal is already open, switch to it if it is, or open it if it doesn't. # check if terminal is running EXISTS=$(pgrep gnome-terminal) # if ...
William's user avatar
  • 141
1 vote
0 answers
151 views

I am using a QT application which also shows an icon over panel but with latest gnome update the icon does not appear anymore. To show the notification icon, i’m trying to install and enable the ...
Shrey Parmar's user avatar
1 vote
1 answer
7k views

I connected to an OVH-Cloud VPS Server Via SSH and when I install gnome-terminal and attempt to run the command line gnome-terminal -v It will error out and give me the error: Failed to parse ...
valid1000's user avatar
1 vote
0 answers
875 views

Does anyone know how I can set "margins" for terminal output? As you can see in the screenshot below, I'm working with a custom two-line terminal prompt. The prompt itself has: a top margin,...
Victor Valente's user avatar
0 votes
1 answer
5k views

I would like to run a python script multiple times in a new terminal each time so I am making a bash script to do this. #!/bin/bash alias bot_1="cd ../Folder1" alias bot_2="cd ../...
EleXorZ's user avatar
  • 47

1
2 3 4 5
12