Commit Graph

625 Commits

Author SHA1 Message Date
Donald Williams
4bd1e18e6e Update Discord invite link in README
Fixing discord link after server name change broke it
2026-01-13 20:08:19 -05:00
Donald Williams
5acde89271 Merge pull request #347 from JaKooLit/development
Merge development branch to main
arch-v2.8
2025-12-11 12:00:02 -05:00
Donald Williams
7ebe599868 Merge branch 'main' into development 2025-12-11 11:54:34 -05:00
Don Williams
ae0c8b155c Updated CHANGELOG 2025-12-11 11:51:06 -05:00
Don Williams
3781f9c510 Adding qt5-quickcontrols2 to sddm.sh
A user reported in CachyOS this missing package prevented
Hyprland from starting via SDDM with simple_sddm_2 theme
Standard SDDM theme worked on.  Adding this pkg also resolved
issue

 On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   sddm.sh
2025-12-11 10:48:47 -05:00
Ahum Maitra
bbeaa681e0 docs : Fix Nvidia Spelling in README (#346) 2025-12-09 22:15:41 +09:00
Don Williams
47f4e4d7b6 Fixed AGS v1
It now does the following:
◦  Clone upstream AGS 1.9.0.
◦  Stub out PAM/GUtils via pam.ts.
◦  Build and install AGS.
◦  Install the known-good launcher from install-scripts/ags.launcher.com.github.Aylur.ags.
◦  Point /usr/local/bin/ags at that launcher.

 On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   install-scripts/ags.sh
2025-11-14 02:09:16 -05:00
Don Williams
23f52b3f00 Saving working script before adding to AGS.SH
On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	new file:   install-scripts/ags.launcher.com.github.Aylur.ags
2025-11-14 02:04:49 -05:00
Don Williams
956fb369b5 Fixing mesaon build errors 2025-11-14 01:17:20 -05:00
Don Williams
9cf06be539 Try again 2025-11-14 01:12:12 -05:00
Don Williams
1808001bdb Fixed syntax error 2025-11-14 01:07:36 -05:00
Don Williams
46728206a0 Patching tsconfig.json
On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   install-scripts/ags.sh
2025-11-14 01:03:18 -05:00
Don Williams
27b7ba5578 Fix attempt #2 GI_TYPELIB_PATH is read before set
On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   install-scripts/ags.sh
2025-11-14 00:43:53 -05:00
Don Williams
bcfade3e24 Checking for install triggered broken ags to start
On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   install-scripts/ags.sh
2025-11-14 00:31:38 -05:00
Don Williams
f231d77b5c Fixing ags script for overview launcher
On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   install-scripts/ags.sh
2025-11-14 00:27:51 -05:00
Don Williams
d1c0e89737 Fix to prevent 0byte ags file
On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   install-scripts/ags.sh
2025-11-13 23:26:25 -05:00
Don Williams
f1e2d27625 Fixed syntax error build failing still trying patch
On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   install-scripts/ags.sh
2025-11-13 23:04:28 -05:00
Don Williams
2789e1544c fixing AGS to install and not falsely report success
•  Added set -eo pipefail after sourcing Global_functions.sh so the script exits on failures and correctly fails when any command in a pipeline (like meson install | tee) fails.
◦  Added "ignoreDeprecations": "6.0" under compilerOptions to silence TS5107.
◦  Replaced moduleResolution "node10" with "node16" to be compatible with current TypeScript behavior.
•  The success message will now only be printed if meson actually succeeds

 On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   install-scripts/ags.sh
2025-11-13 22:59:30 -05:00
Don Williams
a9e33e5c58 ags: fix GIRepository ESM import error by exporting GI_TYPELIB_PATH and dropping GIRepository prepend calls
Context:
- On systems where AGS v1 installs its typelibs to /usr/local/lib, gjs ESM imports like gi://GIRepository?version=2.0 fail with:
  "Typelib file for namespace 'GIRepository', version '2.0' not found"
  even though typelibs exist under /usr/lib{,64}/girepository-1.0.
- The upstream AGS launcher tries to call GIR.Repository.prepend_search_path()/prepend_library_path(),
  but in recent GI (1.86) these are not available from the ESM namespace.

Changes:
- Replace import GIR from "gi://GIRepository?version=2.0" with import GLib from "gi://GLib" in the installed launcher.
- Remove deprecated GIR.Repository.prepend_search_path and prepend_library_path calls.
- Immediately after the GLib import, export GI_TYPELIB_PATH in-process so gjs finds typelibs under /usr/local/lib:
    const __old = GLib.getenv('GI_TYPELIB_PATH');
    GLib.setenv('GI_TYPELIB_PATH', '/usr/local/lib' + (__old ? ':' + __old : ''), true);

Result:
- ags -t overview no longer errors on GIRepository; proceeds until a GTK display is required.
- Behavior is scoped to the AGS process; no user shell env changes required.

Notes:
- Verified by patching an installed launcher on a target host; GI errors resolved.
2025-11-03 12:28:29 -05:00
Donald Williams
93581957d4 Update 01-hypr-pkgs.sh
Rofi wayland now merged with rofi
2025-11-03 12:28:29 -05:00
mio-dokuhaki
6c86adfcdc Fixed README.md for formatting 2025-11-03 12:28:29 -05:00
mio-dokuhaki
0ab997e352 Add missing monitor scripts from Fedora-Hyprland PR #234 2025-11-03 12:28:29 -05:00
mio-dokuhaki
5b427072ae Manually added monitor script documentation from Fedora PR #234 2025-11-03 12:28:29 -05:00
Ja.KooLit
f6a7c27229 Update quickshell.sh 2025-11-03 12:28:25 -05:00
Don Williams
aa140acf69 Don't remove AGS when installing quickshell
Might need as backup when QS has issues.
The Hyprland DOTS now use a wrapper script to determine
which to use for overview

 On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   quickshell.sh
2025-11-02 23:04:57 -05:00
Donald Williams
560ecf3bb6 Merge pull request #325 from JaKooLit/dwilliam62-change-rofi-wayland-to-rofi
Update 01-hypr-pkgs.sh  rofii-waybar is now just rofi
2025-10-05 22:47:53 -04:00
Donald Williams
516f2e609c Update 01-hypr-pkgs.sh
Rofi wayland now merged with rofi
2025-10-05 19:31:36 -04:00
Donald Williams
66cebd2247 Merge pull request #324 from JaKooLit/yuni-fix-readme
Fixed README.md for formatting
2025-10-05 08:55:46 -04:00
mio-dokuhaki
c16b3bc2c0 Fixed README.md for formatting 2025-10-05 16:15:56 +09:00
Donald Williams
ead2235eba Merge pull request #323 from JaKooLit/yuni-fix-monitor-scripts
Fix missing monitor scripts from Fedora-Hyprland PR #234
2025-10-05 01:04:37 -04:00
mio-dokuhaki
729149b7cc Add missing monitor scripts from Fedora-Hyprland PR #234 2025-10-05 13:45:27 +09:00
Donald Williams
efba587fde Merge pull request #322 from JaKooLit/yuni-fedora234-port
Port Fedora-Hyprland PR #234 to Arch-Hyprland main
2025-10-05 00:34:54 -04:00
mio-dokuhaki
c2a30d5a08 Manually added monitor script documentation from Fedora PR #234 2025-10-05 13:06:18 +09:00
Ja.KooLit
ab31c829e2 Update quickshell.sh 2025-07-28 23:45:41 +09:00
Ja.KooLit
5b29ba38d8 Merge pull request #300 from JaKooLit/development
Development to main
2025-07-25 21:32:29 +09:00
JaKooLit
d26c9e30bd minor sddm theme update 2025-07-25 17:13:16 +09:00
JaKooLit
78aa1dbcb2 updated sddm_theme.sh 2025-07-25 01:22:20 +09:00
JaKooLit
47836c2fb9 Preparation for the new SDDM theme simple sddm updated version 2025-07-22 13:07:38 +09:00
JaKooLit
3b2281568c some code cleanup and test if the feed is working to Discord Server 2025-07-20 16:10:53 +09:00
JaKooLit
f185af7389 added cleaning up of ags 2025-07-19 16:48:07 +09:00
JaKooLit
deb545e3b1 updated quickshell script 2025-07-17 22:19:42 +09:00
JaKooLit
5a3895682d added to ran quickshell on qs script 2025-07-17 20:45:44 +09:00
JaKooLit
2fbfecd07a added quickshell script to replace ags for desktop overview 2025-07-17 19:29:16 +09:00
Ja.KooLit
8813180c2d Merge pull request #289 from JaKooLit/development
Updated for new SDDM theme
2025-06-09 08:41:10 +09:00
JaKooLit
2afc7293d5 updated for new SDDM theme 2025-06-09 08:31:03 +09:00
JaKooLit
e433e89754 new sddm theme 2025-06-09 05:31:01 +09:00
Ja.KooLit
b5f342f62c Merge pull request #287 from JaKooLit/main
main to development
2025-06-09 05:18:29 +09:00
Ja.KooLit
0803fb9c0f Update ags.sh Arch-Hyprland-v2.7 2025-04-12 19:54:05 -04:00
JaKooLit
10d45b5d99 install.sh updated to NOT exit if user choose N on the last part. Removed auto-clone instruction for Fish as it creates a big issue 2025-03-25 00:59:47 +09:00
JaKooLit
3fcfdc0bad cachy-hyprland-settings set to remove first before mako 2025-03-25 00:35:40 +09:00