This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Setting output level very-verbose... | |
| Setting maximum retries... | |
| Forcing --stats... | |
| Forcing --disable-capabilities-cache | |
| Forcing --force-slave-address.. | |
| This command will take a while to run... | |
| The following tests probe the runtime environment using multiple overlapping methods. | |
| Set environment variable SYSENV_QUICK_TEST or option --quickenv to skip some long-running tests. | |
| Current time (local): 2024-04-12 21:02:09 CEST |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "logo": { | |
| "source": "$(find \"${XDG_CONFIG_HOME:-$HOME/.config}/fastfetch/pngs/\" -name \"*.png\" | sort -R | head -1)", | |
| "height": 15 | |
| }, | |
| "display": { | |
| "separator": " : " | |
| }, | |
| "modules": [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Path to the configuration file | |
| CONFIG_FILE="$HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml" | |
| # Path to the wallpaper image | |
| IMAGE_PATH="/usr/share/endeavouros/backgrounds/endeavouros-wallpaper-dark.png" | |
| # Get the list of connected monitors using xrandr | |
| MONITORS=$(xrandr | grep ' connected' | awk '{print $1}') |
OlderNewer