mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 05:12:36 +01:00
fix: conditional
This commit is contained in:
parent
2dac511608
commit
c8fed97575
3 changed files with 5 additions and 5 deletions
4
dzgui.sh
4
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
|
||||
version=5.0.0.rc-14
|
||||
version=5.0.0.rc-15
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
@ -527,7 +527,7 @@ fetch_dzq(){
|
|||
fetch_helpers_by_sum(){
|
||||
declare -A sums
|
||||
sums=(
|
||||
["ui.py"]="af590bd7ac031409beb8fbc669398721"
|
||||
["ui.py"]="f4937dc60184eb7d53b9d14070820947"
|
||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||
["funcs"]="d9b0e6fa68314c18ac7aad565645948f"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
version=5.0.0.rc-14
|
||||
version=5.0.0.rc-15
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
|
|
@ -15,7 +15,7 @@ locale.setlocale(locale.LC_ALL, '')
|
|||
gi.require_version("Gtk", "3.0")
|
||||
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
|
||||
|
||||
# 5.0.0-rc.14
|
||||
# 5.0.0-rc.15
|
||||
app_name = "DZGUI"
|
||||
|
||||
cache = {}
|
||||
|
@ -451,7 +451,7 @@ class OuterWindow(Gtk.Window):
|
|||
self.add(self.grid)
|
||||
self.hb = AppHeaderBar()
|
||||
|
||||
if is_steam_deck is 1:
|
||||
if is_steam_deck is True:
|
||||
self.maximize()
|
||||
self.set_decorated(False)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue