vibrantLinux icon indicating copy to clipboard operation
vibrantLinux copied to clipboard

Resets On Reboot

Open DjagbleyEmmanuel opened this issue 1 year ago • 3 comments

Downloaded the flatpak version and every time I logout or reboots my system, the software resets to default. System: Kernel: 5.15.0-113-generic x86_64 bits: 64 compiler: gcc v: 11.4.0 Desktop: Cinnamon 6.0.4 Distro: Linux Mint 21.3 Virginia base: Ubuntu 22.04 jammy CPU: Info: quad core model: Intel Core i7-4712MQ bits: 64 type: MT MCP arch: Haswell rev: 3 cache: L1: 256 KiB L2: 1024 KiB L3: 6 MiB Speed (MHz): avg: 1823 high: 2952 min/max: 800/3300 cores: 1: 2952 2: 2296 3: 2295 4: 2296 5: 2295 6: 855 7: 798 8: 798 bogomips: 36718 Flags: avx avx2 ht lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx Graphics: Device-1: Intel 4th Gen Core Processor Integrated Graphics vendor: Hewlett-Packard driver: i915 v: kernel bus-ID: 00:02.0 Device-2: AMD Mars [Radeon HD 8730M] vendor: Hewlett-Packard driver: amdgpu v: 6.3.6 bus-ID: 01:00.0 Display: x11 server: X.Org v: 1.21.1.4 driver: X: loaded: amdgpu,ati,modesetting unloaded: fbdev,vesa gpu: i915 resolution: 1366x768 OpenGL: renderer: llvmpipe (LLVM 17.0.4 256 bits) v: 4.5 Mesa 23.3.0-devel direct render: Yes

DjagbleyEmmanuel avatar Jul 04 '24 18:07 DjagbleyEmmanuel

I'm having the same problem, when reboot or logout, the settings resets.

System Information:

Kernel: 6.8.0-40-generic x86_64 Distro: Ubuntu 24.04 LTS CPU: 12th Gen Intel(R) Core(TM) i7-1260P Graphics: 00:02.0 VGA compatible controller: Intel Corporation Alder Lake-P GT2 [Iris Xe Graphics] (rev 0c) Display: 1920x1080 OpenGL: OpenGL renderer string: Mesa Intel(R) Graphics (ADL GT2) OpenGL version string: 4.6 (Compatibility Profile) Mesa 24.0.9-0ubuntu0.1

aymendn avatar Aug 11 '24 13:08 aymendn

I know it's been a while, but same issue here on NixOS.

Zer0dot avatar Feb 09 '25 16:02 Zer0dot

Hey! Same problem. Fix it by create config file. But vibrantLinux clear it on boot. Need set config data every time.

#!/bin/bash

CONFIG_FILE="/home/USER/.config/vibrantLinux/vibrantLinux.internal"

VIBRANCE_VALUE=73

DISPLAY_NAME="eDP-1"

mkdir -p "$(dirname "$CONFIG_FILE")"

cat > "$CONFIG_FILE" << EOF
{
    "UseWindowFocus": false,
    "configVersion": 2,
    "displays": [
        {
            "name": "$DISPLAY_NAME",
            "vibrance": $VIBRANCE_VALUE
        }
    ],
    "programs": [
    ]
}
EOF

pkill -f vibrantLinux

/usr/bin/vibrantLinux &

codeturn avatar Mar 18 '25 20:03 codeturn