Изменить фон терминала linux

Change the background color in Gnome terminal through a command?

I’m using Gnome terminal and I want to change the background color or the profile through a command so I can group some commands in an alias to visually differentiate my windows when I run certain processes. I’m running Ubuntu, and bash is my shell. Are there commands in to do this?

11 Answers 11

you can use setterm like this

setterm -term linux -back blue -fore white -clear 

This does not have the desired effect in bash. What happens is that the background color is temporarily set to blue and all text is cleared (not what I intended btw), but then as soon as you start to type something or a prompt is printed, the background color of the new text becomes whatever the background color was before running the command.

Assuming you know what profile you want before you open your terminal:

Right-click on your Panel and «Add to Panel» and add a custom application launcher

You can define position, size and profile (which takes care of colours, fonts, etc)

gnome-terminal --hide-menubar --geometry 115x40+0+0 gnome-terminal --window-with-profile=logs --hide-menubar --geometry=144x15+0-55 

«man gnome-terminal» has lots of useful information

try the following command from a desktop launcher:

gnome-terminal --window-with-profile=site2 -x ssh site2 

Using -x ssh means that the terminal will only be active on the remote site, so completely removing the possibility of typing a command on the wrong machine because you’ve exited from a terminal command line ssh.

In the gnome terminal on ubuntu 20lts you can run a command like:

where aa, bb, cc are hexadecimal numbers from 0 to 255.

If you wish to change the foreground color, use \e]10; instead of \e]11;

To get the correct color commands you can use the color pickers in the snippet below.

let bg = document.getElementById('bg'); let fg = document.getElementById('fg'); let binp = document.getElementById('numberbg'); let finp = document.getElementById('numberfg'); binp.addEventListener('input', (e) => < let val = spl(e); bg.innerText = "echo -e '\\e]11;rgb:"+val+"\\a'"; up(bg); up(fg); >); finp.addEventListener('input', (e) => < let val = spl(e);; fg.innerText = "echo -e '\\e]10;rgb:"+val+"\\a'"; up(bg); up(fg); >); function spl(e) < return e.target.value.substring(1).match(/./g).join('/'); > function up(i)
 
echo -e '\e]11;rgb:00/00/00\a'
echo -e '\e]10;rgb:ee/ee/ee\a'

You want to use gconftool.

Gnome holds its settings in a hierarchy similar to the Windows Registry. Once you know the path to the item you want to change you can set that item’s value with gconftool from the command line.

Use gconf-editor to browse through the Gnome settings.
Use gconftool to set the value of an item in your script.

In your case, you want to do the following:

gconftool --type string --set /desktop/gnome/background/primary_color "#dadab0b08282"

Obviously you’ll want to replace that color value with whatever color you want.

upvote for pointing me in the right direction, but OP is asking for the gnome terminal — gconftool —type bool —set /apps/gnome-terminal/profiles/Default/use_theme_colors false gets rid of the hideous purple background

Читайте также:  Удалить драйвер wifi kali linux

1) Create a terminal profile with the color and settings you desire, and call it «myGterm»
2) Edit your .bashrc file.
3) Add the following line:

alias Gterm='gnome-terminal --window-with-profile=myGterm' 

4) Save and close .bashrc
5) Open a terminal and type:

I looked into it and it turns out this is not possible. I filed bug: http://bugzilla.gnome.org/show_bug.cgi?id=569869

gconftool-2 can get/set profile properties, but there is no way to script an existing, open gnome-terminal.

To create 4 terminals with different backgrounds and titles you need to add the below lines to the .bashrc_profile file

add the below lines to file

alias term1='gnome-terminal –window-with-profile=term1' alias term2='gnome-terminal –window-with-profile=term2' alias term3='gnome-terminal –window-with-profile=term3' alias term4='gnome-terminal –window-with-profile=term4' 
  1. Now edit / create your 4 terminal profiles
  2. open > terminal > edit > profiles > new > profile name = term1
  3. colors tab > choose your font and background colors
  4. Title and Command tab > initial title = term1
  5. repeat the above commands for 3 remaining terminals.

close any open terminals you may have then re-open a new terminal and type ‘term1’ hit enter and repeat for all 4 now you have 4 unique terminals open!

before the option «window-with-profile» there must be a double minus. For me it only works with: alias term1=’gnome-terminal —window-with-profile=term1′

You don’t have to do this via command you can go to Edit>>Preferences>>color to change it.

I used to do this with command line arguments to xterm. I set up my .olvwm (am I dating myself) to execute 4 xterms with different background colours.

