aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Merge branch 'development' into fix-long-commandDonald Williams2025-12-09-0/+6
|\
| * Fixed spacing on OS age & added to std compact cfgDon Williams2025-12-09-1/+7
| | | | | | | | | | | | | | | | | | On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/fastfetch/config-compact.jsonc modified: config/fastfetch/config-pokemon.jsonc
| * Merge pull request #876 from TheAhumMaitra/add-os-age-featureDonald Williams2025-12-09-0/+6
| |\ | | | | | | feat : Add OS age feature in fastfetch pokemon config
* | | fix : match the code style and add little bit sapceAhum Maitra2025-12-09-1/+1
| | |
* | | Maked the command much easier to read and understandAhum Maitra2025-12-09-1/+1
| |/ |/|
* | feat : Add OS age feature in fastfetch pokemon configAhum Maitra2025-12-09-0/+6
|/
* Fixed typos in CHANGELOG.mdDon Williams2025-12-06-1/+1
|
* Updated CHANGELOG.md merged CHANGES-v2.3.18.mdDon Williams2025-12-06-94/+86
| | | | | | | | | On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md deleted: CHANGES-v2.3.18.md
* Invalidate cache when changing unitsDon Williams2025-12-06-0/+7
| | | | | | | | On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: Weather.py
* Merge pull request #874 from albersonmiranda/weather-fixDonald Williams2025-12-05-5/+5
|\ | | | | fix: Check for empty strings in place parts and prevent coordinates from printing when a place is found.
| * fix: Check for empty strings in place parts and prevent coordinates from ↵Alberson Miranda2025-12-05-5/+5
| | | | | | | | printing when a place is found.
* | new: gestures for laptopsbrockar2025-12-04-2/+6
| |
* | Revise Linux distribution links and compatibility infoDonald Williams2025-12-02-7/+12
| | | | | | Updated links and compatibility notes for various Linux distributions in the README.
* | Updated CHANGELOG.mdDon Williams2025-12-01-9/+17
| |
* | Added nightlight to all waybarsDon Williams2025-12-01-9/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/waybar/configs/[TOP] Default modified: config/waybar/configs/[TOP] Default (old v1) modified: config/waybar/configs/[TOP] Default (old v2) modified: config/waybar/configs/[TOP] Default (old v3) modified: config/waybar/configs/[TOP] Default (old v4) modified: config/waybar/configs/[TOP] Default Laptop (old v1) modified: config/waybar/configs/[TOP] Default Laptop (old v2) modified: config/waybar/configs/[TOP] Default Laptop (old v3) modified: config/waybar/configs/[TOP] Default Laptop (old v4) modified: config/waybar/configs/[TOP] Simple modified: config/waybar/configs/[TOP] Simpliest
* | Update CHANGES for Hyprland-Dots v2.3.18Donald Williams2025-12-01-1/+10
| | | | | | | | Added fixes and improvements for version 2.3.18, including wallpaper handling and keybind functionality. Wallpaper filename fix
* | Merge pull request #873 from ↵Donald Williams2025-12-01-1/+1
|\ \ | | | | | | | | | | | | godlyfast/fix-wallpaper-selector-filename-truncation fix: Fix wallpaper selector showing wrong wallpaper when filename contains dots will display entire filename and extension
| * | fix: Fix wallpaper selector showing wrong wallpaper when filename contains dotsTim2025-12-01-1/+1
|/ / | | | | | | | | | | | | | | | | | | | | | | The `cut -d. -f1` command truncated filenames at the first dot, causing wallpapers named like "01. Catppuccin.jpg" to display as just "01" in the rofi menu. Multiple wallpapers with the same prefix showed identical labels, and selecting one applied the wrong file since `find -print -quit` returned the first alphabetical match. Changed to use full filename `$pic_name` (consistent with GIF and video handling on lines 87 and 94). The existing sed on line 222 correctly strips only the file extension for the find command.
* | Integrate Quickshell-Overview with Qt6 fixes and automation scriptsDon Williams2025-11-30-0/+1328
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ## Overview This commit integrates the corrected Quickshell-Overview feature across all installation and update workflows. The overview provides an AGS alternative with live window previews toggled via Super+TAB keybind. ## Changes ### 1. Quickshell Overview QML Files - Added config/quickshell/overview/ subdirectory with Qt6-compatible QML - Includes 20+ files covering: * OverviewWindow.qml with proper clipping (no OpacityMask, uses QtQuick.Effects) * OverviewWidget.qml for window handling * Overview.qml main component with Hyprland integration * Common utilities and styling * Services for Hyprland data and global state management ### 2. copy.sh Updates - Removes default shell.qml that blocks quickshell named config detection - Auto-copies config/quickshell/overview to ~/.config/quickshell/overview/ - Updates old 'qs' startup commands to 'qs -c overview' - Handles both fresh installs and config overwrite scenarios ### 3. upgrade.sh Updates - Added config/quickshell/ to upgrade directory list - Excludes shell.qml to preserve overview config detection capability - Enables seamless upgrades without losing quickshell settings ### 4. IPC Command Fixes - Corrected OverviewToggle.sh to use proper 'qs ipc -c overview call overview toggle' - Fixed startup commands from old 'qs' to 'qs -c overview' - Hyprland-Dots now uses corrected toggle script ## Qt6 Compatibility - Replaced Qt5Compat.GraphicalEffects with QtQuick.Effects - Removed OpacityMask in favor of Qt6-compatible clipping technique - All QML properly imports Qt6 modules ## Release Script - release.sh automatically uses copy.sh, inheriting all quickshell updates ## Testing - Verified on target systems (Fedora 43 VM, jak-nixos) - qs -c overview successfully launches overview config when shell.qml is removed - IPC toggle commands work correctly within Wayland sessions ## Files Modified - config/quickshell/overview/* (20 new files) - copy.sh (enhanced QS handling) - upgrade.sh (added quickshell to upgrade paths)
* | Update Overview integration with corrected qs ipc commands and startupDon Williams2025-11-30-7/+5
| |
* | fix: laptops system configbrockar2025-11-30-0/+1
| |
* | Missing # in comment lineDon Williams2025-11-26-1/+1
| | | | | | | | | | | | | | | | On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/configs/Keybinds.conf
* | Added keybinds for managine grouped windowsDon Williams2025-11-26-3/+18
| | | | | | | | | | | | | | | | | | | | | | | | Trying to implement https://github.com/JaKooLit/Hyprland-Dots/pull/872 When SUPER RIGHT/LEFT work dynamically in and out of tabbed windows So far not working Code is commented out for now. On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/configs/Keybinds.conf
* | Fixed AWK to pull keybind description not dispatcherDon Williams2025-11-26-8/+3
| |
* | KeyBinds.sh checks sys and user keybinds and flags dupsDon Williams2025-11-26-3/+81
| |
* | Changed unbindd to correct unbindDon Williams2025-11-26-3/+3
| |
* | Formatting error in UserConfigs/UserKeybinds.confDon Williams2025-11-26-10/+10
| |
* | Added instructions on how to unbindd/binddDon Williams2025-11-26-0/+26
| |
* | Left out UserKeybinds in editor screenDon Williams2025-11-26-0/+2
| |
* | Updated menu names for clarityDon Williams2025-11-26-12/+12
| |
* | Small formatting change on Setting MenuDon Williams2025-11-26-14/+14
| |
* | Merge br-userconfigs: Resolve conflict - remove WindowRules-v3.confDon Williams2025-11-25-1013/+515
|\ \
| * | new: UserConfigsSwitches.shbrockar2025-11-22-0/+56
| | | | | | | | | | | | Script to manage UserConfigs
| * | mv: Laptops.conf to configs for default behaviorbrockar2025-11-22-26/+33
| | |
| * | del: windowrules-v3.conf from UserConfigsbrockar2025-11-22-589/+0
| | |
| * | Merge branch 'br-userconfigs' of github.com:Jakoolit/hyprland-dots into ↵brockar2025-11-22-0/+0
| |\ \ | | | | | | | | | | | | br-userconfigs
| | * | new: copy.sh looks the version of dotsbrockar2025-11-22-21/+71
| | | |
| | * | fix: copy.sh now use configs instead of UserSettingsbrockar2025-11-22-80/+56
| | | |
| | * | new: UserSettings commentbrockar2025-11-22-0/+2
| | | |
| | * | mv: workspace help as workspace.confbrockar2025-11-13-0/+0
| | | |
| | * | mv: split system defaults from user overridesbrockar2025-11-13-112/+120
| | | |
| | * | move: Keybindsbrockar2025-11-13-66/+63
| | | |
| | * | new: startup apps for usersbrockar2025-11-13-22/+28
| | | |
| | * | new: env vars modifybrockar2025-11-13-55/+106
| | | |
| | * | Merge remote-tracking branch 'origin/development' into br-userconfigsbrockar2025-11-13-420/+349
| | |\ \
| | * | | windowrules.conf new locationbrockar2025-10-31-232/+3
| | | | |
| | * | | del: windowrules-old.confbrockar2025-10-31-206/+0
| | | | |
| * | | | new: copy.sh looks the version of dotsbrockar2025-11-22-21/+71
| | | | |
| * | | | fix: copy.sh now use configs instead of UserSettingsbrockar2025-11-22-80/+56
| | | | |
| * | | | new: UserSettings commentbrockar2025-11-22-0/+3
| | | | |
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage