Skip to content

Commit 418ad73

Browse files
authored
Make better look white theme (#450)
1 parent 2846a49 commit 418ad73

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- GUI frontend - uses modern GTK 3 and looks similar to FSlint
1313
- Rich search option - allows setting absolute included and excluded directories, set of allowed file extensions
1414
or excluded items with the `*` wildcard
15+
- No spying - Czkawka does not have access to the Internet, nor does it collect any user information or statistics
1516
- Multiple tools to use:
1617
- Duplicates - Finds duplicates based on file name, size, hash, hash of just first 1 MB of a file
1718
- Empty Folders - Finds empty folders with the help of an advanced algorithm

czkawka_gui/src/create_tree_view.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn create_tree_view_duplicates(tree_view: &mut gtk::TreeView) {
1919
column.pack_start(&renderer, true);
2020
column.set_resizable(false);
2121
column.set_fixed_width(30);
22-
column.add_attribute(&renderer, "visible", ColumnsDuplicates::VisibleSelectButton as i32);
22+
column.add_attribute(&renderer, "activatable", ColumnsDuplicates::ActivatableSelectButton as i32);
2323
column.add_attribute(&renderer, "active", ColumnsDuplicates::ActiveSelectButton as i32);
2424
column.add_attribute(&renderer, "cell-background", ColumnsDuplicates::Color as i32);
2525
tree_view.append_column(&column);
@@ -286,7 +286,7 @@ pub fn create_tree_view_similar_images(tree_view: &mut gtk::TreeView) {
286286
column.pack_start(&renderer, true);
287287
column.set_resizable(false);
288288
column.set_fixed_width(30);
289-
column.add_attribute(&renderer, "visible", ColumnsSimilarImages::VisibleSelectButton as i32);
289+
column.add_attribute(&renderer, "activatable", ColumnsSimilarImages::ActivatableSelectButton as i32);
290290
column.add_attribute(&renderer, "active", ColumnsSimilarImages::ActiveSelectButton as i32);
291291
column.add_attribute(&renderer, "cell-background", ColumnsSimilarImages::Color as i32);
292292
tree_view.append_column(&column);
@@ -446,7 +446,7 @@ pub fn create_tree_view_same_music(tree_view: &mut gtk::TreeView) {
446446
column.pack_start(&renderer, true);
447447
column.set_resizable(false);
448448
column.set_fixed_width(30);
449-
column.add_attribute(&renderer, "visible", ColumnsSameMusic::VisibleSelectButton as i32);
449+
column.add_attribute(&renderer, "activatable", ColumnsSameMusic::ActivatableSelectButton as i32);
450450
column.add_attribute(&renderer, "active", ColumnsSameMusic::ActiveSelectButton as i32);
451451
column.add_attribute(&renderer, "cell-background", ColumnsSameMusic::Color as i32);
452452
tree_view.append_column(&column);

czkawka_gui/src/help_functions.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub enum Message {
3131
#[derive(Debug)]
3232
pub enum ColumnsDuplicates {
3333
// Columns for duplicate treeview
34-
VisibleSelectButton = 0,
34+
ActivatableSelectButton = 0,
3535
ActiveSelectButton,
3636
Name,
3737
Path,
@@ -72,7 +72,7 @@ pub enum ColumnsTemporaryFiles {
7272
Modification,
7373
}
7474
pub enum ColumnsSimilarImages {
75-
VisibleSelectButton = 0,
75+
ActivatableSelectButton = 0,
7676
ActiveSelectButton,
7777
Similarity,
7878
Size,
@@ -94,7 +94,7 @@ pub enum ColumnsZeroedFiles {
9494
Modification,
9595
}
9696
pub enum ColumnsSameMusic {
97-
VisibleSelectButton = 0,
97+
ActivatableSelectButton = 0,
9898
ActiveSelectButton,
9999
Size,
100100
SizeAsBytes,

instructions/Installation.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ sudo xbps-install gcc pkg-config alsa-lib-devel
1919
```
2020

2121
### macOS
22-
Currently, you need to manually install `GTK 3` libraries and the Adwaita theme, because they are dynamically loaded from the OS (*we need
23-
help in using static linking*). One very straight-forward way to do this is by using [Homebrew](https://brew.sh/). Installation in the terminal:
22+
Currently, you need to manually install `GTK 3` libraries and the Adwaita theme, because they are dynamically loaded from the OS (*help in linking statically these things is needed*). One very straight-forward way to do this is by using [Homebrew](https://brew.sh/). Installation in the terminal:
2423
```shell
2524
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
2625
brew install gtk+3 adwaita-icon-theme

0 commit comments

Comments
 (0)