Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a5d8fd978 | ||
|
|
e09c4a0642 | ||
|
|
c1eb404095 | ||
|
|
7b3769da2a | ||
|
|
cc49e4026e | ||
|
|
385f4fd25b | ||
|
|
6c00321262 | ||
|
|
aa77f05a98 | ||
|
|
ccd590e397 |
@@ -1,3 +1,10 @@
|
|||||||
|
2016-05-14 0.12.11
|
||||||
|
- Fixes:
|
||||||
|
- tint2conf:
|
||||||
|
- Fixed crash in tint2conf when adding background
|
||||||
|
- Add correct extension to file name in tint2conf for 'Save as'
|
||||||
|
- Changed main window title in tint2conf
|
||||||
|
|
||||||
2016-05-07 0.12.10
|
2016-05-07 0.12.10
|
||||||
- Fixes:
|
- Fixes:
|
||||||
- Fixed crash in systray with non-Latin languagess (thanks zcodes)
|
- Fixed crash in systray with non-Latin languagess (thanks zcodes)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Latest stable release: 0.12.10
|
# Latest stable release: 0.12.11
|
||||||
Changes: https://gitlab.com/o9000/tint2/blob/0.12.10/ChangeLog
|
Changes: https://gitlab.com/o9000/tint2/blob/0.12.11/ChangeLog
|
||||||
|
|
||||||
Documentation: https://gitlab.com/o9000/tint2/wikis/Configure
|
Documentation: https://gitlab.com/o9000/tint2/wikis/Configure
|
||||||
|
|
||||||
@@ -7,7 +7,7 @@ Compile it with (see also [dependencies](https://gitlab.com/o9000/tint2/wikis/In
|
|||||||
```
|
```
|
||||||
git clone https://gitlab.com/o9000/tint2.git
|
git clone https://gitlab.com/o9000/tint2.git
|
||||||
cd tint2
|
cd tint2
|
||||||
git checkout 0.12.10
|
git checkout 0.12.11
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake ..
|
cmake ..
|
||||||
|
|||||||
@@ -237,7 +237,7 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
// define main layout : container, menubar, toolbar
|
// define main layout : container, menubar, toolbar
|
||||||
g_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
g_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
||||||
gtk_window_set_title(GTK_WINDOW(g_window), _("Panel theming"));
|
gtk_window_set_title(GTK_WINDOW(g_window), _("Tint2 panel themes"));
|
||||||
gtk_window_resize(GTK_WINDOW(g_window), 920, 600);
|
gtk_window_resize(GTK_WINDOW(g_window), 920, 600);
|
||||||
g_signal_connect(G_OBJECT(g_window), "destroy", G_CALLBACK(gtk_main_quit), NULL);
|
g_signal_connect(G_OBJECT(g_window), "destroy", G_CALLBACK(gtk_main_quit), NULL);
|
||||||
vBox = gtk_vbox_new(FALSE, 0);
|
vBox = gtk_vbox_new(FALSE, 0);
|
||||||
@@ -418,13 +418,38 @@ static void menuSaveAs()
|
|||||||
GTK_RESPONSE_ACCEPT,
|
GTK_RESPONSE_ACCEPT,
|
||||||
NULL);
|
NULL);
|
||||||
GtkFileChooser *chooser = GTK_FILE_CHOOSER(dialog);
|
GtkFileChooser *chooser = GTK_FILE_CHOOSER(dialog);
|
||||||
gtk_file_chooser_set_do_overwrite_confirmation(chooser, TRUE);
|
gtk_file_chooser_set_do_overwrite_confirmation(chooser, FALSE);
|
||||||
gchar *config_dir = g_build_filename(g_get_home_dir(), ".config", "tint2", NULL);
|
gchar *config_dir = g_build_filename(g_get_home_dir(), ".config", "tint2", NULL);
|
||||||
gtk_file_chooser_set_current_folder(chooser, config_dir);
|
gtk_file_chooser_set_current_folder(chooser, config_dir);
|
||||||
g_free(config_dir);
|
g_free(config_dir);
|
||||||
|
GtkFileFilter *filter = gtk_file_filter_new();
|
||||||
|
gtk_file_filter_add_pattern(filter, "*.tint2rc");
|
||||||
|
gtk_file_filter_add_pattern(filter, "tint2rc");
|
||||||
|
gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog), filter);
|
||||||
gtk_file_chooser_set_current_name(chooser, filename);
|
gtk_file_chooser_set_current_name(chooser, filename);
|
||||||
if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
|
if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
|
||||||
gchar *newpath = gtk_file_chooser_get_filename(chooser);
|
gchar *newpath = gtk_file_chooser_get_filename(chooser);
|
||||||
|
if (!endswith(newpath, ".tint2rc") && !endswith(newpath, "/tint2rc")) {
|
||||||
|
gchar *proper_path = g_strdup_printf("%s.tint2rc", newpath);
|
||||||
|
g_free(newpath);
|
||||||
|
newpath = proper_path;
|
||||||
|
}
|
||||||
|
if (g_file_test(newpath, G_FILE_TEST_EXISTS)) {
|
||||||
|
GtkWidget *w = gtk_message_dialog_new(GTK_WINDOW(g_window),
|
||||||
|
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
|
||||||
|
GTK_MESSAGE_QUESTION,
|
||||||
|
GTK_BUTTONS_YES_NO,
|
||||||
|
_("A file named \"%s\" already exists. Do you want to replace it?"),
|
||||||
|
newpath);
|
||||||
|
gint response = gtk_dialog_run(GTK_DIALOG(w));
|
||||||
|
gtk_widget_destroy(w);
|
||||||
|
if (response != GTK_RESPONSE_YES) {
|
||||||
|
g_free(newpath);
|
||||||
|
gtk_widget_destroy(dialog);
|
||||||
|
g_free(filepath);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
import_with_overwrite(filepath, newpath);
|
import_with_overwrite(filepath, newpath);
|
||||||
g_free(newpath);
|
g_free(newpath);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2059,7 +2059,7 @@ msgid "tint2conf"
|
|||||||
msgstr "tint2conf"
|
msgstr "tint2conf"
|
||||||
|
|
||||||
#: ../main.c:240
|
#: ../main.c:240
|
||||||
msgid "Panel theming"
|
msgid "Tint2 panel themes"
|
||||||
msgstr "Izgled ploče"
|
msgstr "Izgled ploče"
|
||||||
|
|
||||||
#: ../main.c:250
|
#: ../main.c:250
|
||||||
@@ -2189,16 +2189,21 @@ msgstr "Uredi odabranu temu"
|
|||||||
msgid "Save theme as"
|
msgid "Save theme as"
|
||||||
msgstr "Snimiti temu kao"
|
msgstr "Snimiti temu kao"
|
||||||
|
|
||||||
#: ../main.c:446
|
#: ../main.c:439
|
||||||
|
#, c-format
|
||||||
|
msgid "A file named \"%s\" already exists. Do you want to replace it?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../main.c:472
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Do you really want to delete the selected theme?"
|
msgid "Do you really want to delete the selected theme?"
|
||||||
msgstr "Uredi odabranu temu"
|
msgstr "Uredi odabranu temu"
|
||||||
|
|
||||||
#: ../main.c:485
|
#: ../main.c:511
|
||||||
msgid "Do you really want to reset the selected theme to default?"
|
msgid "Do you really want to reset the selected theme to default?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../main.c:653
|
#: ../main.c:679
|
||||||
msgid "Do you really want to replace the default theme with the selected "
|
msgid "Do you really want to replace the default theme with the selected "
|
||||||
"theme?"
|
"theme?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -2117,8 +2117,8 @@ msgid "tint2conf"
|
|||||||
msgstr "tint2conf"
|
msgstr "tint2conf"
|
||||||
|
|
||||||
#: ../main.c:240
|
#: ../main.c:240
|
||||||
msgid "Panel theming"
|
msgid "Tint2 panel themes"
|
||||||
msgstr "Thème du panel"
|
msgstr "Thème du panel tint2"
|
||||||
|
|
||||||
#: ../main.c:250
|
#: ../main.c:250
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@@ -2240,15 +2240,21 @@ msgstr "Veuillez sélectionner un thème."
|
|||||||
msgid "Save theme as"
|
msgid "Save theme as"
|
||||||
msgstr "Enregistrer le thème sous"
|
msgstr "Enregistrer le thème sous"
|
||||||
|
|
||||||
#: ../main.c:446
|
#: ../main.c:439
|
||||||
|
#, c-format
|
||||||
|
msgid "A file named \"%s\" already exists. Do you want to replace it?"
|
||||||
|
msgstr "Un fichier nommé « %s » existe déjà. Voulez-vous le remplacer ?"
|
||||||
|
|
||||||
|
#: ../main.c:472
|
||||||
msgid "Do you really want to delete the selected theme?"
|
msgid "Do you really want to delete the selected theme?"
|
||||||
msgstr "Voulez-vous vraiment supprimer le thème choisi?"
|
msgstr "Voulez-vous vraiment supprimer le thème choisi?"
|
||||||
|
|
||||||
#: ../main.c:485
|
#: ../main.c:511
|
||||||
msgid "Do you really want to reset the selected theme to default?"
|
msgid "Do you really want to reset the selected theme to default?"
|
||||||
msgstr "Voulez-vous vraiment revenir au thème par défaut?"
|
msgstr "Voulez-vous vraiment revenir au thème par défaut?"
|
||||||
|
|
||||||
#: ../main.c:653
|
#: ../main.c:679
|
||||||
msgid "Do you really want to replace the default theme with the selected "
|
msgid "Do you really want to replace the default theme with the selected "
|
||||||
"theme?"
|
"theme?"
|
||||||
msgstr "Voulez-vous vraiment remplacer le thème par défaut par celui sélectionné?"
|
msgstr "Voulez-vous vraiment remplacer le thème par défaut par celui "
|
||||||
|
"sélectionné?"
|
||||||
|
|||||||
@@ -2059,7 +2059,7 @@ msgid "tint2conf"
|
|||||||
msgstr "tint2conf"
|
msgstr "tint2conf"
|
||||||
|
|
||||||
#: ../main.c:240
|
#: ../main.c:240
|
||||||
msgid "Panel theming"
|
msgid "Tint2 panel themes"
|
||||||
msgstr "Izgled ploče"
|
msgstr "Izgled ploče"
|
||||||
|
|
||||||
#: ../main.c:250
|
#: ../main.c:250
|
||||||
@@ -2189,16 +2189,21 @@ msgstr "Uredi odabranu temu"
|
|||||||
msgid "Save theme as"
|
msgid "Save theme as"
|
||||||
msgstr "Snimiti temu kao"
|
msgstr "Snimiti temu kao"
|
||||||
|
|
||||||
#: ../main.c:446
|
#: ../main.c:439
|
||||||
|
#, c-format
|
||||||
|
msgid "A file named \"%s\" already exists. Do you want to replace it?"
|
||||||
|
msgstr "Datoteka imena \"%s\" već postoji. Želite li ju zamjeniti?"
|
||||||
|
|
||||||
|
#: ../main.c:472
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Do you really want to delete the selected theme?"
|
msgid "Do you really want to delete the selected theme?"
|
||||||
msgstr "Uredi odabranu temu"
|
msgstr "Uredi odabranu temu"
|
||||||
|
|
||||||
#: ../main.c:485
|
#: ../main.c:511
|
||||||
msgid "Do you really want to reset the selected theme to default?"
|
msgid "Do you really want to reset the selected theme to default?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../main.c:653
|
#: ../main.c:679
|
||||||
msgid "Do you really want to replace the default theme with the selected "
|
msgid "Do you really want to replace the default theme with the selected "
|
||||||
"theme?"
|
"theme?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -2093,7 +2093,7 @@ msgid "tint2conf"
|
|||||||
msgstr "tint2conf"
|
msgstr "tint2conf"
|
||||||
|
|
||||||
#: ../main.c:240
|
#: ../main.c:240
|
||||||
msgid "Panel theming"
|
msgid "Tint2 panel themes"
|
||||||
msgstr "Wygląd panelu"
|
msgstr "Wygląd panelu"
|
||||||
|
|
||||||
#: ../main.c:250
|
#: ../main.c:250
|
||||||
@@ -2223,16 +2223,21 @@ msgstr "Edycja wybranego motywu"
|
|||||||
msgid "Save theme as"
|
msgid "Save theme as"
|
||||||
msgstr "Zapisz motyw jako"
|
msgstr "Zapisz motyw jako"
|
||||||
|
|
||||||
#: ../main.c:446
|
#: ../main.c:439
|
||||||
|
#, c-format
|
||||||
|
msgid "A file named \"%s\" already exists. Do you want to replace it?"
|
||||||
|
msgstr "Plik o nazwie \"%s\" już istnieje. Zastąpić go?"
|
||||||
|
|
||||||
|
#: ../main.c:472
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Do you really want to delete the selected theme?"
|
msgid "Do you really want to delete the selected theme?"
|
||||||
msgstr "Edycja wybranego motywu"
|
msgstr "Edycja wybranego motywu"
|
||||||
|
|
||||||
#: ../main.c:485
|
#: ../main.c:511
|
||||||
msgid "Do you really want to reset the selected theme to default?"
|
msgid "Do you really want to reset the selected theme to default?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../main.c:653
|
#: ../main.c:679
|
||||||
msgid "Do you really want to replace the default theme with the selected "
|
msgid "Do you really want to replace the default theme with the selected "
|
||||||
"theme?"
|
"theme?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -2058,7 +2058,7 @@ msgid "tint2conf"
|
|||||||
msgstr "тинт2конф"
|
msgstr "тинт2конф"
|
||||||
|
|
||||||
#: ../main.c:240
|
#: ../main.c:240
|
||||||
msgid "Panel theming"
|
msgid "Tint2 panel themes"
|
||||||
msgstr "Изглед плоче"
|
msgstr "Изглед плоче"
|
||||||
|
|
||||||
#: ../main.c:250
|
#: ../main.c:250
|
||||||
@@ -2188,16 +2188,21 @@ msgstr "Уреди одабрану тему"
|
|||||||
msgid "Save theme as"
|
msgid "Save theme as"
|
||||||
msgstr "Снимити тему као"
|
msgstr "Снимити тему као"
|
||||||
|
|
||||||
#: ../main.c:446
|
#: ../main.c:439
|
||||||
|
#, c-format
|
||||||
|
msgid "A file named \"%s\" already exists. Do you want to replace it?"
|
||||||
|
msgstr "Датотека под називом „%s“ већ постоји. Да ли желите да је замените?"
|
||||||
|
|
||||||
|
#: ../main.c:472
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Do you really want to delete the selected theme?"
|
msgid "Do you really want to delete the selected theme?"
|
||||||
msgstr "Уреди одабрану тему"
|
msgstr "Уреди одабрану тему"
|
||||||
|
|
||||||
#: ../main.c:485
|
#: ../main.c:511
|
||||||
msgid "Do you really want to reset the selected theme to default?"
|
msgid "Do you really want to reset the selected theme to default?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../main.c:653
|
#: ../main.c:679
|
||||||
msgid "Do you really want to replace the default theme with the selected "
|
msgid "Do you really want to replace the default theme with the selected "
|
||||||
"theme?"
|
"theme?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -1914,7 +1914,7 @@ msgid "tint2conf"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../main.c:240
|
#: ../main.c:240
|
||||||
msgid "Panel theming"
|
msgid "Tint2 panel themes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../main.c:250
|
#: ../main.c:250
|
||||||
@@ -2036,15 +2036,20 @@ msgstr ""
|
|||||||
msgid "Save theme as"
|
msgid "Save theme as"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../main.c:446
|
#: ../main.c:439
|
||||||
|
#, c-format
|
||||||
|
msgid "A file named \"%s\" already exists. Do you want to replace it?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../main.c:472
|
||||||
msgid "Do you really want to delete the selected theme?"
|
msgid "Do you really want to delete the selected theme?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../main.c:485
|
#: ../main.c:511
|
||||||
msgid "Do you really want to reset the selected theme to default?"
|
msgid "Do you really want to reset the selected theme to default?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../main.c:653
|
#: ../main.c:679
|
||||||
msgid ""
|
msgid ""
|
||||||
"Do you really want to replace the default theme with the selected theme?"
|
"Do you really want to replace the default theme with the selected theme?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -735,6 +735,7 @@ void background_create_new()
|
|||||||
bgColBorderOpacity, borderOpacity,
|
bgColBorderOpacity, borderOpacity,
|
||||||
bgColBorderWidth, b,
|
bgColBorderWidth, b,
|
||||||
bgColCornerRadius, r,
|
bgColCornerRadius, r,
|
||||||
|
bgColText, "",
|
||||||
bgColFillColorOver, &fillColorOver,
|
bgColFillColorOver, &fillColorOver,
|
||||||
bgColFillOpacityOver, fillOpacityOver,
|
bgColFillOpacityOver, fillOpacityOver,
|
||||||
bgColBorderColorOver, &borderColorOver,
|
bgColBorderColorOver, &borderColorOver,
|
||||||
@@ -743,7 +744,6 @@ void background_create_new()
|
|||||||
bgColFillOpacityPress, fillOpacityPress,
|
bgColFillOpacityPress, fillOpacityPress,
|
||||||
bgColBorderColorPress, &borderColorPress,
|
bgColBorderColorPress, &borderColorPress,
|
||||||
bgColBorderOpacityPress, borderOpacityPress,
|
bgColBorderOpacityPress, borderOpacityPress,
|
||||||
bgColText, "",
|
|
||||||
-1);
|
-1);
|
||||||
|
|
||||||
background_update_image(index);
|
background_update_image(index);
|
||||||
@@ -805,6 +805,7 @@ void background_duplicate(GtkWidget *widget, gpointer data)
|
|||||||
bgColFillOpacity, fillOpacity,
|
bgColFillOpacity, fillOpacity,
|
||||||
bgColBorderColor, borderColor,
|
bgColBorderColor, borderColor,
|
||||||
bgColBorderOpacity, borderOpacity,
|
bgColBorderOpacity, borderOpacity,
|
||||||
|
bgColText, "",
|
||||||
bgColFillColorOver, fillColorOver,
|
bgColFillColorOver, fillColorOver,
|
||||||
bgColFillOpacityOver, fillOpacityOver,
|
bgColFillOpacityOver, fillOpacityOver,
|
||||||
bgColBorderColorOver, borderColorOver,
|
bgColBorderColorOver, borderColorOver,
|
||||||
@@ -815,7 +816,6 @@ void background_duplicate(GtkWidget *widget, gpointer data)
|
|||||||
bgColBorderOpacityPress, borderOpacityPress,
|
bgColBorderOpacityPress, borderOpacityPress,
|
||||||
bgColBorderWidth, b,
|
bgColBorderWidth, b,
|
||||||
bgColCornerRadius, r,
|
bgColCornerRadius, r,
|
||||||
bgColText, ""
|
|
||||||
-1);
|
-1);
|
||||||
g_boxed_free(GDK_TYPE_COLOR, fillColor);
|
g_boxed_free(GDK_TYPE_COLOR, fillColor);
|
||||||
g_boxed_free(GDK_TYPE_COLOR, borderColor);
|
g_boxed_free(GDK_TYPE_COLOR, borderColor);
|
||||||
@@ -2080,9 +2080,9 @@ void launcher_add_app(GtkWidget *widget, gpointer data)
|
|||||||
gtk_list_store_append(launcher_apps, &iter);
|
gtk_list_store_append(launcher_apps, &iter);
|
||||||
gtk_list_store_set(launcher_apps, &iter,
|
gtk_list_store_set(launcher_apps, &iter,
|
||||||
appsColIcon, pixbuf,
|
appsColIcon, pixbuf,
|
||||||
|
appsColIconName, g_strdup(iconName),
|
||||||
appsColText, g_strdup(name),
|
appsColText, g_strdup(name),
|
||||||
appsColPath, g_strdup(path),
|
appsColPath, g_strdup(path),
|
||||||
appsColIconName, g_strdup(iconName),
|
|
||||||
-1);
|
-1);
|
||||||
if (pixbuf)
|
if (pixbuf)
|
||||||
g_object_unref(pixbuf);
|
g_object_unref(pixbuf);
|
||||||
@@ -2324,9 +2324,9 @@ void load_desktop_file(const char *file, gboolean selected)
|
|||||||
gtk_list_store_insert(store, &iter, index);
|
gtk_list_store_insert(store, &iter, index);
|
||||||
gtk_list_store_set(store, &iter,
|
gtk_list_store_set(store, &iter,
|
||||||
appsColIcon, pixbuf,
|
appsColIcon, pixbuf,
|
||||||
|
appsColIconName, g_strdup(entry.icon),
|
||||||
appsColText, g_strdup(entry.name),
|
appsColText, g_strdup(entry.name),
|
||||||
appsColPath, g_strdup(file),
|
appsColPath, g_strdup(file),
|
||||||
appsColIconName, g_strdup(entry.icon),
|
|
||||||
-1);
|
-1);
|
||||||
if (pixbuf)
|
if (pixbuf)
|
||||||
g_object_unref(pixbuf);
|
g_object_unref(pixbuf);
|
||||||
@@ -2337,9 +2337,9 @@ void load_desktop_file(const char *file, gboolean selected)
|
|||||||
gtk_list_store_append(store, &iter);
|
gtk_list_store_append(store, &iter);
|
||||||
gtk_list_store_set(store, &iter,
|
gtk_list_store_set(store, &iter,
|
||||||
appsColIcon, pixbuf,
|
appsColIcon, pixbuf,
|
||||||
|
appsColIconName, g_strdup(""),
|
||||||
appsColText, g_strdup(file),
|
appsColText, g_strdup(file),
|
||||||
appsColPath, g_strdup(file),
|
appsColPath, g_strdup(file),
|
||||||
appsColIconName, g_strdup(""),
|
|
||||||
-1);
|
-1);
|
||||||
if (pixbuf)
|
if (pixbuf)
|
||||||
g_object_unref(pixbuf);
|
g_object_unref(pixbuf);
|
||||||
@@ -2359,9 +2359,9 @@ void populate_from_entries(GList *entries, gboolean selected)
|
|||||||
gtk_list_store_append(selected ? launcher_apps : all_apps, &iter);
|
gtk_list_store_append(selected ? launcher_apps : all_apps, &iter);
|
||||||
gtk_list_store_set(selected ? launcher_apps :all_apps, &iter,
|
gtk_list_store_set(selected ? launcher_apps :all_apps, &iter,
|
||||||
appsColIcon, pixbuf,
|
appsColIcon, pixbuf,
|
||||||
|
appsColIconName, g_strdup(entry->icon),
|
||||||
appsColText, g_strdup(entry->name),
|
appsColText, g_strdup(entry->name),
|
||||||
appsColPath, g_strdup(entry->path),
|
appsColPath, g_strdup(entry->path),
|
||||||
appsColIconName, g_strdup(entry->icon),
|
|
||||||
-1);
|
-1);
|
||||||
if (pixbuf)
|
if (pixbuf)
|
||||||
g_object_unref(pixbuf);
|
g_object_unref(pixbuf);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#---- Generated by tint2conf bd50 ----
|
#---- Generated by tint2conf 2e3c ----
|
||||||
# See https://gitlab.com/o9000/tint2/wikis/Configure for
|
# See https://gitlab.com/o9000/tint2/wikis/Configure for
|
||||||
# full documentation of the configuration options.
|
# full documentation of the configuration options.
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
@@ -67,11 +67,11 @@ border_color_pressed = #555555 100
|
|||||||
rounded = 2
|
rounded = 2
|
||||||
border_width = 1
|
border_width = 1
|
||||||
background_color = #222222 100
|
background_color = #222222 100
|
||||||
border_color = #777777 100
|
border_color = #777777 30
|
||||||
background_color_hover = #222222 100
|
background_color_hover = #222222 100
|
||||||
border_color_hover = #777777 100
|
border_color_hover = #777777 30
|
||||||
background_color_pressed = #222222 100
|
background_color_pressed = #222222 100
|
||||||
border_color_pressed = #777777 100
|
border_color_pressed = #777777 30
|
||||||
|
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
# Panel
|
# Panel
|
||||||
@@ -85,6 +85,7 @@ panel_dock = 0
|
|||||||
panel_position = bottom center horizontal
|
panel_position = bottom center horizontal
|
||||||
panel_layer = normal
|
panel_layer = normal
|
||||||
panel_monitor = all
|
panel_monitor = all
|
||||||
|
primary_monitor_first = 0
|
||||||
autohide = 0
|
autohide = 0
|
||||||
autohide_show_timeout = 0
|
autohide_show_timeout = 0
|
||||||
autohide_hide_timeout = 0.5
|
autohide_hide_timeout = 0.5
|
||||||
@@ -106,6 +107,7 @@ taskbar_active_background_id = 0
|
|||||||
taskbar_name = 1
|
taskbar_name = 1
|
||||||
taskbar_hide_inactive_tasks = 0
|
taskbar_hide_inactive_tasks = 0
|
||||||
taskbar_hide_different_monitor = 0
|
taskbar_hide_different_monitor = 0
|
||||||
|
taskbar_always_show_all_desktop_tasks = 0
|
||||||
taskbar_name_padding = 6 3
|
taskbar_name_padding = 6 3
|
||||||
taskbar_name_background_id = 6
|
taskbar_name_background_id = 6
|
||||||
taskbar_name_active_background_id = 7
|
taskbar_name_active_background_id = 7
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#---- Generated by tint2conf 5b63 ----
|
#---- Generated by tint2conf 2c73 ----
|
||||||
# See https://gitlab.com/o9000/tint2/wikis/Configure for
|
# See https://gitlab.com/o9000/tint2/wikis/Configure for
|
||||||
# full documentation of the configuration options.
|
# full documentation of the configuration options.
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
@@ -57,11 +57,11 @@ border_color_pressed = #999999 100
|
|||||||
rounded = 2
|
rounded = 2
|
||||||
border_width = 1
|
border_width = 1
|
||||||
background_color = #eeeeee 4
|
background_color = #eeeeee 4
|
||||||
border_color = #cccccc 100
|
border_color = #cccccc 30
|
||||||
background_color_hover = #eeeeee 22
|
background_color_hover = #eeeeee 22
|
||||||
border_color_hover = #999999 100
|
border_color_hover = #999999 30
|
||||||
background_color_pressed = #dddddd 4
|
background_color_pressed = #dddddd 4
|
||||||
border_color_pressed = #999999 100
|
border_color_pressed = #999999 30
|
||||||
|
|
||||||
# Background 7: Active desktop name
|
# Background 7: Active desktop name
|
||||||
rounded = 2
|
rounded = 2
|
||||||
@@ -85,6 +85,7 @@ panel_dock = 0
|
|||||||
panel_position = bottom center horizontal
|
panel_position = bottom center horizontal
|
||||||
panel_layer = normal
|
panel_layer = normal
|
||||||
panel_monitor = all
|
panel_monitor = all
|
||||||
|
primary_monitor_first = 0
|
||||||
autohide = 0
|
autohide = 0
|
||||||
autohide_show_timeout = 0
|
autohide_show_timeout = 0
|
||||||
autohide_hide_timeout = 0.5
|
autohide_hide_timeout = 0.5
|
||||||
@@ -106,6 +107,7 @@ taskbar_active_background_id = 0
|
|||||||
taskbar_name = 1
|
taskbar_name = 1
|
||||||
taskbar_hide_inactive_tasks = 0
|
taskbar_hide_inactive_tasks = 0
|
||||||
taskbar_hide_different_monitor = 0
|
taskbar_hide_different_monitor = 0
|
||||||
|
taskbar_always_show_all_desktop_tasks = 0
|
||||||
taskbar_name_padding = 6 3
|
taskbar_name_padding = 6 3
|
||||||
taskbar_name_background_id = 6
|
taskbar_name_background_id = 6
|
||||||
taskbar_name_active_background_id = 7
|
taskbar_name_active_background_id = 7
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#---- Generated by tint2conf 812e ----
|
#---- Generated by tint2conf ac71 ----
|
||||||
# See https://gitlab.com/o9000/tint2/wikis/Configure for
|
# See https://gitlab.com/o9000/tint2/wikis/Configure for
|
||||||
# full documentation of the configuration options.
|
# full documentation of the configuration options.
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
@@ -57,11 +57,11 @@ border_color_pressed = #999999 100
|
|||||||
rounded = 2
|
rounded = 2
|
||||||
border_width = 1
|
border_width = 1
|
||||||
background_color = #eeeeee 4
|
background_color = #eeeeee 4
|
||||||
border_color = #999999 100
|
border_color = #999999 30
|
||||||
background_color_hover = #eeeeee 22
|
background_color_hover = #eeeeee 22
|
||||||
border_color_hover = #999999 100
|
border_color_hover = #999999 30
|
||||||
background_color_pressed = #dddddd 4
|
background_color_pressed = #dddddd 4
|
||||||
border_color_pressed = #999999 100
|
border_color_pressed = #999999 30
|
||||||
|
|
||||||
# Background 7: Active desktop name
|
# Background 7: Active desktop name
|
||||||
rounded = 2
|
rounded = 2
|
||||||
@@ -85,6 +85,7 @@ panel_dock = 0
|
|||||||
panel_position = bottom left vertical
|
panel_position = bottom left vertical
|
||||||
panel_layer = normal
|
panel_layer = normal
|
||||||
panel_monitor = all
|
panel_monitor = all
|
||||||
|
primary_monitor_first = 0
|
||||||
autohide = 0
|
autohide = 0
|
||||||
autohide_show_timeout = 0
|
autohide_show_timeout = 0
|
||||||
autohide_hide_timeout = 0.5
|
autohide_hide_timeout = 0.5
|
||||||
@@ -106,6 +107,7 @@ taskbar_active_background_id = 0
|
|||||||
taskbar_name = 1
|
taskbar_name = 1
|
||||||
taskbar_hide_inactive_tasks = 0
|
taskbar_hide_inactive_tasks = 0
|
||||||
taskbar_hide_different_monitor = 0
|
taskbar_hide_different_monitor = 0
|
||||||
|
taskbar_always_show_all_desktop_tasks = 0
|
||||||
taskbar_name_padding = 6 3
|
taskbar_name_padding = 6 3
|
||||||
taskbar_name_background_id = 6
|
taskbar_name_background_id = 6
|
||||||
taskbar_name_active_background_id = 7
|
taskbar_name_active_background_id = 7
|
||||||
|
|||||||
Reference in New Issue
Block a user