This commit is contained in:
end-4
2025-10-13 11:24:04 +02:00
3 changed files with 12 additions and 2 deletions
+4
View File
@@ -6,6 +6,10 @@
# Code details
## Contributing to i18n
For contributing in translation (i18n) for Quickshell, see also `.config/quickshell/translations/tools`.
## Dynamic loading
- If something's not always necessary, especially when guarded by a config option to enable/disable, put it in a `Loader`. One tip with `Loader`s is sometimes you will need to declare positioning properties (like `anchors`) in the `Loader`, not the `sourceComponent`.
+3 -2
View File
@@ -28,8 +28,9 @@
<details>
<summary>Installation (illogical-impulse Quickshell)</summary>
- See the [Wiki](https://ii.clsty.link/en/ii-qs/01setup/) <sub>(idempotent script provided)</sub>
- In case you can't access the wiki, you can always manually clone this repo and run `install.sh`
- Just run `bash <(curl -s https://ii.clsty.link/setup)`
- Or, clone this repo and run `./install.sh`
- See [document](https://ii.clsty.link/en/ii-qs/01setup/) for details.
- **Default keybinds**: Should be somewhat familiar to Windows or GNOME users. Important ones:
- `Super`+`/` = keybind list
- `Super`+`Enter` = terminal
+5
View File
@@ -1,7 +1,12 @@
#!/usr/bin/env bash
#
# This script is for quickly generate helpful info
#
# It should be as independent as possible and should not source other files unless it has to
#
# TODO: Add quickshell and Qt version check.
# Pay attention to the version of Qt which quickshell built against.
STY_RED='\e[31m'
STY_RESET='\e[00m'