mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-06 00:58:16 +00:00
Merge branch 'main' into testing
This commit is contained in:
commit
001ea7500e
15
.github/workflows/comment-filter.yml
vendored
Normal file
15
.github/workflows/comment-filter.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
name: Check for Spammy Issue Comments
|
||||
|
||||
on:
|
||||
issue_comment:
|
||||
types: [created, edited]
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
|
||||
jobs:
|
||||
comment-filter:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Comment filter
|
||||
uses: DecimalTurn/Comment-Filter@5ab6948d08be719961eac47fad2b2a91a06fc4c9 #v0.1.0
|
@ -1 +1 @@
|
||||
<!-- cmdrun fetch_discourse_md.py "https://universal-blue.discourse.group/docs?topic=35" -->
|
||||
<!-- cmdrun fetch_discourse_md.py "https://universal-blue.discourse.group/docs?topic=2659" -->
|
||||
|
@ -1 +0,0 @@
|
||||
<!-- cmdrun fetch_discourse_md.py "https://universal-blue.discourse.group/docs?topic=816" -->
|
@ -26,14 +26,13 @@
|
||||
- [Game Launchers](Gaming/Game_Launchers.md)
|
||||
- [Managing & Modding Games](Gaming/Managing_and_modding_games.md)
|
||||
- [Common Gaming Issues](Gaming/Common_gaming_issues.md)
|
||||
- [Hardware Compatibility for Gaming](Gaming/Common_gaming_issues.md)
|
||||
- [Hardware Compatibility for Gaming](Gaming/Hardware_compatibility_for_gaming.md)
|
||||
- [Desktop Environment Tweaks](General/Desktop_Environment_Tweaks.md)
|
||||
- [Reporting Bugs](General/reporting_bugs.md)
|
||||
|
||||
# Steam Gaming Mode / Handheld & HTPC Hardware
|
||||
# Handheld & HTPC Hardware
|
||||
|
||||
- [Steam Gaming Mode Overview](Handheld_and_HTPC_edition/Steam_Gaming_Mode/index.md)
|
||||
- [Change Physical Keyboard Layout for Steam Gaming Mode](Handheld_and_HTPC_edition/Change_Physical_Keyboard_Layout_for_Steam_Gaming_Mode.md)
|
||||
- [Handheld Wiki](Handheld_and_HTPC_edition/Handheld_Wiki/index.md)
|
||||
- [Steam Deck](Handheld_and_HTPC_edition/Handheld_Wiki/Steam_Deck.md)
|
||||
- [Lenovo Legion Go](Handheld_and_HTPC_edition/Handheld_Wiki/Lenovo_Legion_Go.md)
|
||||
@ -66,4 +65,5 @@
|
||||
|
||||
- [Auto-Mounting Secondary Drives](Advanced/Auto-Mounting_Secondary_Drives.md)
|
||||
- [Reset User Password](Advanced/Reset_User_Password.md)
|
||||
- [Creating A Custom Bazzite Image](Advanced/creating_custom_image.md)
|
||||
- [Contributing to Bazzite](Advanced/Contributing_to_bazzite.md)
|
||||
|
@ -1,7 +1,7 @@
|
||||
Summary: Graphical system installer
|
||||
Name: anaconda
|
||||
Version: 40.22.3
|
||||
Release: 100.bazzite
|
||||
Release: 101.bazzite
|
||||
License: GPL-2.0-or-later
|
||||
URL: http://fedoraproject.org/wiki/Anaconda
|
||||
|
||||
|
@ -10,7 +10,7 @@ diff -Naur a/pyanaconda/display.py b/pyanaconda/display.py
|
||||
+ with open("/sys/devices/virtual/dmi/id/product_name") as f:
|
||||
+ dmi = f.read().strip()
|
||||
+
|
||||
+ if "Jupiter" in dmi or "Galileo" in dmi:
|
||||
+ if "Jupiter" in dmi or "Galileo" in dmi or "NEXT" in dmi:
|
||||
+ runres = "1280x800"
|
||||
+
|
||||
if runres and gui_mode and not flags.usevnc:
|
||||
@ -26,7 +26,7 @@ diff -Naur a/pyanaconda/ui/gui/__init__.py b/pyanaconda/ui/gui/__init__.py
|
||||
+ with open("/sys/devices/virtual/dmi/id/product_name") as f:
|
||||
+ dmi = f.read().strip()
|
||||
+
|
||||
+ if "Jupiter" in dmi or "Galileo" in dmi:
|
||||
+ if "Jupiter" in dmi or "Galileo" in dmi or "NEXT" in dmi:
|
||||
+ util.setenv("GDK_SCALE", "1")
|
||||
+ return
|
||||
+
|
||||
|
Loading…
Reference in New Issue
Block a user