i have created some functions, based on github code from other threads. Sorry i don’t remember.

You can put these functions in your ~/.bashrc file

As you can see, if you call «create_random_profile»,

First, it will check and delte any previous random profile you have created.

Second, it will create a random name profile in gnome terminals.

Third, it will set that name in an environment variable that you can use to change your color in predefined functions. See last function function setcolord().

This should be useful, to have many terminals with different colors. Besides, with predefined functions you can change these colors on the fly. Enjoy it!

 function create_random_profile() < #delete previous profiles in case there were something #delete_one_random_profile prof="`mktemp -u HACK_PROFILE_XXXXXXXXXX`" gconftool-2 --type list --list-type string --set $prof_list "`gconftool-2 --get $prof_list | sed "s/]/,$prof]/"`" file="`mktemp`" gconftool-2 --dump "/apps/gnome-terminal/profiles/Default" | sed "s,profiles/$2,profiles/$prof,g" >"$file" gconftool-2 --load "$file" gconftool-2 --type string --set "/apps/gnome-terminal/profiles/$prof/visible_name" "$prof" gconftool-2 --set "/apps/gnome-terminal/profiles/$prof/use_theme_colors" --type bool false rm -f -- "$file" export __TERM_PROF=$prof > function delete_one_random_profile() < regular="HACK_PROFILE_" prof=$(gconftool-2 --get /apps/gnome-terminal/global/profile_list | sed -n "s/.*\(HACK_PROFILE_. \).*/\1/p") if [ ! -z "$prof"]; then echo "size $" echo "size of regular $" echo "DO DELETE of $prof" #if not empty gconftool-2 --type list --list-type string --set $prof_list "`gconftool-2 --get $prof_list | sed "s/$prof//;s/\[,/[/;s/,,/,/;s/,]/]/"`" gconftool-2 --unset "/apps/gnome-terminal/profiles/$prof" else echo "NOTHING TO DELETE" fi > function setcolord() < echo "Dont forget to change to Profile0 in the menu of your terminal->Change Profile->Profile_0" gconftool-2 --set "/apps/gnome-terminal/profiles/$__TERM_PROF/background_color" --type string white gconftool-2 --set "/apps/gnome-terminal/profiles/$__TERM_PROF/foreground_color" --type string black > function setcolor_cyan() < echo "Dont forget to change to $__TERM_PROF in the menu of your terminal->Change Profile->Profile_0" gconftool-2 --set "/apps/gnome-terminal/profiles/$__TERM_PROF/background_color" --type string "#8DCBCC" gconftool-2 --set "/apps/gnome-terminal/profiles/$__TERM_PROF/foreground_color" --type string black > 

By the way you can save time if you create the terminal using already the random. You can do that calling:

gnome-terminal --working-directory=$HOME --window-with-profile="$prof" 

Источник

Читайте также:  Linux как убрать lvm

Как изменить цвет в терминале Linux

Большую часть задач в Ubuntu удобнее всего выполнять через терминал. Это относится к управлению файловой системой, различным настройками, установке приложений и т. д. Поэтому важно, чтобы текст в нем был комфортным для чтения и не нагружал глаза, например, из-за цветов текста и фона. Тем более, оформление достаточно легко поменять.

В рамках данной статьи будет рассказано как изменить цвет в терминале Linux на примере Ubuntu и Gnome. А еще вы узнаете, как можно создать несколько профилей и быстро переключаться между ними, например, для дневного и ночного времени суток.

Как изменить цвет в терминале Linux

Для начала откройте окно терминала, одновременно нажав на клавиатуре Ctrl + Shift + T. Откройте контекстное меню с помощью соответствующей иконки, расположенной рядом с поиском, а затем кликните по пункту Параметры.

h52evdPIAAAAASUVORK5CYII=

Теперь посетите вкладку Цвета. Изначально в ней включен режим Использовать цвета из системной темы, который автоматически выбирает подходящее оформление. Отключите его, чтобы получить полный доступ к настройкам.

AoAAAAASUVORK5CYII=

Чуть ниже расположен пункт Встроенные схемы, где можно выбрать одно из нескольких готовых оформлений терминала. А дальше уже идет ручной выбор цветов по умолчанию и разных их вариаций. Кликните по нужному пункту, укажите понравившийся оттенок и нажмите Выбрать.

yZqIOLL3UgAAAABJRU5ErkJggg==

А с помощью инструмента Пипетка можно взять цвет любой точки на экране и применить его. Его удобно сочетать с палитрой, расположенной в нижней части окна.

