summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-23 22:31:18 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-23 22:31:18 +1000
commitdb1e0da5bbd259f1218b4ae54d0327b0c4a46f78 (patch)
tree84d236e56f69a6705cf81a3c66151a360493c4f8 /src
parentwallpaper: random prevent duplicate (diff)
downloadcaelestia-cli-db1e0da5bbd259f1218b4ae54d0327b0c4a46f78.tar.gz
caelestia-cli-db1e0da5bbd259f1218b4ae54d0327b0c4a46f78.tar.bz2
caelestia-cli-db1e0da5bbd259f1218b4ae54d0327b0c4a46f78.zip
Revert "shell: set QT_QPA_PLATFORMTHEME env"
This reverts commit 99142f11ad7bccf3bb51cedfe55013c9690dcc0e.
Diffstat (limited to '')
-rw-r--r--src/caelestia/subcommands/shell.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/caelestia/subcommands/shell.py b/src/caelestia/subcommands/shell.py
index a73ed38..4cdd128 100644
--- a/src/caelestia/subcommands/shell.py
+++ b/src/caelestia/subcommands/shell.py
@@ -1,4 +1,3 @@
-import os
import subprocess
from argparse import Namespace
@@ -33,12 +32,7 @@ class Command:
args.append("-d")
subprocess.run(args)
else:
- shell = subprocess.Popen(
- args,
- stdout=subprocess.PIPE,
- universal_newlines=True,
- env=dict(os.environ, QT_QPA_PLATFORMTHEME="gtk3"),
- )
+ shell = subprocess.Popen(args, stdout=subprocess.PIPE, universal_newlines=True)
for line in shell.stdout:
if self.filter_log(line):
print(line, end="")