diff options
author | zachir <zachir@librem.one> | 2025-07-15 20:50:37 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-07-15 20:50:37 -0500 |
commit | b57c4b69d461ac785d793b8aedfd75db899c1bc9 (patch) | |
tree | 9da78a27832b41fde890af813fc914845cdbace0 /flatdark.sh | |
parent | c4ce28f4bc2ab0fb74707cd7f321da449ffd948e (diff) | |
parent | 4f5fb6b16fb0dc03ed2aae56658cc0fa0265a7ff (diff) |
Merge branch 'master' into artix
Diffstat (limited to 'flatdark.sh')
-rwxr-xr-x | flatdark.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/flatdark.sh b/flatdark.sh deleted file mode 100755 index ad2a2c7..0000000 --- a/flatdark.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -while true; do - echo "Press 1 for light theme, 2 for dark theme and hit enter" - read userInput - userInput=$(echo "$userInput" | xargs) - if [ "$userInput" -eq "1" ]; then - theme="Adwaita" - elif [ "$userInput" -eq "2" ]; then - theme="Adwaita-dark" - else - clear - echo "Invalid input, try again" - continue - fi - sudo flatpak override --env=GTK_THEME=$theme; sudo flatpak override --env=QT_STYLE_OVERRIDE=$theme - clear - echo "Operation Complete" -done |