Также вы отдельно можете настроить цвета для выделенного текста и фона, полужирного шрифта и курсора мыши, если активируете соответствующие пункты.

f2wytTdIpGBUAAAAAElFTkSuQmCC

А ниже идет настройка прозрачности окна терминала. Если отключить параметр Use transparency from system theme, активировать Use transparent background и отрегулировать нижний ползунок, то получится такой результат:

x8nDFQhoL2uWwAAAABJRU5ErkJggg==

Самая последняя настройка Выделение жирного текста тоже может оказаться полезной. Ее имеет смысл включить, если жирный текст не станет некомфортным для чтения. А теперь разберемся с созданием профилей с разными настройками.

Профили параметров терминала

Вы можете сделать несколько цветовых схем, например, светлую и темную, и быстро переключаться между ними. Для этого в окне Параметры щелкните по иконке Добавить в виде плюса, расположенной в блоке Профили. Задайте любое имя и нажмите Создать для подтверждения.

f0UCbULHl3PvAAAAAElFTkSuQmCC

Теперь посетите вкладку Цвета и настройте все параметры по своему усмотрению. А для быстрого переключения между доступными профилями достаточно кликнуть правой кнопкой мыши по окошку терминала, в контекстном меню навести курсор на пункт Профили и выбрать нужный.

MMoZHl2axOoAAAAASUVORK5CYII=

Выводы

Теперь вы знаете как изменить цвет терминала в Ubuntu. Оформление терминала в Ubuntu можно настроить по своему усмотрению, сделав цвета текста, фона и других элементов более яркими или, наоборот, спокойными, чтобы ничего не мешало чтению. А с помощью функции профилей получится быстро переключаться между разными вариантами оформления.

Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.

Источник

How to Change Color of Ubuntu Terminal

The default terminal looks good enough if you want to get things done.

But, if you want a unique terminal experience or something that suits your taste, you can also change the color of your Ubuntu terminal.

Читайте также:  Linux установка аудио драйвера

In this quick tutorial, I shall focus on tweaking the color scheme of the terminal in Ubuntu. Ubuntu uses GNOME Terminal so the steps should be valid for most other distributions using GNOME desktop environment.

Changing the color of your Ubuntu terminal

The steps are similar to how you change the font and size of the terminal. You have to find the option for customizing colors, that’s it.

Let me quickly highlight what you need to go through to find it:

Step 1. Open the terminal window in Ubuntu by pressing Ctrl+Alt+T.

Step 2. Head to the terminal preferences. You can click on the menu button to access the Preferences or right-click anywhere on the terminal screen.

terminal preference

It will be a good idea to create a separate profile for your customization so that the default settings do not change.

Terminal Profiles

Step 3. Now, you can find the options to tweak the font size and style. But, here, you need to head to the “Colors” tab, as shown in the screenshot below.

terminal colors option

Step 4. By default, you will notice that it uses colors from the system theme. If you want to blend in with your system theme, that should be the preferred choice.

But, if you want to customize, you need to deselect the option and then start choosing the colors.

changing colors ubuntu terminal

As you can notice in the screenshot above, you can choose to use some of the built-in color schemes and also get to customize them to your liking by changing the default color option for the text and background.

You can customize every aspect of the terminal screen color, starting from the texts to the cursor, if you select a “custom” built-in scheme.

ubuntu terminal color customize

Again! Create separate profiles if you want to access different customized versions of the terminal quickly or else you will end up customizing every time you want a specific color combination.

Other ways to change the terminal color

Here are a couple of other ways to change the terminal color in Ubuntu:

Change the theme

Most Ubuntu themes have their own implementation of terminal colors and some of them actually look very nice. Here is how the terminal color scheme is changed for Ant and Orchis themes.

terminal ant theme

You choose a dark theme and your terminal turns black. No need to wonder about selecting color schemes.

Change terminal color based on your wallpaper

If you do not want to customize the colors of your terminal manually, you can utilize Pywal. With this handy Python tool, you can change the color scheme of your terminal as per your wallpaper.

It will automatically adapt to any of your active wallpapers. So, you do not have to bother customizing the terminal.

More Customization Options for Your Terminal

If you are more of a tinkerer, you would love to know that you have more options to customize the look of the terminal. You can read through our resource on different ways to tweak the look of the terminal to explore more about it.

How do you prefer to customize the terminal? Let me know your experiences in the comments below!

Источник

Оцените статью
Adblock
detector