You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 3, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,22 @@
1
1
# Changelog "linux_mint"
2
2
3
+
## Version 2.8.2 [2024-04-15]
4
+
5
+
* Fixed problem with p10k fonts being not properly copied to the fonts directory
6
+
* Fixed missing switch of user's shell in case of zsh installation
7
+
*[APPLICATION] added `kubectl` package missing in the previous release
8
+
*[APPLICATION] removed `dropbox` package as its role is now covered by `insync` package. If you still use Dropbox, please add it to `mint_custom.yaml` file
9
+
*[APPLICATION] removed `veamsnap` package as it's no longer required, in favor of `blksnap` package
10
+
*[APPLICATION] added `cheese` package
11
+
*[PACKAGES] added `yq` package
12
+
*[PACKAGES] added `micro`
13
+
*[APPLICATION] added `atuin` package [https://github.com/atuinsh/atuin](https://github.com/atuinsh/atuin) in version 18.2.0
14
+
*[PACKAGES] upgraded `gping` to version 1.16.1
15
+
*[PACKAGES] upgraded `steampipe` to version 0.22.2
| GIMP | GNU Image Manipulation Program | [https://www.gimp.org/](https://www.gimp.org/)|
296
-
| Insync|Googledrive & Onedrive linux client|[https://www.insynchq.com/](https://www.insynchq.com/)|
299
+
| Insync|Googledrive & Onedrive linux client|[https://www.insynchq.com/](https://www.insynchq.com/)|
297
300
| Kodi | Open Source Home Theater| [https://kodi.tv/](https://kodi.tv/)|
298
301
| Neofetch |A command-line system information tool written in bash 3.2+| [https://github.com/dylanaraps/neofetch](https://github.com/dylanaraps/neofetch)|
299
302
| Pinta | Drawing/Image Editing| [https://pinta-project.com/pintaproject/pinta/](https://pinta-project.com/pintaproject/pinta/)|
@@ -352,18 +355,76 @@ custom_packages:
352
355
|install_yubico_software|Install keys, repositories, packages and dekstop files for Yubico infrastructure|[https://yubico.com](https://yubico.com)|
353
356
|configure_zsh|Installs files required by zsh, `oh-my-zsh` and `powerlevel10k`|[https://github.com/ohmyzsh/ohmyzsh](https://github.com/ohmyzsh/ohmyzsh) [https://github.com/romkatv/powerlevel10k](https://github.com/romkatv/powerlevel10k)|
|configure_neofetch|Installs and configures neofetch|[https://github.com/dylanaraps/neofetch](https://github.com/dylanaraps/neofetch)|
355
359
||||
356
360
361
+
### 'configure_neofetch` task
362
+
363
+
This guide details the automation of Neofetch configuration adjustments using an Ansible playbook. By specifying various tasks in the playbook, users can easily comment out or uncomment specific lines within the Neofetch configuration file, toggle key-value pairs between "on" and "off", and ensure the creation of the Neofetch configuration file if it doesn't exist. Furthermore, it includes adding Neofetch to the global bashrc file for automatic execution.
364
+
365
+
The playbook operates based on a defined payload structure within a YAML file. Here's an example of the payload configuration for the Neofetch automation task:
- `remove_lines`: A list of items to be commented out in the Neofetch configuration file. This list should contain the titles of the information blocks as they appear in the configuration.
398
+
399
+
```yaml
400
+
remove_lines:
401
+
- Packages
402
+
- Resolution
403
+
```
404
+
405
+
- `add_lines`: Similar to remove_lines, but these items will be uncommented if they were previously commented out, ensuring they are active in the Neofetch output.
406
+
407
+
```yaml
408
+
add_lines:
409
+
- Disk
410
+
- Local IP
411
+
```
412
+
413
+
- `toggle_items`: This section allows for toggling specific key-value pairs within the configuration file. For example, changing color_blocks from "on" to "off" or vice versa.
414
+
415
+
```yaml
416
+
toggle_items:
417
+
- key: 'color_blocks'
418
+
value: 'off'
419
+
```
420
+
357
421
## Startup applications
358
422
359
423
Some applications are copied to `autostart` folder
0 commit comments