Skip to content

Commit 3233bb1

Browse files
committed
Fix: Typos,spelling and and cleanup
1 parent 2b1d37c commit 3233bb1

File tree

5 files changed

+31
-19
lines changed

5 files changed

+31
-19
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to `HyDE` will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to _Modified_ [CalVer](https://calver.org/). See [Versioning](https://github.com/HyDE-Project/HyDE/blob/master/RELEASE_POLICY.md#versioning-yymq) For more info
66

7+
## v25.8.X (Unreleased)
8+
9+
### Fixed
10+
11+
- Typos,spelling and and cleanup
12+
713
## v25.8.2
814

915
Big CHANGE in HyDE! We are now using `uwsm` for session management and app2unit for application management.

Configs/.local/bin/hyde-shell

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -454,22 +454,28 @@ HYDE_SCRIPTS_PATH="${HYDE_SCRIPTS_PATH:-${XDG_CONFIG_HOME:-$HOME/.config}/hyde/s
454454

455455
export BIN_DIR LIB_DIR SHARE_DIR PATH HYDE_SCRIPTS_PATH
456456

457-
#*--------------------------------------------------------------------------------
458-
if [[ "${1}" == "app" ]]; then
459-
export PATH="${HYDE_SCRIPTS_PATH}:${PATH}"
460-
[[ "${HYDEPY}" -eq 1 ]] && python_activate
461-
shift
462-
exec app2unit.sh "$@"
463-
fi
464457
#*--------------------------------------------------------------------------------
465458

466-
# If args is init or --init, print initialization script
467-
if [[ "$1" == "init" || "$1" == "--init" ]]; then
468-
initialized
469-
exit 0
470-
else
471-
export HYDE_SHELL_INIT=1
472-
fi
459+
# Priority commands
460+
case "$1" in
461+
app)
462+
export PATH="${HYDE_SCRIPTS_PATH}:${PATH}"
463+
[[ "${HYDEPY}" -eq 1 ]] && python_activate
464+
shift
465+
exec app2unit.sh "$@"
466+
;;
467+
init | --init)
468+
initialized
469+
exit 0
470+
;;
471+
472+
*)
473+
export HYDE_SHELL_INIT=1
474+
;;
475+
esac
476+
477+
478+
473479
# shellcheck disable=SC1091
474480
if ! source "${LIB_DIR}/hyde/globalcontrol.sh"; then
475481
echo "Error: Could not load HyDE, broken installation?"

Configs/.local/share/hypr/variables.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $QUICKAPPS =
77
$BROWSER = hyde-launch.sh --fall firefox web-browser
88
$EDITOR = hyde-launch.sh --fall code-oss text-editor
99
$EXPLORER= hyde-launch.sh --fall dolphin file-manager
10-
$TERMINAL = hyde-shell xdg-terminal-exec
10+
$TERMINAL = hyde-shell app -T
1111
$LOCKSCREEN= hyprlock
1212
$IDLE= hyde-shell app -t service hypridle
1313

Configs/.local/share/waybar/layouts/khing.jsonc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"passthrough": false,
66
"reload_style_on_change": true,
77
"include": [
8-
"$XDG_CONFIG_HOME/waybar/modules/*json*",
9-
"$XDG_DATA_HOME/waybar/modules/*json*"
10-
// "$XDG_CONFIG_HOME/waybar/includes/includes.json"
8+
// "$XDG_CONFIG_HOME/waybar/modules/*json*",
9+
// "$XDG_DATA_HOME/waybar/modules/*json*"
10+
"$XDG_CONFIG_HOME/waybar/includes/includes.json"
1111
],
1212
// ? Groups per side
1313
"modules-left": ["group/leaf-inverse"],

Configs/.local/share/waybar/modules/custom-hyprsunset.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"custom/hyprsunset": {
33
"return-type": "json",
4-
"format": "{0}",
4+
"format": "{0} ",
55
"exec": "hyde-shell hyprsunset -rq",
66
"rotate": 0,
77
"on-click": "hyde-shell hyprsunset -t -P waybar:19",

0 commit comments

Comments
 (0)