Initial snapshot: CachyOS clean install setup
System state captured with: - 1258 packages (224 auto-installed) - Flatpak apps and overrides - GNOME extensions (8 user + system) - Theme: WhiteSur + macos-like-window-controls - Vencord-patched Discord Flatpak - All gsettings and shortcuts
This commit is contained in:
Executable
+137
@@ -0,0 +1,137 @@
|
||||
#!/bin/bash
|
||||
# CachyOS Setup Snapshot Script
|
||||
# Usage: ./snapshot.sh
|
||||
# Creates timestamped snapshot of all system configuration for clean install reference
|
||||
|
||||
set -e
|
||||
|
||||
SNAPSHOT_DIR="snapshots/$(date +%Y-%m-%d_%H-%M-%S)"
|
||||
mkdir -p "$SNAPSHOT_DIR"
|
||||
cd "$SNAPSHOT_DIR"
|
||||
|
||||
echo "Creating snapshot..."
|
||||
|
||||
# System info
|
||||
{
|
||||
echo "=== System Information ==="
|
||||
echo ""
|
||||
echo "--- OS ---"
|
||||
cat /etc/os-release
|
||||
echo ""
|
||||
echo "--- Kernel ---"
|
||||
uname -a
|
||||
echo ""
|
||||
echo "--- GPU ---"
|
||||
lspci 2>/dev/null | grep -i vga || echo "Not detected"
|
||||
echo ""
|
||||
echo "--- Display Server ---"
|
||||
echo "Wayland: $XDG_SESSION_TYPE"
|
||||
echo "Display: $DISPLAY"
|
||||
echo ""
|
||||
echo "--- Uptime ---"
|
||||
uptime
|
||||
echo ""
|
||||
echo "--- CPU ---"
|
||||
lscpu 2>/dev/null | grep "Model name" || echo "Not available"
|
||||
echo ""
|
||||
echo "--- RAM ---"
|
||||
free -h 2>/dev/null || cat /proc/meminfo | head -5
|
||||
} > system-info.txt
|
||||
|
||||
# Pacman packages
|
||||
{
|
||||
echo "=== Auto-installed packages (dependencies) ==="
|
||||
echo "Count: $(pacman -Qe 2>/dev/null | wc -l)"
|
||||
echo ""
|
||||
pacman -Qe 2>/dev/null
|
||||
echo ""
|
||||
echo "=== All installed packages ==="
|
||||
echo "Count: $(pacman -Q 2>/dev/null | wc -l)"
|
||||
echo ""
|
||||
pacman -Q 2>/dev/null
|
||||
} > pacman-packages.txt
|
||||
|
||||
# Flatpak
|
||||
{
|
||||
echo "=== Flatpak Applications ==="
|
||||
echo ""
|
||||
flatpak list 2>/dev/null
|
||||
echo ""
|
||||
echo "=== Flatpak Remotes ==="
|
||||
echo ""
|
||||
flatpak remotes 2>/dev/null
|
||||
echo ""
|
||||
echo "=== Flatpak Overrides ==="
|
||||
echo ""
|
||||
flatpak override --show 2>/dev/null
|
||||
} > flatpak-list.txt
|
||||
|
||||
# GNOME extensions
|
||||
{
|
||||
echo "=== GNOME Extensions ==="
|
||||
echo ""
|
||||
echo "--- User extensions ---"
|
||||
ls -la ~/.local/share/gnome-shell/extensions/ 2>/dev/null || echo "None"
|
||||
echo ""
|
||||
echo "--- System extensions ---"
|
||||
ls -la /usr/share/gnome-shell/extensions/ 2>/dev/null || echo "None"
|
||||
} > gnome-extensions.txt
|
||||
|
||||
# Theme configuration
|
||||
{
|
||||
echo "=== Theme Configuration ==="
|
||||
echo ""
|
||||
echo "--- GTK Theme ---"
|
||||
gsettings get org.gnome.desktop.interface gtk-theme
|
||||
echo ""
|
||||
echo "--- User Theme ---"
|
||||
gsettings get org.gnome.shell.extensions.user-theme name 2>/dev/null || echo "Not set"
|
||||
echo ""
|
||||
echo "--- Installed Themes ---"
|
||||
ls -la ~/.themes/ 2>/dev/null
|
||||
ls -la ~/.local/share/themes/ 2>/dev/null
|
||||
echo ""
|
||||
echo "--- GTK 3.0 css ---"
|
||||
cat ~/.config/gtk-3.0/gtk.css 2>/dev/null || echo "Not configured"
|
||||
echo ""
|
||||
echo "--- GTK 4.0 css ---"
|
||||
cat ~/.config/gtk-4.0/gtk.css 2>/dev/null || echo "Not configured"
|
||||
echo ""
|
||||
echo "--- macos-like-window-controls ---"
|
||||
ls -la ~/.config/macos-like-window-controls/ 2>/dev/null || echo "Not installed"
|
||||
} > theme-config.txt
|
||||
|
||||
# GNOME settings
|
||||
gsettings list-recursively > gsettings-dump.txt 2>/dev/null || echo "gsettings dump failed"
|
||||
|
||||
# GNOME shell specific
|
||||
{
|
||||
echo "=== GNOME Shell Settings ==="
|
||||
echo ""
|
||||
echo "--- Shell ---"
|
||||
gsettings list-recursively org.gnome.shell 2>/dev/null
|
||||
echo ""
|
||||
echo "--- Dash to Dock ---"
|
||||
gsettings list-recursively org.gnome.shell.extensions.dash-to-dock 2>/dev/null
|
||||
} > gnome-shell-settings.txt
|
||||
|
||||
# Custom shortcuts
|
||||
{
|
||||
echo "=== Keyboard Shortcuts ==="
|
||||
echo ""
|
||||
echo "--- Custom keybindings ---"
|
||||
gsettings get org.gnome.settings-daemon.plugins.media-keys custom-keybindings
|
||||
echo ""
|
||||
echo "--- All media keys ---"
|
||||
gsettings list-recursively org.gnome.settings-daemon.plugins.media-keys
|
||||
} > shortcuts.txt
|
||||
|
||||
# Display config
|
||||
{
|
||||
echo "=== Display Configuration ==="
|
||||
xrandr 2>/dev/null || echo "Not available"
|
||||
} > display-config.txt
|
||||
|
||||
echo "Snapshot created: $SNAPSHOT_DIR"
|
||||
echo "Files:"
|
||||
ls -la
|
||||
@@ -0,0 +1,70 @@
|
||||
=== Display Configuration ===
|
||||
Screen 0: minimum 16 x 16, current 4520 x 1920, maximum 32767 x 32767
|
||||
DP-2 connected 1080x1920+0+0 left (normal left inverted right x axis y axis) 600mm x 340mm
|
||||
1920x1080 239.66*+
|
||||
1440x1080 239.57
|
||||
1400x1050 239.75
|
||||
1280x1024 239.75
|
||||
1280x960 239.55
|
||||
1152x864 239.57
|
||||
1024x768 239.35
|
||||
800x600 239.48
|
||||
640x480 239.21
|
||||
320x240 238.24
|
||||
1680x1050 239.75
|
||||
1440x900 239.56
|
||||
1280x800 239.65
|
||||
1152x720 239.53
|
||||
960x600 239.45
|
||||
928x580 239.49
|
||||
800x500 239.33
|
||||
768x480 239.29
|
||||
720x480 239.35
|
||||
640x400 238.88
|
||||
320x200 238.84
|
||||
1600x900 239.51
|
||||
1368x768 239.44
|
||||
1280x720 239.62
|
||||
1024x576 239.52
|
||||
864x486 239.23
|
||||
720x400 239.07
|
||||
640x350 238.88
|
||||
DP-3 connected primary 3440x1440+1080+480 (normal left inverted right x axis y axis) 800mm x 340mm
|
||||
3440x1440 164.87*+
|
||||
1920x1440 164.86
|
||||
1600x1200 164.84
|
||||
1440x1080 164.74
|
||||
1400x1050 164.66
|
||||
1280x1024 164.81
|
||||
1280x960 164.67
|
||||
1152x864 164.77
|
||||
1024x768 164.78
|
||||
800x600 164.38
|
||||
640x480 164.26
|
||||
320x240 163.69
|
||||
1920x1200 164.85
|
||||
1680x1050 164.73
|
||||
1440x900 164.74
|
||||
1280x800 164.65
|
||||
1152x720 164.57
|
||||
960x600 164.43
|
||||
928x580 164.51
|
||||
800x500 164.25
|
||||
768x480 164.47
|
||||
720x480 164.18
|
||||
640x400 164.01
|
||||
320x200 161.83
|
||||
2560x1440 164.87
|
||||
2048x1152 164.76
|
||||
1920x1080 164.76
|
||||
1600x900 164.66
|
||||
1368x768 164.82
|
||||
1280x720 164.71
|
||||
1024x576 164.65
|
||||
864x486 164.71
|
||||
720x400 164.23
|
||||
640x350 164.46
|
||||
|
||||
--- GNOME monitors ---
|
||||
org.gnome.mutter.keybindings rotate-monitor ['XF86RotateWindows']
|
||||
org.gnome.mutter.keybindings switch-monitor ['<Super>p', 'XF86Display']
|
||||
@@ -0,0 +1,16 @@
|
||||
=== Flatpak Applications ===
|
||||
Discord com.discordapp.Discord 1.0.138 stable system
|
||||
Proton-GE (community build) com.valvesoftware.Steam.CompatibilityTool.Proton-GE 10.34 stable system
|
||||
Rewaita io.github.swordpuffin.rewaita 1.1.3 stable system
|
||||
Freedesktop Platform org.freedesktop.Platform freedesktop-sdk-25.08.11 25.08 system
|
||||
Mesa org.freedesktop.Platform.GL.default 26.0.5 25.08 system
|
||||
Mesa (Extra) org.freedesktop.Platform.GL.default 26.0.5 25.08-extra system
|
||||
nvidia-595-71-05 org.freedesktop.Platform.GL.nvidia-595-71-05 1.4 system
|
||||
Nvidia VAAPI driver org.freedesktop.Platform.VAAPI.nvidia 25.08 system
|
||||
Codecs Extra Extension org.freedesktop.Platform.codecs-extra 25.08-extra system
|
||||
GNOME Application Platform version 50 org.gnome.Platform 50 system
|
||||
=== Flatpak Remotes ===
|
||||
flathub system
|
||||
=== Flatpak Overrides ===
|
||||
[Context]
|
||||
filesystems=xdg-config/gtk-3.0;xdg-config/gtk-4.0;xdg-config/macos-like-window-controls;
|
||||
@@ -0,0 +1,16 @@
|
||||
=== GNOME Extensions ===
|
||||
|
||||
User extensions:
|
||||
total 0
|
||||
drwxr-xr-x 1 lago lago 502 may 15 23:17 .
|
||||
drwx------ 1 lago lago 162 may 16 10:39 ..
|
||||
drwxr-xr-x 1 lago lago 594 may 15 23:07 appindicatorsupport@rgcjonas.gmail.com
|
||||
drwxr-xr-x 1 lago lago 236 may 15 23:08 blur-my-shell@aunetx
|
||||
drwxr-xr-x 1 lago lago 738 may 15 23:08 dash-to-dock@micxgx.gmail.com
|
||||
drwxr-xr-x 1 lago lago 202 may 15 23:08 just-perfection-desktop@just-perfection
|
||||
drwxr-xr-x 1 lago lago 118 may 15 23:09 quake-terminal@diegodario88.github.io
|
||||
drwxr-xr-x 1 lago lago 178 may 15 23:09 space-bar@luchrioh
|
||||
drwxr-xr-x 1 lago lago 116 may 15 23:09 user-theme@gnome-shell-extensions.gcampax.github.com
|
||||
drwxr-xr-x 1 lago lago 258 may 15 23:10 vicinae@dagimg-dot
|
||||
|
||||
System extensions:
|
||||
@@ -0,0 +1,57 @@
|
||||
=== GNOME Shell Settings ===
|
||||
org.gnome.shell allow-extension-installation true
|
||||
org.gnome.shell always-show-log-out false
|
||||
org.gnome.shell app-picker-layout [{'bssh.desktop': <{'position': <0>}>, 'bvnc.desktop': <{'position': <1>}>, 'avahi-discover.desktop': <{'position': <2>}>, 'btop.desktop': <{'position': <3>}>, 'btrfs-assistant.desktop': <{'position': <4>}>, 'org.gnome.SimpleScan.desktop': <{'position': <5>}>, 'arch-update.desktop': <{'position': <6>}>, 'arch-update-tray.desktop': <{'position': <7>}>, 'org.gnome.Showtime.desktop': <{'position': <8>}>, 'org.gnome.Snapshot.desktop': <{'position': <9>}>, 'org.cachyos.KernelManager.desktop': <{'position': <10>}>, 'Utilities': <{'position': <11>}>, 'System': <{'position': <12>}>, 'cachyos-pi.desktop': <{'position': <13>}>, 'd10c5bd2-883b-49bc-8a09-6a3c0a1f982e': <{'position': <14>}>, 'org.gnome.Extensions.desktop': <{'position': <15>}>, 'limine-snapper-restore.desktop': <{'position': <16>}>, 'org.gnome.Meld.desktop': <{'position': <17>}>, 'micro.desktop': <{'position': <18>}>, 'nvidia-settings.desktop': <{'position': <19>}>, 'org.gnome.PowerStats.desktop': <{'position': <20>}>, 'qv4l2.desktop': <{'position': <21>}>}, {'qvidcap.desktop': <{'position': <0>}>, 'org.cachyos.scx-manager.desktop': <{'position': <1>}>, 'vim.desktop': <{'position': <2>}>, 'org.pulseaudio.pavucontrol.desktop': <{'position': <3>}>, 'com.shellyorg.shelly.desktop': <{'position': <4>}>, 'cachyos-hello.desktop': <{'position': <5>}>, 'firefox.desktop': <{'position': <6>}>, 'bitwarden.desktop': <{'position': <7>}>, 'electron37.desktop': <{'position': <8>}>, 'com.mattjakeman.ExtensionManager.desktop': <{'position': <9>}>, 'code-oss.desktop': <{'position': <10>}>, 'org.gnome.TextEditor.desktop': <{'position': <11>}>, 'lmstudio.desktop': <{'position': <12>}>, 'org.mozilla.Thunderbird.desktop': <{'position': <13>}>, 'cmake-gui.desktop': <{'position': <14>}>, 'ARC Raiders.desktop': <{'position': <15>}>, 'Hogwarts Legacy.desktop': <{'position': <16>}>, 'win11-clipboard-history.desktop': <{'position': <17>}>, 'Marvel Rivals.desktop': <{'position': <18>}>, 'org.gnome.Calculator.desktop': <{'position': <19>}>, 'io.github.swordpuffin.rewaita.desktop': <{'position': <20>}>}]
|
||||
org.gnome.shell command-history @as []
|
||||
org.gnome.shell development-tools true
|
||||
org.gnome.shell disable-extension-version-validation false
|
||||
org.gnome.shell disable-user-extensions false
|
||||
org.gnome.shell disabled-extensions ['burn-my-windows@schneegans.github.com', 'desktop-cube@schneegans.github.com', 'blur-my-shell@aunetx']
|
||||
org.gnome.shell enabled-extensions ['wobbly-windows@mecheye.net', 'just-perfection-desktop@just-perfection', 'quake-terminal@diegodario88.github.io', 'static-workspace-background@CleoMenezesJr.github.io', 'vicinae@dagimg-dot', 'user-theme@gnome-shell-extensions.gcampax.github.com', 'appindicatorsupport@rgcjonas.gmail.com', 'dash-to-dock@micxgx.gmail.com', 'space-bar@luchrioh']
|
||||
org.gnome.shell favorite-apps ['brave-browser.desktop', 'org.gnome.Ptyxis.desktop', 'org.gnome.Nautilus.desktop', 'org.gnome.SystemMonitor.desktop', 'discord.desktop', 'steam.desktop', 'org.gnome.Settings.desktop']
|
||||
org.gnome.shell last-selected-power-profile 'performance'
|
||||
org.gnome.shell looking-glass-history @as []
|
||||
org.gnome.shell remember-mount-password false
|
||||
org.gnome.shell welcome-dialog-last-shown-version '50.1'
|
||||
org.gnome.shell.app-switcher current-workspace-only false
|
||||
org.gnome.shell.keybindings focus-active-notification ['<Super>n']
|
||||
org.gnome.shell.keybindings open-new-window-application-1 ['<Super><Control>1']
|
||||
org.gnome.shell.keybindings open-new-window-application-2 ['<Super><Control>2']
|
||||
org.gnome.shell.keybindings open-new-window-application-3 ['<Super><Control>3']
|
||||
org.gnome.shell.keybindings open-new-window-application-4 ['<Super><Control>4']
|
||||
org.gnome.shell.keybindings open-new-window-application-5 ['<Super><Control>5']
|
||||
org.gnome.shell.keybindings open-new-window-application-6 ['<Super><Control>6']
|
||||
org.gnome.shell.keybindings open-new-window-application-7 ['<Super><Control>7']
|
||||
org.gnome.shell.keybindings open-new-window-application-8 ['<Super><Control>8']
|
||||
org.gnome.shell.keybindings open-new-window-application-9 ['<Super><Control>9']
|
||||
org.gnome.shell.keybindings screen-brightness-cycle ['XF86MonBrightnessCycle']
|
||||
org.gnome.shell.keybindings screen-brightness-cycle-monitor ['<Shift>XF86MonBrightnessCycle']
|
||||
org.gnome.shell.keybindings screen-brightness-down ['XF86MonBrightnessDown']
|
||||
org.gnome.shell.keybindings screen-brightness-down-monitor ['<Shift>XF86MonBrightnessDown']
|
||||
org.gnome.shell.keybindings screen-brightness-up ['XF86MonBrightnessUp']
|
||||
org.gnome.shell.keybindings screen-brightness-up-monitor ['<Shift>XF86MonBrightnessUp']
|
||||
org.gnome.shell.keybindings screenshot ['<Shift>Print']
|
||||
org.gnome.shell.keybindings screenshot-window ['<Alt>Print']
|
||||
org.gnome.shell.keybindings shift-overview-down ['<Super><Alt>Down']
|
||||
org.gnome.shell.keybindings shift-overview-up ['<Super><Alt>Up']
|
||||
org.gnome.shell.keybindings show-screen-recording-ui ['<Ctrl><Shift><Alt>R']
|
||||
org.gnome.shell.keybindings show-screenshot-ui ['Print']
|
||||
org.gnome.shell.keybindings switch-to-application-1 ['<Super>1']
|
||||
org.gnome.shell.keybindings switch-to-application-2 ['<Super>2']
|
||||
org.gnome.shell.keybindings switch-to-application-3 ['<Super>3']
|
||||
org.gnome.shell.keybindings switch-to-application-4 ['<Super>4']
|
||||
org.gnome.shell.keybindings switch-to-application-5 ['<Super>5']
|
||||
org.gnome.shell.keybindings switch-to-application-6 ['<Super>6']
|
||||
org.gnome.shell.keybindings switch-to-application-7 ['<Super>7']
|
||||
org.gnome.shell.keybindings switch-to-application-8 ['<Super>8']
|
||||
org.gnome.shell.keybindings switch-to-application-9 ['<Super>9']
|
||||
org.gnome.shell.keybindings toggle-application-view ['<Super>a']
|
||||
org.gnome.shell.keybindings toggle-message-tray ['<Super><Shift>v']
|
||||
org.gnome.shell.keybindings toggle-overview @as []
|
||||
org.gnome.shell.keybindings toggle-quick-settings ['<Super>s']
|
||||
org.gnome.shell.weather automatic-location false
|
||||
org.gnome.shell.weather locations @av []
|
||||
org.gnome.shell.window-switcher app-icon-mode 'both'
|
||||
org.gnome.shell.window-switcher current-workspace-only true
|
||||
org.gnome.shell.world-clocks locations @av []
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,100 @@
|
||||
=== Custom Keyboard Shortcuts ===
|
||||
|
||||
--- User custom shortcuts ---
|
||||
['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/win11-clipboard-history/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/win11-clipboard-history-alt/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/win11-clipboard-history-emoji/']
|
||||
|
||||
--- All media keys ---
|
||||
org.gnome.settings-daemon.plugins.media-keys battery-status ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys battery-status-static ['XF86Battery']
|
||||
org.gnome.settings-daemon.plugins.media-keys calculator ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys calculator-static ['XF86Calculator']
|
||||
org.gnome.settings-daemon.plugins.media-keys control-center ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys control-center-static ['XF86Tools']
|
||||
org.gnome.settings-daemon.plugins.media-keys custom-keybindings ['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/win11-clipboard-history/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/win11-clipboard-history-alt/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/win11-clipboard-history-emoji/']
|
||||
org.gnome.settings-daemon.plugins.media-keys decrease-text-size ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys eject ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys eject-static ['XF86Eject']
|
||||
org.gnome.settings-daemon.plugins.media-keys email ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys email-static ['XF86Mail']
|
||||
org.gnome.settings-daemon.plugins.media-keys help ['', '<Super>F1']
|
||||
org.gnome.settings-daemon.plugins.media-keys hibernate ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys hibernate-static ['XF86Suspend', 'XF86Hibernate']
|
||||
org.gnome.settings-daemon.plugins.media-keys home ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys home-static ['XF86Explorer']
|
||||
org.gnome.settings-daemon.plugins.media-keys increase-text-size ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys keyboard-brightness-down ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys keyboard-brightness-down-static ['XF86KbdBrightnessDown']
|
||||
org.gnome.settings-daemon.plugins.media-keys keyboard-brightness-toggle ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys keyboard-brightness-toggle-static ['XF86KbdLightOnOff']
|
||||
org.gnome.settings-daemon.plugins.media-keys keyboard-brightness-up ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys keyboard-brightness-up-static ['XF86KbdBrightnessUp']
|
||||
org.gnome.settings-daemon.plugins.media-keys logout ['<Control><Alt>Delete']
|
||||
org.gnome.settings-daemon.plugins.media-keys magnifier ['<Alt><Super>8']
|
||||
org.gnome.settings-daemon.plugins.media-keys magnifier-zoom-in ['<Alt><Super>equal']
|
||||
org.gnome.settings-daemon.plugins.media-keys magnifier-zoom-out ['<Alt><Super>minus']
|
||||
org.gnome.settings-daemon.plugins.media-keys media ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys media-static ['XF86AudioMedia']
|
||||
org.gnome.settings-daemon.plugins.media-keys mic-mute ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys mic-mute-static ['XF86AudioMicMute']
|
||||
org.gnome.settings-daemon.plugins.media-keys next ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys next-static ['XF86AudioNext', '<Ctrl>XF86AudioNext']
|
||||
org.gnome.settings-daemon.plugins.media-keys on-screen-keyboard ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys pause ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys pause-static ['XF86AudioPause']
|
||||
org.gnome.settings-daemon.plugins.media-keys play ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys play-static ['XF86AudioPlay', '<Ctrl>XF86AudioPlay']
|
||||
org.gnome.settings-daemon.plugins.media-keys playback-forward ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys playback-forward-static ['XF86AudioForward']
|
||||
org.gnome.settings-daemon.plugins.media-keys playback-random ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys playback-random-static ['XF86AudioRandomPlay']
|
||||
org.gnome.settings-daemon.plugins.media-keys playback-repeat ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys playback-repeat-static ['XF86AudioRepeat']
|
||||
org.gnome.settings-daemon.plugins.media-keys playback-rewind ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys playback-rewind-static ['XF86AudioRewind']
|
||||
org.gnome.settings-daemon.plugins.media-keys power ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys power-static ['XF86PowerOff']
|
||||
org.gnome.settings-daemon.plugins.media-keys previous ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys previous-static ['XF86AudioPrev', '<Ctrl>XF86AudioPrev']
|
||||
org.gnome.settings-daemon.plugins.media-keys reboot ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys rfkill ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys rfkill-bluetooth ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys rfkill-bluetooth-static ['XF86Bluetooth']
|
||||
org.gnome.settings-daemon.plugins.media-keys rfkill-static ['XF86WLAN', 'XF86UWB', 'XF86RFKill']
|
||||
org.gnome.settings-daemon.plugins.media-keys rotate-video-lock ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys rotate-video-lock-static ['<Super>o', 'XF86RotationLockToggle']
|
||||
org.gnome.settings-daemon.plugins.media-keys screenreader ['<Alt><Super>s']
|
||||
org.gnome.settings-daemon.plugins.media-keys screensaver ['<Super>l']
|
||||
org.gnome.settings-daemon.plugins.media-keys screensaver-static ['XF86ScreenSaver']
|
||||
org.gnome.settings-daemon.plugins.media-keys search ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys search-static ['XF86Search']
|
||||
org.gnome.settings-daemon.plugins.media-keys shutdown ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys stop ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys stop-static ['XF86AudioStop']
|
||||
org.gnome.settings-daemon.plugins.media-keys suspend ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys suspend-static ['XF86Sleep']
|
||||
org.gnome.settings-daemon.plugins.media-keys toggle-contrast ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys touchpad-off ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys touchpad-off-static ['XF86TouchpadOff']
|
||||
org.gnome.settings-daemon.plugins.media-keys touchpad-on ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys touchpad-on-static ['XF86TouchpadOn']
|
||||
org.gnome.settings-daemon.plugins.media-keys touchpad-toggle ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys touchpad-toggle-static ['XF86TouchpadToggle', '<Ctrl><Super>XF86TouchpadToggle']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-down ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-down-precise ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-down-precise-static ['<Shift>XF86AudioLowerVolume', '<Ctrl><Shift>XF86AudioLowerVolume']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-down-quiet ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-down-quiet-static ['<Alt>XF86AudioLowerVolume', '<Alt><Ctrl>XF86AudioLowerVolume']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-down-static ['XF86AudioLowerVolume', '<Ctrl>XF86AudioLowerVolume']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-mute ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-mute-quiet ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-mute-quiet-static ['<Alt>XF86AudioMute']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-mute-static ['XF86AudioMute']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-step 6
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-up ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-up-precise ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-up-precise-static ['<Shift>XF86AudioRaiseVolume', '<Ctrl><Shift>XF86AudioRaiseVolume']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-up-quiet ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-up-quiet-static ['<Alt>XF86AudioRaiseVolume', '<Alt><Ctrl>XF86AudioRaiseVolume']
|
||||
org.gnome.settings-daemon.plugins.media-keys volume-up-static ['XF86AudioRaiseVolume', '<Ctrl>XF86AudioRaiseVolume']
|
||||
org.gnome.settings-daemon.plugins.media-keys www ['']
|
||||
org.gnome.settings-daemon.plugins.media-keys www-static ['XF86WWW']
|
||||
@@ -0,0 +1,26 @@
|
||||
=== System Information ===
|
||||
|
||||
--- OS ---
|
||||
NAME="CachyOS Linux"
|
||||
PRETTY_NAME="CachyOS"
|
||||
ID=cachyos
|
||||
ID_LIKE=arch
|
||||
BUILD_ID=rolling
|
||||
ANSI_COLOR="38;2;23;147;209"
|
||||
HOME_URL="https://cachyos.org/"
|
||||
DOCUMENTATION_URL="https://wiki.cachyos.org/"
|
||||
SUPPORT_URL="https://discuss.cachyos.org/"
|
||||
BUG_REPORT_URL="https://github.com/cachyos"
|
||||
PRIVACY_POLICY_URL="https://terms.archlinux.org/docs/privacy-policy/"
|
||||
LOGO=cachyos
|
||||
|
||||
--- Kernel ---
|
||||
Linux LagoWorkStationLinux 7.0.8-1-cachyos #1 SMP PREEMPT_DYNAMIC Fri, 15 May 2026 13:22:28 +0000 x86_64 GNU/Linux
|
||||
|
||||
--- GPU ---
|
||||
01:00.0 VGA compatible controller: NVIDIA Corporation GB203 [GeForce RTX 5080] (rev a1)
|
||||
07:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Raphael (rev d8)
|
||||
|
||||
--- Display Server ---
|
||||
Wayland: wayland
|
||||
Display: :0
|
||||
@@ -0,0 +1,6 @@
|
||||
=== Theme Configuration ===
|
||||
|
||||
--- GTK Theme (gsettings) ---
|
||||
'Adwaita'
|
||||
|
||||
--- User Theme ---
|
||||
Reference in New Issue
Block a user