Simplify code, remove unnecessary 2D array #5

Merged
tio merged 2 commits from rokosun-patch-1 into main 2023-10-29 11:26:57 +00:00
Showing only changes of commit d3c1054ec0 - Show all commits

View File

@ -1,6 +1,6 @@
from std/osproc import execProcess, ProcessOption, startProcess, waitForExit, close
from std/os import symlinkExists, getConfigDir, putEnv, `/`
from std/strutils import split, endsWith, strip
from std/strutils import split, endsWith
from std/strformat import fmt
import owlkettle
@ -64,7 +64,7 @@ viewable App:
build:
let currentTheme: string = execProcess("/usr/bin/xfconf-query",
args=["--channel=xsettings", "--property=/Net/ThemeName"],
options={}).strip(leading=false, trailing=true, chars={'\n'})
options={})[0 .. ^2]
let currentThemeSplit: seq[string] = currentTheme.split('-', 2)