Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2433298bdd | |||
| 8db26e9707 |
@@ -1,64 +0,0 @@
|
|||||||
# Contributing
|
|
||||||
|
|
||||||
- Please, please, please, make multiple PRs if you have many features/fixes, and don't shove your personal changes along with the PR, including changed defaults
|
|
||||||
- We can accept features that we do not personally want, but in that case we will ask you to make it configurable/optionally loaded.
|
|
||||||
- If you want to start working on something _big_ to contribute, it might be a good idea to ask first to not waste your effort (but if you've already done it for yourself, it doesn't hurt to submit).
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
|
|
||||||
See `dots/.config/quickshell/ii/translations/tools`
|
|
||||||
|
|
||||||
# Code
|
|
||||||
|
|
||||||
## Dynamic loading
|
|
||||||
|
|
||||||
- If something's not always necessary, especially when guarded by a config option to enable/disable, put it in a `Loader`
|
|
||||||
- Note that you will need to declare positioning properties (like `anchors`) in the `Loader`, not the `sourceComponent`
|
|
||||||
- When something that's to be dynamically loaded doesn't affect its parent layout, you can have a fading animation by using FadeLoader and set the `shown` prop instead of `active` and `visible`
|
|
||||||
|
|
||||||
## Practical concerns
|
|
||||||
|
|
||||||
- Make sure what you add does not require significant resources for a minor purpose or harm usability just for the sake of looking nice. The dotfiles must remain practical for daily driving.
|
|
||||||
- If there is something really fancy and impractical anyway, add a config option for it and make sure it's disabled by default (example: constantly rotating background clock)
|
|
||||||
|
|
||||||
## Style
|
|
||||||
|
|
||||||
- Spaces
|
|
||||||
- Space properties and children data into meaningful groups. (but of course, don't use 2+ blanks in a row)
|
|
||||||
- Put spaces between text and operators: `if (condition) { ... } else { ... }` instead of `if(condition){ ... }else{ ... }`
|
|
||||||
- As you can see, it's pretty easy to use lots of nesting. There's no hard limit, end-4 himself nests a lot too, but avoid/mitigate that:
|
|
||||||
- Prefer early return: Use something like `if (!condition) return; doStuff();` instead of `if (condition) { doStuff() }`
|
|
||||||
- If you feel it's a bother to refractor something into a new file, remember there's `component` to declare reusable components in the same file.
|
|
||||||
|
|
||||||
# Setting up
|
|
||||||
|
|
||||||
The following instruction assumes that you have an Arch(-based) Linux system.
|
|
||||||
|
|
||||||
## Complete
|
|
||||||
|
|
||||||
_Might not be necessary depending on what you change, but this is recommended._
|
|
||||||
|
|
||||||
- [Install](https://ii.clsty.link/en/ii-qs/01setup/) the dotfiles (if you don't wanna replace your stuff completely, do it on a new user).
|
|
||||||
- Make changes, copy changes to a fork, create PR.
|
|
||||||
|
|
||||||
## Partially working shell
|
|
||||||
|
|
||||||
_Most stuff in the shell will work but not everything._
|
|
||||||
|
|
||||||
- Install Hyprland and the development version of Quickshell (`yay -S hyprland quickshell-git`).
|
|
||||||
- Copy `dots/.config/quickshell` folder to your home directory.
|
|
||||||
|
|
||||||
## Extra setup for Quickshell
|
|
||||||
- Quickshell-specific LSP setup: Run `touch ~/.config/quickshell/ii/.qmlls.ini` for proper LSP support.
|
|
||||||
- Hint for VSCode: Get the official "Qt Qml" extension, go to its settings and change custom exe path to `/usr/bin/qmlls6`.
|
|
||||||
|
|
||||||
## Python
|
|
||||||
If your changes involves using python package or script, please use the virtual environment created by uv as described in `sdata/uv/README.md`.
|
|
||||||
|
|
||||||
# Running
|
|
||||||
|
|
||||||
- Launch Hyprland (not the "uwsm-managed" one)
|
|
||||||
- For the shell:
|
|
||||||
- Open `~/.config/quickshell/ii` in your code editor.
|
|
||||||
- In a terminal run `pkill qs; qs -c ii` to start the shell in the terminal (for logs).
|
|
||||||
- Make edits in the opened folder. Changes are reloaded live.
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
# These are supported funding model platforms
|
|
||||||
|
|
||||||
github: end-4 # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
|
||||||
patreon: # Replace with a single Patreon username
|
|
||||||
open_collective: # Replace with a single Open Collective username
|
|
||||||
ko_fi: # Replace with a single Ko-fi username
|
|
||||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
|
||||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
|
||||||
liberapay: # Replace with a single Liberapay username
|
|
||||||
issuehunt: # Replace with a single IssueHunt username
|
|
||||||
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
|
||||||
polar: # Replace with a single Polar username
|
|
||||||
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
|
|
||||||
thanks_dev: # Replace with a single thanks.dev username
|
|
||||||
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
name: Issue
|
|
||||||
description: for reporting any issue
|
|
||||||
labels: ["ISSUE"]
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: "**Welcome to submit a new issue!**\n- Please search in [existing issues](https://github.com/end-4/dots-hyprland/issues?q=is%3Aissue) before continue.\n- It takes only 3 steps, so please be patient :)\n- NOTE 1: If your issue is not a feature request, and it does not fit into the following form, for example \"how can I edit some widget\", please use [Discussions](https://github.com/end-4/dots-hyprland/discussions) instead.\n- NOTE 2: If your problem is distro specific and you do not use Arch(-based) distros, please submit [Discussion at Extra Distros](https://github.com/end-4/dots-hyprland/discussions/new?category=extra-distros) instead."
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: "Step 1. Before you submit"
|
|
||||||
description: "Hint: The 2nd and 3rd checkbox is **not** forcely required as you may have failed to do so."
|
|
||||||
options:
|
|
||||||
- label: I have read the [Troubleshooting](https://ii.clsty.link/en/ii-qs/04troubleshooting/) and [Usage](https://ii.clsty.link/en/ii-qs/02usage/) pages.
|
|
||||||
required: true
|
|
||||||
- label: I've successfully updated to the latest version following the [guidance](https://ii.clsty.link/en/ii-qs/01setup/#updating).
|
|
||||||
required: false # Not required cuz user may have failed to do so
|
|
||||||
- label: I've successfully updated the system packages to the latest.
|
|
||||||
required: false # Not required cuz user may have failed to do so
|
|
||||||
- label: I've ticked the checkboxes without reading their contents
|
|
||||||
required: false # Obviously
|
|
||||||
# TODO: Use GitHub Action to auto add folding tag if the log contains more than 15 lines, instead of tell user to "paste here" cuz many users actually does not know its meaning (It's also not convenient anyway).
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: "Step 2. Quick diagnose info"
|
|
||||||
description: "Run `./diagnose` inside the repo, and paste the result (which is also saved as file `./diagnose.result`) below."
|
|
||||||
value: "<details><summary>Quick diagnose</summary>\n\n```\n<!-- Run `./diagnose` inside the repo, and paste the result here! -->\n```\n\n</details>"
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
**Tips for the following Step 3**
|
|
||||||
1. Use `LANG=C LC_ALL=C` to get the output of a command in English, eg. `LANG=C LC_ALL=C date` displays time in English.
|
|
||||||
2. If it throws errors, **PLEASE**, attach logs and describe in detail if possible.
|
|
||||||
- Bar and widgets not showing? run `pkill qs; qs -c ii` for logs.
|
|
||||||
- Installation failed? Run installation again for logs.
|
|
||||||
- You may use more code blocks when needed.
|
|
||||||
3. In case you are confused, the `<details>`, `<summary>`, `</summary>`, `</details>` are HTML tags for folding the logs (typically very long) inside. Please do not touch them (unless you know what you are doing).
|
|
||||||
4. If the logs are suuuuuuper long, consider using an online pastebin service instead.
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: "Step 3. Describe the issue"
|
|
||||||
value: "\n<!-- Firsly describe your issue here! -->\n\n<details><summary>Logs</summary>\n\n```\n<!-- Put your log content here!-->\n```\n\n</details>"
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: Reminder
|
|
||||||
options:
|
|
||||||
- label: I agree that it's usually impossible for others to help me without my logs.
|
|
||||||
required: true
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
name: Feature request
|
|
||||||
description: Suggest an idea for this project
|
|
||||||
labels: ["FEATURE"]
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: "NOTE:\n- Please search in [existing issues](https://github.com/end-4/dots-hyprland/issues?q=is%3Aissue) before continue.\n- Please write in **English**."
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: "What would you like to be added?"
|
|
||||||
description: "Can be a suggestion for an existing feature. You can suggest a widget, minor user interaction changes.. whatever."
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: "How will it help?"
|
|
||||||
description: "It's helpful to include examples (like in your use case)."
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: "Extra info"
|
|
||||||
description: "If you want a new widget, a pic of the inspiration (if available) would be awesome."
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
blank_issues_enabled: false
|
|
||||||
@@ -1,178 +0,0 @@
|
|||||||
<div align="center">
|
|
||||||
<h1>【 end_4's Hyprland dotfiles 】</h1>
|
|
||||||
<h3></h3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div align="center">
|
|
||||||
|
|
||||||

|
|
||||||

|
|
||||||

|
|
||||||
<a href="https://discord.gg/GtdRBXgMwq"> <img alt="Dynamic JSON Badge" src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fdiscordapp.com%2Fapi%2Finvites%2FGtdRBXgMwq%3Fwith_counts%3Dtrue&query=approximate_member_count&style=for-the-badge&logo=discord&logoColor=D9E0EE&label=discord&labelColor=%231E202B&color=86dbc0&link=https%3A%2F%2Fdiscord.gg%2FGtdRBXgMwq"> </a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div align="center">
|
|
||||||
<h2>• overview •</h2>
|
|
||||||
<h3></h3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
> [!WARNING]
|
|
||||||
> Hyprland 0.55 update:
|
|
||||||
> If your distro has not shipped Hyprland 0.55 and/or you're not ready for it, you should switch to the Pre-Hyprland Luaification release (or not update yet, if you're going to do that). See the wiki for more info: [Install](https://ii.clsty.link/en/ii-qs/01setup/#automated-installation) | [Update](https://ii.clsty.link/en/ii-qs/01setup/#updating)
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>What this is/isn't</summary>
|
|
||||||
|
|
||||||
- Technically, configuration files
|
|
||||||
- Realistically, mostly the custom graphical shell
|
|
||||||
- NOT a system setup script: no graphic drivers, no zram setup, etc.
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Notable features</summary>
|
|
||||||
|
|
||||||
- **Overview**: Shows open apps with live previews
|
|
||||||
- **AI**: Gemini, Ollama, and more
|
|
||||||
- **QoL**: screen translation, anti-flashbang, Google Lens
|
|
||||||
- **Material themes**: Choose your wallpaper, done, enjoy
|
|
||||||
- **Transparent installation**: Every command is shown before it's run
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Installation</summary>
|
|
||||||
|
|
||||||
- **IMPORTANT: Hyprland 0.55 Update**: If your distro has not shipped Hyprland 0.55 and/or you're not ready for it, you should switch to the Pre-Hyprland Luaification release. See [the wiki](https://ii.clsty.link/en/ii-qs/01setup/) for more info
|
|
||||||
- Just run `bash <(curl -s https://ii.clsty.link/get)`
|
|
||||||
- Or, clone this repo and run `./setup install`
|
|
||||||
- See [the wiki](https://ii.clsty.link/en/ii-qs/01setup/) for more details
|
|
||||||
- **Keybinds**: Should be somewhat familiar to Windows or GNOME users. Important ones:
|
|
||||||
- `Super`+`/` = keybind list
|
|
||||||
- `Super`+`Enter` = terminal
|
|
||||||
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Software overview</summary>
|
|
||||||
|
|
||||||
| Software | Purpose |
|
|
||||||
| ------------- | ------------- |
|
|
||||||
| [Hyprland](https://github.com/hyprwm/hyprland) | The compositor (manages and renders windows) |
|
|
||||||
| [Quickshell](https://quickshell.outfoxxed.me/) | A QtQuick-based widget system, used for the status bar, sidebars, etc. |
|
|
||||||
| Others | See [deps-info.md](https://github.com/end-4/dots-hyprland/blob/main/sdata/deps-info.md) |
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Discord</summary>
|
|
||||||
<a href="https://discord.gg/GtdRBXgMwq"> Server link</a> | I hope this provides a friendlier environment for support without needing me to personally accept every friend request/DM. For real issues, prefer GitHub
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<div align="center">
|
|
||||||
<h2>• screenshots •</h2>
|
|
||||||
<h3></h3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div align="center">
|
|
||||||
<img src="assets/illogical-impulse.svg" alt="illogical-impulse logo" style="float:left; width:400;">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
Widget system: Quickshell | Support: Yes
|
|
||||||
|
|
||||||
[Showcase video](https://www.youtube.com/watch?v=RPwovTInagE)
|
|
||||||
|
|
||||||
| AI, settings app | Some widgets |
|
|
||||||
|:---|:---------------|
|
|
||||||
| <img width="1920" height="1080" alt="image" src="https://github.com/user-attachments/assets/5d4e7d07-d0b4-4406-a4c9-ed7ba90e3fe4" /> | <img width="1920" height="1080" alt="image" src="https://github.com/user-attachments/assets/6a32395f-9437-4192-8faf-2951a9e84cbe" /> |
|
|
||||||
| Window management | wow look its orange |
|
|
||||||
| <img width="1920" height="1080" alt="image" src="https://github.com/user-attachments/assets/c51bed8b-3670-4d4c-9074-873be224fb8e" /> | <img width="1920" height="1080" alt="image" src="https://github.com/user-attachments/assets/98703a66-0743-439f-a721-cef7afa6ab95" /> |
|
|
||||||
|
|
||||||
<div align="center">
|
|
||||||
<h2>• thank you •</h2>
|
|
||||||
<h3></h3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
- [@clsty](https://github.com/clsty) for making the dotfiles accessible by taking care of the install script and many other things
|
|
||||||
- [@midn8hustlr](https://github.com/midn8hustlr) for greatly improving the color generation system
|
|
||||||
- [@outfoxxed](https://github.com/outfoxxed/) for being extremely supportive in my Quickshell journey
|
|
||||||
- Quickshell: [Soramane](https://github.com/caelestia-dots/shell/), [FridayFaerie](https://github.com/FridayFaerie/quickshell), [nydragon](https://github.com/nydragon/nysh)
|
|
||||||
- AGS: [Aylur](https://github.com/Aylur/dotfiles/tree/ags-pre-ts), [kotontrion](https://github.com/kotontrion/dotfiles)
|
|
||||||
- EWW: [fufexan](https://github.com/fufexan/dotfiles)
|
|
||||||
|
|
||||||
<div align="center">
|
|
||||||
<h2>• stonks •</h2>
|
|
||||||
<h3></h3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
- I promise not to attempt an +ULTRARICOSHOT irl... Coins can go here: https://github.com/sponsors/end-4
|
|
||||||
- Tentacle cat hub twinkle internet points
|
|
||||||
|
|
||||||
[](https://starchart.cc/end-4/dots-hyprland)
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<div align="center">
|
|
||||||
<h2>• previous styles •</h2>
|
|
||||||
<h3></h3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
- **Unsupported!**
|
|
||||||
- **Source**: illogical-impulse AGS in `ii-ags` branch, others in `archive` branch.
|
|
||||||
- List is in reverse chronological order
|
|
||||||
|
|
||||||
### illogical-impulse (AGS)
|
|
||||||
|
|
||||||
Widget system: AGS | Support: No
|
|
||||||
|
|
||||||
| AI | Common widgets |
|
|
||||||
|:---|:---------------|
|
|
||||||
|  |  |
|
|
||||||
| Window management | Weeb power |
|
|
||||||
|  |  |
|
|
||||||
|
|
||||||
#### m3ww
|
|
||||||
|
|
||||||
Widget system: EWW | Support: No
|
|
||||||
|
|
||||||
<a href="https://streamable.com/85ch8x">
|
|
||||||
<img src="https://github.com/end-4/dots-hyprland/assets/97237370/09533e64-b6d7-47eb-a840-ee90c6776adf" alt="Material Eww!">
|
|
||||||
</a>
|
|
||||||
|
|
||||||
#### NovelKnock
|
|
||||||
|
|
||||||
Widget system: EWW | Support: No
|
|
||||||
|
|
||||||
<a href="https://streamable.com/7vo61k">
|
|
||||||
<img src="https://github.com/end-4/dots-hyprland/assets/97237370/42903d03-bf6f-49d4-be7f-dd77e6cb389d" alt="Desktop Preview">
|
|
||||||
</a>
|
|
||||||
|
|
||||||
#### Hybrid
|
|
||||||
|
|
||||||
Widget system: EWW | Support: No
|
|
||||||
|
|
||||||
<a href="https://streamable.com/4oogot">
|
|
||||||
<img src="https://github.com/end-4/dots-hyprland/assets/97237370/190deb1e-f6f5-46ce-8cf0-9b39944c079d" alt="click the circles!">
|
|
||||||
</a>
|
|
||||||
|
|
||||||
#### Windoes
|
|
||||||
|
|
||||||
Widget system: EWW | Support: No
|
|
||||||
|
|
||||||
<a href="https://streamable.com/5qx614">
|
|
||||||
<img src="https://github.com/end-4/dots-hyprland/assets/97237370/b15317b1-f295-49f5-b90c-fb6328b8d886" alt="Desktop Preview">
|
|
||||||
</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div align="center">
|
|
||||||
<h2>• inspirations/copying •</h2>
|
|
||||||
<h3></h3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
- Inspiration: osu!lazer (Hybrid), Windows 11 (Windoes), AvdanOS (NovelKnock), Material Design 3 (m3ww & later)
|
|
||||||
- Copying: Absolutely, feel free. Just follow the license and it's all good
|
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 20 KiB |
@@ -1,7 +0,0 @@
|
|||||||
## Describe your changes
|
|
||||||
|
|
||||||
<!--- ONE FEATURE PER PULL REQUEST ONLY -->
|
|
||||||
|
|
||||||
## Is it ready? Questions/feedback needed?
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,167 +0,0 @@
|
|||||||
on:
|
|
||||||
issues:
|
|
||||||
types: [opened]
|
|
||||||
|
|
||||||
name: Close issues when the "ticked without reading" checkbox is checked
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
issues: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
detect-and-close:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Detect checked "ticked without reading" checkbox, comment, close and lock
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
OWNER: ${{ github.repository_owner }}
|
|
||||||
REPO: ${{ github.event.repository.name }}
|
|
||||||
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
|
||||||
ISSUE_BODY: ${{ toJson(github.event.issue.body) }}
|
|
||||||
ISSUE_USER: ${{ github.event.issue.user.login }}
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
# Normalize the JSON-encoded body into plain text
|
|
||||||
BODY=$(printf '%s' "$ISSUE_BODY" | sed -E 's/^"(.*)"$/\1/' | sed 's/\\"/"/g' | sed 's/\\n/\n/g')
|
|
||||||
|
|
||||||
echo "Checking issue #${ISSUE_NUMBER} for the target checked checkbox..."
|
|
||||||
# Use -- to stop option parsing so the leading - in the pattern isn't treated as an option
|
|
||||||
if printf '%s' "$BODY" | grep -Fiq -- "- [x] I've ticked the checkboxes without reading their contents"; then
|
|
||||||
echo "Target checkbox is checked. Proceeding to comment, close and lock the issue."
|
|
||||||
|
|
||||||
# --- Get issue node id via GraphQL ---
|
|
||||||
QUERY='query($owner: String!, $name: String!, $number: Int!) { repository(owner: $owner, name: $name) { issue(number: $number) { id } } }'
|
|
||||||
GET_ID_PAYLOAD=$(jq -n --arg q "$QUERY" --arg owner "$OWNER" --arg name "$REPO" --argjson number "$ISSUE_NUMBER" '{query:$q, variables:{owner:$owner, name:$name, number:$number}}')
|
|
||||||
|
|
||||||
echo "GraphQL: fetching issue node id..."
|
|
||||||
RES=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" -H "Content-Type: application/json" -d "$GET_ID_PAYLOAD" https://api.github.com/graphql)
|
|
||||||
echo "GraphQL response (get id):"
|
|
||||||
printf '%s\n' "$RES"
|
|
||||||
|
|
||||||
ISSUE_ID=$(printf '%s' "$RES" | jq -r '.data.repository.issue.id // empty')
|
|
||||||
|
|
||||||
if [ -z "$ISSUE_ID" ]; then
|
|
||||||
echo "Failed to get issue id from GraphQL response. Aborting."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Issue node id: $ISSUE_ID"
|
|
||||||
|
|
||||||
# --- Post a comment to the issue ---
|
|
||||||
COMMENT_BODY="Hi @${ISSUE_USER} — I noticed you checked \"I've ticked the checkboxes without reading their contents\" in the issue template. To help others assist you effectively, please read the template and provide the requested diagnostic information (Step 2 & Step 3). I will close this issue now. If you create a new issue with the required information, we can re-evaluate. Thank you!"
|
|
||||||
MUT_ADD_COMMENT='mutation($id: ID!, $body: String!) { addComment(input: {subjectId: $id, body: $body}) { clientMutationId } }'
|
|
||||||
ADD_COMMENT_PAYLOAD=$(jq -n --arg q "$MUT_ADD_COMMENT" --arg id "$ISSUE_ID" --arg body "$COMMENT_BODY" '{query:$q, variables:{id:$id, body:$body}}')
|
|
||||||
|
|
||||||
echo "GraphQL: adding comment..."
|
|
||||||
RES_COMMENT=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" -H "Content-Type: application/json" -d "$ADD_COMMENT_PAYLOAD" https://api.github.com/graphql)
|
|
||||||
echo "GraphQL response (add comment):"
|
|
||||||
printf '%s\n' "$RES_COMMENT"
|
|
||||||
|
|
||||||
ERR_COMMENT=$(printf '%s' "$RES_COMMENT" | jq -r '.errors[]?.message // empty')
|
|
||||||
if [ -n "$ERR_COMMENT" ]; then
|
|
||||||
echo "addComment error: $ERR_COMMENT"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Comment posted."
|
|
||||||
|
|
||||||
# --- Attempt to close via GraphQL updateIssue ---
|
|
||||||
MUT_UPDATE_ISSUE='mutation($id: ID!) { updateIssue(input: {id: $id, state: CLOSED, stateReason: NOT_PLANNED}) { issue { number, state, stateReason } } }'
|
|
||||||
UPDATE_PAYLOAD=$(jq -n --arg q "$MUT_UPDATE_ISSUE" --arg id "$ISSUE_ID" '{query:$q, variables:{id:$id}}')
|
|
||||||
|
|
||||||
echo "GraphQL: updating issue (close with NOT_PLANNED)..."
|
|
||||||
RES_UPDATE=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" -H "Content-Type: application/json" -d "$UPDATE_PAYLOAD" https://api.github.com/graphql)
|
|
||||||
echo "GraphQL response (update issue):"
|
|
||||||
printf '%s\n' "$RES_UPDATE"
|
|
||||||
|
|
||||||
ERR_UPDATE=$(printf '%s' "$RES_UPDATE" | jq -r '.errors[]?.message // empty')
|
|
||||||
UPDATED_STATE=$(printf '%s' "$RES_UPDATE" | jq -r '.data.updateIssue.issue.state // empty')
|
|
||||||
UPDATED_REASON=$(printf '%s' "$RES_UPDATE" | jq -r '.data.updateIssue.issue.stateReason // empty')
|
|
||||||
|
|
||||||
CLOSED_OK=false
|
|
||||||
|
|
||||||
if [ -n "$ERR_UPDATE" ]; then
|
|
||||||
echo "GraphQL updateIssue returned errors: $ERR_UPDATE"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$UPDATED_STATE" = "CLOSED" ]; then
|
|
||||||
echo "Issue closed via GraphQL: state=$UPDATED_STATE, stateReason=$UPDATED_REASON"
|
|
||||||
CLOSED_OK=true
|
|
||||||
else
|
|
||||||
echo "GraphQL update did not confirm the issue is closed. Falling back to REST API PATCH to ensure the issue is closed."
|
|
||||||
|
|
||||||
# REST fallback to close the issue with state_reason "not_planned"
|
|
||||||
REST_PAYLOAD=$(jq -n --arg state "closed" --arg sr "not_planned" '{state:$state, state_reason:$sr}')
|
|
||||||
echo "REST: PATCH /repos/$OWNER/$REPO/issues/$ISSUE_NUMBER payload: $REST_PAYLOAD"
|
|
||||||
RES_REST=$(curl -s -w "\n%{http_code}" -X PATCH \
|
|
||||||
-H "Authorization: Bearer $GITHUB_TOKEN" \
|
|
||||||
-H "Accept: application/vnd.github+json" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d "$REST_PAYLOAD" \
|
|
||||||
"https://api.github.com/repos/$OWNER/$REPO/issues/$ISSUE_NUMBER")
|
|
||||||
|
|
||||||
HTTP_STATUS=$(printf '%s' "$RES_REST" | tail -n1)
|
|
||||||
RESP_BODY=$(printf '%s' "$RES_REST" | sed '$d')
|
|
||||||
|
|
||||||
echo "REST response body:"
|
|
||||||
printf '%s\n' "$RESP_BODY"
|
|
||||||
echo "REST HTTP status: $HTTP_STATUS"
|
|
||||||
|
|
||||||
if [ "$HTTP_STATUS" -ge 200 ] && [ "$HTTP_STATUS" -lt 300 ]; then
|
|
||||||
CLOSED_STATE=$(printf '%s' "$RESP_BODY" | jq -r '.state // empty')
|
|
||||||
CLOSED_REASON=$(printf '%s' "$RESP_BODY" | jq -r '.state_reason // empty')
|
|
||||||
echo "Issue closed via REST: state=$CLOSED_STATE, state_reason=$CLOSED_REASON"
|
|
||||||
if [ "$CLOSED_STATE" = "closed" ]; then
|
|
||||||
CLOSED_OK=true
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "REST fallback failed to close the issue. See REST response above."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# --- Attempt to lock the conversation (GraphQL first, then REST fallback) ---
|
|
||||||
if [ "$CLOSED_OK" = "true" ]; then
|
|
||||||
echo "Attempting to lock the conversation via GraphQL with reason NO_REASON..."
|
|
||||||
|
|
||||||
MUT_LOCK='mutation($id: ID!, $reason: LockReason) { lockLockable(input:{lockableId:$id, lockReason:$reason}) { clientMutationId } }'
|
|
||||||
LOCK_PAYLOAD=$(jq -n --arg q "$MUT_LOCK" --arg id "$ISSUE_ID" --arg reason "NO_REASON" '{query:$q, variables:{id:$id, reason:$reason}}')
|
|
||||||
|
|
||||||
RES_LOCK=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" -H "Content-Type: application/json" -d "$LOCK_PAYLOAD" https://api.github.com/graphql)
|
|
||||||
echo "GraphQL response (lock):"
|
|
||||||
printf '%s\n' "$RES_LOCK"
|
|
||||||
|
|
||||||
LOCK_ERR=$(printf '%s' "$RES_LOCK" | jq -r '.errors[]?.message // empty')
|
|
||||||
|
|
||||||
if [ -n "$LOCK_ERR" ]; then
|
|
||||||
echo "GraphQL lockLockable returned errors: $LOCK_ERR"
|
|
||||||
echo "Falling back to REST API to lock the conversation (no explicit reason)."
|
|
||||||
|
|
||||||
# REST fallback to lock the issue (no lock_reason to indicate "no reason")
|
|
||||||
RES_REST_LOCK=$(curl -s -w "\n%{http_code}" -X PUT \
|
|
||||||
-H "Authorization: Bearer $GITHUB_TOKEN" \
|
|
||||||
-H "Accept: application/vnd.github+json" \
|
|
||||||
"https://api.github.com/repos/$OWNER/$REPO/issues/$ISSUE_NUMBER/lock" -d '{}')
|
|
||||||
|
|
||||||
HTTP_STATUS_LOCK=$(printf '%s' "$RES_REST_LOCK" | tail -n1)
|
|
||||||
RESP_BODY_LOCK=$(printf '%s' "$RES_REST_LOCK" | sed '$d')
|
|
||||||
|
|
||||||
echo "REST lock response body:"
|
|
||||||
printf '%s\n' "$RESP_BODY_LOCK"
|
|
||||||
echo "REST lock HTTP status: $HTTP_STATUS_LOCK"
|
|
||||||
|
|
||||||
if [ "$HTTP_STATUS_LOCK" -ge 200 ] && [ "$HTTP_STATUS_LOCK" -lt 300 ]; then
|
|
||||||
echo "Issue conversation locked via REST (no explicit reason)."
|
|
||||||
else
|
|
||||||
echo "REST fallback failed to lock the conversation. See REST response above."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "Lock via GraphQL succeeded (or returned no errors)."
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "Issue was not successfully closed; skipping lock."
|
|
||||||
fi
|
|
||||||
|
|
||||||
else
|
|
||||||
echo "Checkbox not present/checked. Nothing to do."
|
|
||||||
fi
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
name: Comment on Discussion When sdata/dist-arch/ Changes
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
- "sdata/dist-arch/**"
|
|
||||||
- "!sdata/dist-arch/README.md"
|
|
||||||
# workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
comment_on_discussion:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: github.ref == 'refs/heads/main' && github.repository == 'end-4/dots-hyprland'
|
|
||||||
steps:
|
|
||||||
- name: Create comment on discussion #2140
|
|
||||||
env:
|
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
DISCUSSION_NUMBER: 2140
|
|
||||||
# https://docs.github.com/en/graphql/guides/using-the-graphql-api-for-discussions
|
|
||||||
# https://docs.github.com/en/graphql/reference/mutations#adddiscussioncomment
|
|
||||||
run: |
|
|
||||||
MESSAGE="**Auto notification:**\n"
|
|
||||||
MESSAGE+="Directory \`sdata/dist-arch\` has been updated.\n"
|
|
||||||
MESSAGE+="Commit HASH: ${{ github.sha }}\n"
|
|
||||||
MESSAGE+="Commit message: ${{ github.event.head_commit.message }}"
|
|
||||||
REPO_OWNER="${{ github.repository_owner }}"
|
|
||||||
REPO_NAME="${{ github.event.repository.name }}"
|
|
||||||
|
|
||||||
DISCUSSION_NODE_ID=$(gh api graphql -f query='
|
|
||||||
query {
|
|
||||||
repository( owner: "'${REPO_OWNER}'", name: "'${REPO_NAME}'" )
|
|
||||||
{ discussion(number: '${DISCUSSION_NUMBER}') { id } }
|
|
||||||
}' | \
|
|
||||||
jq -r '.data.repository.discussion.id')
|
|
||||||
gh api graphql -f query='
|
|
||||||
mutation {
|
|
||||||
addDiscussionComment(input:{
|
|
||||||
discussionId: "'$DISCUSSION_NODE_ID'",
|
|
||||||
body: "'"$MESSAGE"'",
|
|
||||||
}) {
|
|
||||||
clientMutationId
|
|
||||||
comment {
|
|
||||||
id
|
|
||||||
body
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
name: Dump github context
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
dump_github_context:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Dump github context
|
|
||||||
run: echo "$GITHUB_CONTEXT"
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
name: AI Moderator
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types: [opened]
|
|
||||||
issue_comment:
|
|
||||||
types: [created]
|
|
||||||
pull_request_review_comment:
|
|
||||||
types: [created]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
spam-detection:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
issues: write
|
|
||||||
pull-requests: write
|
|
||||||
models: read
|
|
||||||
contents: read
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: github/ai-moderator@v1
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
spam-label: 'spam'
|
|
||||||
ai-label: 'ai-generated'
|
|
||||||
minimize-detected-comments: true
|
|
||||||
# Built-in prompt configuration (all enabled by default)
|
|
||||||
enable-spam-detection: true
|
|
||||||
enable-link-spam-detection: true
|
|
||||||
enable-ai-detection: true
|
|
||||||
# custom-prompt-path: '.github/prompts/my-custom.prompt.yml' # Optional
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
/diagnose.result
|
|
||||||
/cache
|
|
||||||
|
|
||||||
# Ignore Python cache files
|
|
||||||
__pycache__/
|
|
||||||
*.py[cod]
|
|
||||||
|
|
||||||
/dots/.config/quickshell/ii/.qmlls.ini
|
|
||||||
|
|
||||||
# exp-update
|
|
||||||
/.update-lock
|
|
||||||
|
|
||||||
# custom os-release
|
|
||||||
/os-release
|
|
||||||
|
|
||||||
# Emacs auto backup file
|
|
||||||
*~
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[submodule "dots/.config/quickshell/ii/modules/common/widgets/shapes"]
|
|
||||||
path = dots/.config/quickshell/ii/modules/common/widgets/shapes
|
|
||||||
url = https://github.com/end-4/rounded-polygon-qmljs.git
|
|
||||||
@@ -1,674 +0,0 @@
|
|||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
Version 3, 29 June 2007
|
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The GNU General Public License is a free, copyleft license for
|
|
||||||
software and other kinds of works.
|
|
||||||
|
|
||||||
The licenses for most software and other practical works are designed
|
|
||||||
to take away your freedom to share and change the works. By contrast,
|
|
||||||
the GNU General Public License is intended to guarantee your freedom to
|
|
||||||
share and change all versions of a program--to make sure it remains free
|
|
||||||
software for all its users. We, the Free Software Foundation, use the
|
|
||||||
GNU General Public License for most of our software; it applies also to
|
|
||||||
any other work released this way by its authors. You can apply it to
|
|
||||||
your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
them if you wish), that you receive source code or can get it if you
|
|
||||||
want it, that you can change the software or use pieces of it in new
|
|
||||||
free programs, and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to prevent others from denying you
|
|
||||||
these rights or asking you to surrender the rights. Therefore, you have
|
|
||||||
certain responsibilities if you distribute copies of the software, or if
|
|
||||||
you modify it: responsibilities to respect the freedom of others.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
|
||||||
gratis or for a fee, you must pass on to the recipients the same
|
|
||||||
freedoms that you received. You must make sure that they, too, receive
|
|
||||||
or can get the source code. And you must show them these terms so they
|
|
||||||
know their rights.
|
|
||||||
|
|
||||||
Developers that use the GNU GPL protect your rights with two steps:
|
|
||||||
(1) assert copyright on the software, and (2) offer you this License
|
|
||||||
giving you legal permission to copy, distribute and/or modify it.
|
|
||||||
|
|
||||||
For the developers' and authors' protection, the GPL clearly explains
|
|
||||||
that there is no warranty for this free software. For both users' and
|
|
||||||
authors' sake, the GPL requires that modified versions be marked as
|
|
||||||
changed, so that their problems will not be attributed erroneously to
|
|
||||||
authors of previous versions.
|
|
||||||
|
|
||||||
Some devices are designed to deny users access to install or run
|
|
||||||
modified versions of the software inside them, although the manufacturer
|
|
||||||
can do so. This is fundamentally incompatible with the aim of
|
|
||||||
protecting users' freedom to change the software. The systematic
|
|
||||||
pattern of such abuse occurs in the area of products for individuals to
|
|
||||||
use, which is precisely where it is most unacceptable. Therefore, we
|
|
||||||
have designed this version of the GPL to prohibit the practice for those
|
|
||||||
products. If such problems arise substantially in other domains, we
|
|
||||||
stand ready to extend this provision to those domains in future versions
|
|
||||||
of the GPL, as needed to protect the freedom of users.
|
|
||||||
|
|
||||||
Finally, every program is threatened constantly by software patents.
|
|
||||||
States should not allow patents to restrict development and use of
|
|
||||||
software on general-purpose computers, but in those that do, we wish to
|
|
||||||
avoid the special danger that patents applied to a free program could
|
|
||||||
make it effectively proprietary. To prevent this, the GPL assures that
|
|
||||||
patents cannot be used to render the program non-free.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
0. Definitions.
|
|
||||||
|
|
||||||
"This License" refers to version 3 of the GNU General Public License.
|
|
||||||
|
|
||||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
||||||
works, such as semiconductor masks.
|
|
||||||
|
|
||||||
"The Program" refers to any copyrightable work licensed under this
|
|
||||||
License. Each licensee is addressed as "you". "Licensees" and
|
|
||||||
"recipients" may be individuals or organizations.
|
|
||||||
|
|
||||||
To "modify" a work means to copy from or adapt all or part of the work
|
|
||||||
in a fashion requiring copyright permission, other than the making of an
|
|
||||||
exact copy. The resulting work is called a "modified version" of the
|
|
||||||
earlier work or a work "based on" the earlier work.
|
|
||||||
|
|
||||||
A "covered work" means either the unmodified Program or a work based
|
|
||||||
on the Program.
|
|
||||||
|
|
||||||
To "propagate" a work means to do anything with it that, without
|
|
||||||
permission, would make you directly or secondarily liable for
|
|
||||||
infringement under applicable copyright law, except executing it on a
|
|
||||||
computer or modifying a private copy. Propagation includes copying,
|
|
||||||
distribution (with or without modification), making available to the
|
|
||||||
public, and in some countries other activities as well.
|
|
||||||
|
|
||||||
To "convey" a work means any kind of propagation that enables other
|
|
||||||
parties to make or receive copies. Mere interaction with a user through
|
|
||||||
a computer network, with no transfer of a copy, is not conveying.
|
|
||||||
|
|
||||||
An interactive user interface displays "Appropriate Legal Notices"
|
|
||||||
to the extent that it includes a convenient and prominently visible
|
|
||||||
feature that (1) displays an appropriate copyright notice, and (2)
|
|
||||||
tells the user that there is no warranty for the work (except to the
|
|
||||||
extent that warranties are provided), that licensees may convey the
|
|
||||||
work under this License, and how to view a copy of this License. If
|
|
||||||
the interface presents a list of user commands or options, such as a
|
|
||||||
menu, a prominent item in the list meets this criterion.
|
|
||||||
|
|
||||||
1. Source Code.
|
|
||||||
|
|
||||||
The "source code" for a work means the preferred form of the work
|
|
||||||
for making modifications to it. "Object code" means any non-source
|
|
||||||
form of a work.
|
|
||||||
|
|
||||||
A "Standard Interface" means an interface that either is an official
|
|
||||||
standard defined by a recognized standards body, or, in the case of
|
|
||||||
interfaces specified for a particular programming language, one that
|
|
||||||
is widely used among developers working in that language.
|
|
||||||
|
|
||||||
The "System Libraries" of an executable work include anything, other
|
|
||||||
than the work as a whole, that (a) is included in the normal form of
|
|
||||||
packaging a Major Component, but which is not part of that Major
|
|
||||||
Component, and (b) serves only to enable use of the work with that
|
|
||||||
Major Component, or to implement a Standard Interface for which an
|
|
||||||
implementation is available to the public in source code form. A
|
|
||||||
"Major Component", in this context, means a major essential component
|
|
||||||
(kernel, window system, and so on) of the specific operating system
|
|
||||||
(if any) on which the executable work runs, or a compiler used to
|
|
||||||
produce the work, or an object code interpreter used to run it.
|
|
||||||
|
|
||||||
The "Corresponding Source" for a work in object code form means all
|
|
||||||
the source code needed to generate, install, and (for an executable
|
|
||||||
work) run the object code and to modify the work, including scripts to
|
|
||||||
control those activities. However, it does not include the work's
|
|
||||||
System Libraries, or general-purpose tools or generally available free
|
|
||||||
programs which are used unmodified in performing those activities but
|
|
||||||
which are not part of the work. For example, Corresponding Source
|
|
||||||
includes interface definition files associated with source files for
|
|
||||||
the work, and the source code for shared libraries and dynamically
|
|
||||||
linked subprograms that the work is specifically designed to require,
|
|
||||||
such as by intimate data communication or control flow between those
|
|
||||||
subprograms and other parts of the work.
|
|
||||||
|
|
||||||
The Corresponding Source need not include anything that users
|
|
||||||
can regenerate automatically from other parts of the Corresponding
|
|
||||||
Source.
|
|
||||||
|
|
||||||
The Corresponding Source for a work in source code form is that
|
|
||||||
same work.
|
|
||||||
|
|
||||||
2. Basic Permissions.
|
|
||||||
|
|
||||||
All rights granted under this License are granted for the term of
|
|
||||||
copyright on the Program, and are irrevocable provided the stated
|
|
||||||
conditions are met. This License explicitly affirms your unlimited
|
|
||||||
permission to run the unmodified Program. The output from running a
|
|
||||||
covered work is covered by this License only if the output, given its
|
|
||||||
content, constitutes a covered work. This License acknowledges your
|
|
||||||
rights of fair use or other equivalent, as provided by copyright law.
|
|
||||||
|
|
||||||
You may make, run and propagate covered works that you do not
|
|
||||||
convey, without conditions so long as your license otherwise remains
|
|
||||||
in force. You may convey covered works to others for the sole purpose
|
|
||||||
of having them make modifications exclusively for you, or provide you
|
|
||||||
with facilities for running those works, provided that you comply with
|
|
||||||
the terms of this License in conveying all material for which you do
|
|
||||||
not control copyright. Those thus making or running the covered works
|
|
||||||
for you must do so exclusively on your behalf, under your direction
|
|
||||||
and control, on terms that prohibit them from making any copies of
|
|
||||||
your copyrighted material outside their relationship with you.
|
|
||||||
|
|
||||||
Conveying under any other circumstances is permitted solely under
|
|
||||||
the conditions stated below. Sublicensing is not allowed; section 10
|
|
||||||
makes it unnecessary.
|
|
||||||
|
|
||||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
||||||
|
|
||||||
No covered work shall be deemed part of an effective technological
|
|
||||||
measure under any applicable law fulfilling obligations under article
|
|
||||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
|
||||||
similar laws prohibiting or restricting circumvention of such
|
|
||||||
measures.
|
|
||||||
|
|
||||||
When you convey a covered work, you waive any legal power to forbid
|
|
||||||
circumvention of technological measures to the extent such circumvention
|
|
||||||
is effected by exercising rights under this License with respect to
|
|
||||||
the covered work, and you disclaim any intention to limit operation or
|
|
||||||
modification of the work as a means of enforcing, against the work's
|
|
||||||
users, your or third parties' legal rights to forbid circumvention of
|
|
||||||
technological measures.
|
|
||||||
|
|
||||||
4. Conveying Verbatim Copies.
|
|
||||||
|
|
||||||
You may convey verbatim copies of the Program's source code as you
|
|
||||||
receive it, in any medium, provided that you conspicuously and
|
|
||||||
appropriately publish on each copy an appropriate copyright notice;
|
|
||||||
keep intact all notices stating that this License and any
|
|
||||||
non-permissive terms added in accord with section 7 apply to the code;
|
|
||||||
keep intact all notices of the absence of any warranty; and give all
|
|
||||||
recipients a copy of this License along with the Program.
|
|
||||||
|
|
||||||
You may charge any price or no price for each copy that you convey,
|
|
||||||
and you may offer support or warranty protection for a fee.
|
|
||||||
|
|
||||||
5. Conveying Modified Source Versions.
|
|
||||||
|
|
||||||
You may convey a work based on the Program, or the modifications to
|
|
||||||
produce it from the Program, in the form of source code under the
|
|
||||||
terms of section 4, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) The work must carry prominent notices stating that you modified
|
|
||||||
it, and giving a relevant date.
|
|
||||||
|
|
||||||
b) The work must carry prominent notices stating that it is
|
|
||||||
released under this License and any conditions added under section
|
|
||||||
7. This requirement modifies the requirement in section 4 to
|
|
||||||
"keep intact all notices".
|
|
||||||
|
|
||||||
c) You must license the entire work, as a whole, under this
|
|
||||||
License to anyone who comes into possession of a copy. This
|
|
||||||
License will therefore apply, along with any applicable section 7
|
|
||||||
additional terms, to the whole of the work, and all its parts,
|
|
||||||
regardless of how they are packaged. This License gives no
|
|
||||||
permission to license the work in any other way, but it does not
|
|
||||||
invalidate such permission if you have separately received it.
|
|
||||||
|
|
||||||
d) If the work has interactive user interfaces, each must display
|
|
||||||
Appropriate Legal Notices; however, if the Program has interactive
|
|
||||||
interfaces that do not display Appropriate Legal Notices, your
|
|
||||||
work need not make them do so.
|
|
||||||
|
|
||||||
A compilation of a covered work with other separate and independent
|
|
||||||
works, which are not by their nature extensions of the covered work,
|
|
||||||
and which are not combined with it such as to form a larger program,
|
|
||||||
in or on a volume of a storage or distribution medium, is called an
|
|
||||||
"aggregate" if the compilation and its resulting copyright are not
|
|
||||||
used to limit the access or legal rights of the compilation's users
|
|
||||||
beyond what the individual works permit. Inclusion of a covered work
|
|
||||||
in an aggregate does not cause this License to apply to the other
|
|
||||||
parts of the aggregate.
|
|
||||||
|
|
||||||
6. Conveying Non-Source Forms.
|
|
||||||
|
|
||||||
You may convey a covered work in object code form under the terms
|
|
||||||
of sections 4 and 5, provided that you also convey the
|
|
||||||
machine-readable Corresponding Source under the terms of this License,
|
|
||||||
in one of these ways:
|
|
||||||
|
|
||||||
a) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by the
|
|
||||||
Corresponding Source fixed on a durable physical medium
|
|
||||||
customarily used for software interchange.
|
|
||||||
|
|
||||||
b) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by a
|
|
||||||
written offer, valid for at least three years and valid for as
|
|
||||||
long as you offer spare parts or customer support for that product
|
|
||||||
model, to give anyone who possesses the object code either (1) a
|
|
||||||
copy of the Corresponding Source for all the software in the
|
|
||||||
product that is covered by this License, on a durable physical
|
|
||||||
medium customarily used for software interchange, for a price no
|
|
||||||
more than your reasonable cost of physically performing this
|
|
||||||
conveying of source, or (2) access to copy the
|
|
||||||
Corresponding Source from a network server at no charge.
|
|
||||||
|
|
||||||
c) Convey individual copies of the object code with a copy of the
|
|
||||||
written offer to provide the Corresponding Source. This
|
|
||||||
alternative is allowed only occasionally and noncommercially, and
|
|
||||||
only if you received the object code with such an offer, in accord
|
|
||||||
with subsection 6b.
|
|
||||||
|
|
||||||
d) Convey the object code by offering access from a designated
|
|
||||||
place (gratis or for a charge), and offer equivalent access to the
|
|
||||||
Corresponding Source in the same way through the same place at no
|
|
||||||
further charge. You need not require recipients to copy the
|
|
||||||
Corresponding Source along with the object code. If the place to
|
|
||||||
copy the object code is a network server, the Corresponding Source
|
|
||||||
may be on a different server (operated by you or a third party)
|
|
||||||
that supports equivalent copying facilities, provided you maintain
|
|
||||||
clear directions next to the object code saying where to find the
|
|
||||||
Corresponding Source. Regardless of what server hosts the
|
|
||||||
Corresponding Source, you remain obligated to ensure that it is
|
|
||||||
available for as long as needed to satisfy these requirements.
|
|
||||||
|
|
||||||
e) Convey the object code using peer-to-peer transmission, provided
|
|
||||||
you inform other peers where the object code and Corresponding
|
|
||||||
Source of the work are being offered to the general public at no
|
|
||||||
charge under subsection 6d.
|
|
||||||
|
|
||||||
A separable portion of the object code, whose source code is excluded
|
|
||||||
from the Corresponding Source as a System Library, need not be
|
|
||||||
included in conveying the object code work.
|
|
||||||
|
|
||||||
A "User Product" is either (1) a "consumer product", which means any
|
|
||||||
tangible personal property which is normally used for personal, family,
|
|
||||||
or household purposes, or (2) anything designed or sold for incorporation
|
|
||||||
into a dwelling. In determining whether a product is a consumer product,
|
|
||||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
|
||||||
product received by a particular user, "normally used" refers to a
|
|
||||||
typical or common use of that class of product, regardless of the status
|
|
||||||
of the particular user or of the way in which the particular user
|
|
||||||
actually uses, or expects or is expected to use, the product. A product
|
|
||||||
is a consumer product regardless of whether the product has substantial
|
|
||||||
commercial, industrial or non-consumer uses, unless such uses represent
|
|
||||||
the only significant mode of use of the product.
|
|
||||||
|
|
||||||
"Installation Information" for a User Product means any methods,
|
|
||||||
procedures, authorization keys, or other information required to install
|
|
||||||
and execute modified versions of a covered work in that User Product from
|
|
||||||
a modified version of its Corresponding Source. The information must
|
|
||||||
suffice to ensure that the continued functioning of the modified object
|
|
||||||
code is in no case prevented or interfered with solely because
|
|
||||||
modification has been made.
|
|
||||||
|
|
||||||
If you convey an object code work under this section in, or with, or
|
|
||||||
specifically for use in, a User Product, and the conveying occurs as
|
|
||||||
part of a transaction in which the right of possession and use of the
|
|
||||||
User Product is transferred to the recipient in perpetuity or for a
|
|
||||||
fixed term (regardless of how the transaction is characterized), the
|
|
||||||
Corresponding Source conveyed under this section must be accompanied
|
|
||||||
by the Installation Information. But this requirement does not apply
|
|
||||||
if neither you nor any third party retains the ability to install
|
|
||||||
modified object code on the User Product (for example, the work has
|
|
||||||
been installed in ROM).
|
|
||||||
|
|
||||||
The requirement to provide Installation Information does not include a
|
|
||||||
requirement to continue to provide support service, warranty, or updates
|
|
||||||
for a work that has been modified or installed by the recipient, or for
|
|
||||||
the User Product in which it has been modified or installed. Access to a
|
|
||||||
network may be denied when the modification itself materially and
|
|
||||||
adversely affects the operation of the network or violates the rules and
|
|
||||||
protocols for communication across the network.
|
|
||||||
|
|
||||||
Corresponding Source conveyed, and Installation Information provided,
|
|
||||||
in accord with this section must be in a format that is publicly
|
|
||||||
documented (and with an implementation available to the public in
|
|
||||||
source code form), and must require no special password or key for
|
|
||||||
unpacking, reading or copying.
|
|
||||||
|
|
||||||
7. Additional Terms.
|
|
||||||
|
|
||||||
"Additional permissions" are terms that supplement the terms of this
|
|
||||||
License by making exceptions from one or more of its conditions.
|
|
||||||
Additional permissions that are applicable to the entire Program shall
|
|
||||||
be treated as though they were included in this License, to the extent
|
|
||||||
that they are valid under applicable law. If additional permissions
|
|
||||||
apply only to part of the Program, that part may be used separately
|
|
||||||
under those permissions, but the entire Program remains governed by
|
|
||||||
this License without regard to the additional permissions.
|
|
||||||
|
|
||||||
When you convey a copy of a covered work, you may at your option
|
|
||||||
remove any additional permissions from that copy, or from any part of
|
|
||||||
it. (Additional permissions may be written to require their own
|
|
||||||
removal in certain cases when you modify the work.) You may place
|
|
||||||
additional permissions on material, added by you to a covered work,
|
|
||||||
for which you have or can give appropriate copyright permission.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, for material you
|
|
||||||
add to a covered work, you may (if authorized by the copyright holders of
|
|
||||||
that material) supplement the terms of this License with terms:
|
|
||||||
|
|
||||||
a) Disclaiming warranty or limiting liability differently from the
|
|
||||||
terms of sections 15 and 16 of this License; or
|
|
||||||
|
|
||||||
b) Requiring preservation of specified reasonable legal notices or
|
|
||||||
author attributions in that material or in the Appropriate Legal
|
|
||||||
Notices displayed by works containing it; or
|
|
||||||
|
|
||||||
c) Prohibiting misrepresentation of the origin of that material, or
|
|
||||||
requiring that modified versions of such material be marked in
|
|
||||||
reasonable ways as different from the original version; or
|
|
||||||
|
|
||||||
d) Limiting the use for publicity purposes of names of licensors or
|
|
||||||
authors of the material; or
|
|
||||||
|
|
||||||
e) Declining to grant rights under trademark law for use of some
|
|
||||||
trade names, trademarks, or service marks; or
|
|
||||||
|
|
||||||
f) Requiring indemnification of licensors and authors of that
|
|
||||||
material by anyone who conveys the material (or modified versions of
|
|
||||||
it) with contractual assumptions of liability to the recipient, for
|
|
||||||
any liability that these contractual assumptions directly impose on
|
|
||||||
those licensors and authors.
|
|
||||||
|
|
||||||
All other non-permissive additional terms are considered "further
|
|
||||||
restrictions" within the meaning of section 10. If the Program as you
|
|
||||||
received it, or any part of it, contains a notice stating that it is
|
|
||||||
governed by this License along with a term that is a further
|
|
||||||
restriction, you may remove that term. If a license document contains
|
|
||||||
a further restriction but permits relicensing or conveying under this
|
|
||||||
License, you may add to a covered work material governed by the terms
|
|
||||||
of that license document, provided that the further restriction does
|
|
||||||
not survive such relicensing or conveying.
|
|
||||||
|
|
||||||
If you add terms to a covered work in accord with this section, you
|
|
||||||
must place, in the relevant source files, a statement of the
|
|
||||||
additional terms that apply to those files, or a notice indicating
|
|
||||||
where to find the applicable terms.
|
|
||||||
|
|
||||||
Additional terms, permissive or non-permissive, may be stated in the
|
|
||||||
form of a separately written license, or stated as exceptions;
|
|
||||||
the above requirements apply either way.
|
|
||||||
|
|
||||||
8. Termination.
|
|
||||||
|
|
||||||
You may not propagate or modify a covered work except as expressly
|
|
||||||
provided under this License. Any attempt otherwise to propagate or
|
|
||||||
modify it is void, and will automatically terminate your rights under
|
|
||||||
this License (including any patent licenses granted under the third
|
|
||||||
paragraph of section 11).
|
|
||||||
|
|
||||||
However, if you cease all violation of this License, then your
|
|
||||||
license from a particular copyright holder is reinstated (a)
|
|
||||||
provisionally, unless and until the copyright holder explicitly and
|
|
||||||
finally terminates your license, and (b) permanently, if the copyright
|
|
||||||
holder fails to notify you of the violation by some reasonable means
|
|
||||||
prior to 60 days after the cessation.
|
|
||||||
|
|
||||||
Moreover, your license from a particular copyright holder is
|
|
||||||
reinstated permanently if the copyright holder notifies you of the
|
|
||||||
violation by some reasonable means, this is the first time you have
|
|
||||||
received notice of violation of this License (for any work) from that
|
|
||||||
copyright holder, and you cure the violation prior to 30 days after
|
|
||||||
your receipt of the notice.
|
|
||||||
|
|
||||||
Termination of your rights under this section does not terminate the
|
|
||||||
licenses of parties who have received copies or rights from you under
|
|
||||||
this License. If your rights have been terminated and not permanently
|
|
||||||
reinstated, you do not qualify to receive new licenses for the same
|
|
||||||
material under section 10.
|
|
||||||
|
|
||||||
9. Acceptance Not Required for Having Copies.
|
|
||||||
|
|
||||||
You are not required to accept this License in order to receive or
|
|
||||||
run a copy of the Program. Ancillary propagation of a covered work
|
|
||||||
occurring solely as a consequence of using peer-to-peer transmission
|
|
||||||
to receive a copy likewise does not require acceptance. However,
|
|
||||||
nothing other than this License grants you permission to propagate or
|
|
||||||
modify any covered work. These actions infringe copyright if you do
|
|
||||||
not accept this License. Therefore, by modifying or propagating a
|
|
||||||
covered work, you indicate your acceptance of this License to do so.
|
|
||||||
|
|
||||||
10. Automatic Licensing of Downstream Recipients.
|
|
||||||
|
|
||||||
Each time you convey a covered work, the recipient automatically
|
|
||||||
receives a license from the original licensors, to run, modify and
|
|
||||||
propagate that work, subject to this License. You are not responsible
|
|
||||||
for enforcing compliance by third parties with this License.
|
|
||||||
|
|
||||||
An "entity transaction" is a transaction transferring control of an
|
|
||||||
organization, or substantially all assets of one, or subdividing an
|
|
||||||
organization, or merging organizations. If propagation of a covered
|
|
||||||
work results from an entity transaction, each party to that
|
|
||||||
transaction who receives a copy of the work also receives whatever
|
|
||||||
licenses to the work the party's predecessor in interest had or could
|
|
||||||
give under the previous paragraph, plus a right to possession of the
|
|
||||||
Corresponding Source of the work from the predecessor in interest, if
|
|
||||||
the predecessor has it or can get it with reasonable efforts.
|
|
||||||
|
|
||||||
You may not impose any further restrictions on the exercise of the
|
|
||||||
rights granted or affirmed under this License. For example, you may
|
|
||||||
not impose a license fee, royalty, or other charge for exercise of
|
|
||||||
rights granted under this License, and you may not initiate litigation
|
|
||||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
||||||
any patent claim is infringed by making, using, selling, offering for
|
|
||||||
sale, or importing the Program or any portion of it.
|
|
||||||
|
|
||||||
11. Patents.
|
|
||||||
|
|
||||||
A "contributor" is a copyright holder who authorizes use under this
|
|
||||||
License of the Program or a work on which the Program is based. The
|
|
||||||
work thus licensed is called the contributor's "contributor version".
|
|
||||||
|
|
||||||
A contributor's "essential patent claims" are all patent claims
|
|
||||||
owned or controlled by the contributor, whether already acquired or
|
|
||||||
hereafter acquired, that would be infringed by some manner, permitted
|
|
||||||
by this License, of making, using, or selling its contributor version,
|
|
||||||
but do not include claims that would be infringed only as a
|
|
||||||
consequence of further modification of the contributor version. For
|
|
||||||
purposes of this definition, "control" includes the right to grant
|
|
||||||
patent sublicenses in a manner consistent with the requirements of
|
|
||||||
this License.
|
|
||||||
|
|
||||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
||||||
patent license under the contributor's essential patent claims, to
|
|
||||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
||||||
propagate the contents of its contributor version.
|
|
||||||
|
|
||||||
In the following three paragraphs, a "patent license" is any express
|
|
||||||
agreement or commitment, however denominated, not to enforce a patent
|
|
||||||
(such as an express permission to practice a patent or covenant not to
|
|
||||||
sue for patent infringement). To "grant" such a patent license to a
|
|
||||||
party means to make such an agreement or commitment not to enforce a
|
|
||||||
patent against the party.
|
|
||||||
|
|
||||||
If you convey a covered work, knowingly relying on a patent license,
|
|
||||||
and the Corresponding Source of the work is not available for anyone
|
|
||||||
to copy, free of charge and under the terms of this License, through a
|
|
||||||
publicly available network server or other readily accessible means,
|
|
||||||
then you must either (1) cause the Corresponding Source to be so
|
|
||||||
available, or (2) arrange to deprive yourself of the benefit of the
|
|
||||||
patent license for this particular work, or (3) arrange, in a manner
|
|
||||||
consistent with the requirements of this License, to extend the patent
|
|
||||||
license to downstream recipients. "Knowingly relying" means you have
|
|
||||||
actual knowledge that, but for the patent license, your conveying the
|
|
||||||
covered work in a country, or your recipient's use of the covered work
|
|
||||||
in a country, would infringe one or more identifiable patents in that
|
|
||||||
country that you have reason to believe are valid.
|
|
||||||
|
|
||||||
If, pursuant to or in connection with a single transaction or
|
|
||||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
|
||||||
covered work, and grant a patent license to some of the parties
|
|
||||||
receiving the covered work authorizing them to use, propagate, modify
|
|
||||||
or convey a specific copy of the covered work, then the patent license
|
|
||||||
you grant is automatically extended to all recipients of the covered
|
|
||||||
work and works based on it.
|
|
||||||
|
|
||||||
A patent license is "discriminatory" if it does not include within
|
|
||||||
the scope of its coverage, prohibits the exercise of, or is
|
|
||||||
conditioned on the non-exercise of one or more of the rights that are
|
|
||||||
specifically granted under this License. You may not convey a covered
|
|
||||||
work if you are a party to an arrangement with a third party that is
|
|
||||||
in the business of distributing software, under which you make payment
|
|
||||||
to the third party based on the extent of your activity of conveying
|
|
||||||
the work, and under which the third party grants, to any of the
|
|
||||||
parties who would receive the covered work from you, a discriminatory
|
|
||||||
patent license (a) in connection with copies of the covered work
|
|
||||||
conveyed by you (or copies made from those copies), or (b) primarily
|
|
||||||
for and in connection with specific products or compilations that
|
|
||||||
contain the covered work, unless you entered into that arrangement,
|
|
||||||
or that patent license was granted, prior to 28 March 2007.
|
|
||||||
|
|
||||||
Nothing in this License shall be construed as excluding or limiting
|
|
||||||
any implied license or other defenses to infringement that may
|
|
||||||
otherwise be available to you under applicable patent law.
|
|
||||||
|
|
||||||
12. No Surrender of Others' Freedom.
|
|
||||||
|
|
||||||
If conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot convey a
|
|
||||||
covered work so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you may
|
|
||||||
not convey it at all. For example, if you agree to terms that obligate you
|
|
||||||
to collect a royalty for further conveying from those to whom you convey
|
|
||||||
the Program, the only way you could satisfy both those terms and this
|
|
||||||
License would be to refrain entirely from conveying the Program.
|
|
||||||
|
|
||||||
13. Use with the GNU Affero General Public License.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, you have
|
|
||||||
permission to link or combine any covered work with a work licensed
|
|
||||||
under version 3 of the GNU Affero General Public License into a single
|
|
||||||
combined work, and to convey the resulting work. The terms of this
|
|
||||||
License will continue to apply to the part which is the covered work,
|
|
||||||
but the special requirements of the GNU Affero General Public License,
|
|
||||||
section 13, concerning interaction through a network will apply to the
|
|
||||||
combination as such.
|
|
||||||
|
|
||||||
14. Revised Versions of this License.
|
|
||||||
|
|
||||||
The Free Software Foundation may publish revised and/or new versions of
|
|
||||||
the GNU General Public License from time to time. Such new versions will
|
|
||||||
be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the
|
|
||||||
Program specifies that a certain numbered version of the GNU General
|
|
||||||
Public License "or any later version" applies to it, you have the
|
|
||||||
option of following the terms and conditions either of that numbered
|
|
||||||
version or of any later version published by the Free Software
|
|
||||||
Foundation. If the Program does not specify a version number of the
|
|
||||||
GNU General Public License, you may choose any version ever published
|
|
||||||
by the Free Software Foundation.
|
|
||||||
|
|
||||||
If the Program specifies that a proxy can decide which future
|
|
||||||
versions of the GNU General Public License can be used, that proxy's
|
|
||||||
public statement of acceptance of a version permanently authorizes you
|
|
||||||
to choose that version for the Program.
|
|
||||||
|
|
||||||
Later license versions may give you additional or different
|
|
||||||
permissions. However, no additional obligations are imposed on any
|
|
||||||
author or copyright holder as a result of your choosing to follow a
|
|
||||||
later version.
|
|
||||||
|
|
||||||
15. Disclaimer of Warranty.
|
|
||||||
|
|
||||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
||||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
||||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
|
||||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
|
||||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
|
||||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
16. Limitation of Liability.
|
|
||||||
|
|
||||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
|
||||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
|
||||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
|
||||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
|
||||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
|
||||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
|
||||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
|
||||||
SUCH DAMAGES.
|
|
||||||
|
|
||||||
17. Interpretation of Sections 15 and 16.
|
|
||||||
|
|
||||||
If the disclaimer of warranty and limitation of liability provided
|
|
||||||
above cannot be given local legal effect according to their terms,
|
|
||||||
reviewing courts shall apply local law that most closely approximates
|
|
||||||
an absolute waiver of all civil liability in connection with the
|
|
||||||
Program, unless a warranty or assumption of liability accompanies a
|
|
||||||
copy of the Program in return for a fee.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
state the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the program's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If the program does terminal interaction, make it output a short
|
|
||||||
notice like this when it starts in an interactive mode:
|
|
||||||
|
|
||||||
<program> Copyright (C) <year> <name of author>
|
|
||||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
||||||
parts of the General Public License. Of course, your program's commands
|
|
||||||
might be different; for a GUI interface, you would use an "about box".
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or school,
|
|
||||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
||||||
For more information on this, and how to apply and follow the GNU GPL, see
|
|
||||||
<https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
The GNU General Public License does not permit incorporating your program
|
|
||||||
into proprietary programs. If your program is a subroutine library, you
|
|
||||||
may consider it more useful to permit linking proprietary applications with
|
|
||||||
the library. If this is what you want to do, use the GNU Lesser General
|
|
||||||
Public License instead of this License. But first, please read
|
|
||||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
## Archive
|
||||||
|
- This branch holds config files that I no longer use or support.
|
||||||
|
- You'll probably in debugging hell if you want them to work
|
||||||
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
#!/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: How to get the Qt version which Quickshell was built against?
|
|
||||||
|
|
||||||
STY_RED='\e[31m'
|
|
||||||
STY_RST='\e[00m'
|
|
||||||
|
|
||||||
cd "$(dirname "$0")";export base="$(pwd)"
|
|
||||||
output_file=diagnose.result;rm $output_file
|
|
||||||
export LANG=C;export LC_ALL=C
|
|
||||||
case $(whoami) in
|
|
||||||
root)echo -e "${STY_RED}[$0]: This script is NOT to be executed with sudo or as root. Aborting...${STY_RST}";exit 1;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
|
|
||||||
x() { _exec "$@" 2>&1 | tee -a $output_file ; }
|
|
||||||
e() { _box "$@" | tee -a $output_file ; }
|
|
||||||
_box() {
|
|
||||||
length=$(echo "$1" | wc -L);total_width=$((length + 2))
|
|
||||||
#line=$(printf "═%.0s" $(seq 1 $total_width))
|
|
||||||
#border_up="╔${line}╗";border_down="╚${line}╝"
|
|
||||||
#border_vertical="║"
|
|
||||||
line=$(printf "=%.0s" $(seq 1 $total_width))
|
|
||||||
border_up="/${line}\\";border_down="\\${line}/"
|
|
||||||
border_vertical="|"
|
|
||||||
echo -e "\n$border_up"
|
|
||||||
echo "$border_vertical $1 $border_vertical"
|
|
||||||
echo "$border_down"
|
|
||||||
}
|
|
||||||
_exec() {
|
|
||||||
printf "\n[===diagnose===] $*\n"
|
|
||||||
"$@"
|
|
||||||
err=$?;if [ ! $err -eq 0 ];then echo "[---EXIT $err---]";else echo "[---SUCCESS---]";fi
|
|
||||||
}
|
|
||||||
_check_distro_id() {
|
|
||||||
OS_RELEASE_FILE=/etc/os-release
|
|
||||||
if [[ -f "$OS_RELEASE_FILE" ]]; then
|
|
||||||
OS_DISTRO_ID=$(awk -F'=' '/^ID=/ { gsub(/["\x27]/,"",$2); print tolower($2) }' ${OS_RELEASE_FILE} 2> /dev/null)
|
|
||||||
OS_DISTRO_ID_LIKE=$(awk -F'=' '/^ID_LIKE=/ { gsub(/["\x27]/,"",$2); print tolower($2) }' ${OS_RELEASE_FILE} 2> /dev/null)
|
|
||||||
echo "distro ID: $OS_DISTRO_ID"
|
|
||||||
echo "distro ID_LIKE: $OS_DISTRO_ID_LIKE"
|
|
||||||
else
|
|
||||||
echo "$OS_RELEASE_FILE does not exist."
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
_check_distro() {
|
|
||||||
lsb_release -a || cat /etc/os-release || cat /etc/lsb-release
|
|
||||||
}
|
|
||||||
_check_venv() {
|
|
||||||
source $(eval echo $ILLOGICAL_IMPULSE_VIRTUAL_ENV)/bin/activate
|
|
||||||
which python
|
|
||||||
deactivate
|
|
||||||
}
|
|
||||||
_check_quickshell_version() {
|
|
||||||
pacman -Q | grep -E 'quickshell|qt6-base'
|
|
||||||
}
|
|
||||||
_check_PKGBUILD_version() {
|
|
||||||
pacman -Q | grep '^illogical-impulse-'
|
|
||||||
}
|
|
||||||
|
|
||||||
e "Checking git repo info"
|
|
||||||
x git remote get-url origin
|
|
||||||
x git rev-parse HEAD
|
|
||||||
x git status
|
|
||||||
x git submodule status --recursive
|
|
||||||
|
|
||||||
e "Checking distro"
|
|
||||||
x _check_distro_id
|
|
||||||
x cat os-release
|
|
||||||
#x _check_distro
|
|
||||||
|
|
||||||
e "Checking variables"
|
|
||||||
x declare -p XDG_CACHE_HOME # ~/.cache
|
|
||||||
x declare -p XDG_CONFIG_HOME # ~/.config
|
|
||||||
x declare -p XDG_DATA_HOME # ~/.local/share
|
|
||||||
x declare -p XDG_STATE_HOME # ~/.local/state
|
|
||||||
x declare -p ILLOGICAL_IMPULSE_VIRTUAL_ENV # $XDG_STATE_HOME/quickshell/.venv
|
|
||||||
|
|
||||||
e "Checking directories/files"
|
|
||||||
x ls -l ~/.local/state/quickshell/.venv
|
|
||||||
|
|
||||||
#e "Checking command existence"
|
|
||||||
#commands=(yay pacman zypper apt dnf yum)
|
|
||||||
#commands+=(ags agsv1)
|
|
||||||
#commands+=(Hyprland hypr{ctl,idle,lock,picker})
|
|
||||||
#commands+=(uv)
|
|
||||||
#for i in "${commands[@]}";do x command -v $i;done
|
|
||||||
|
|
||||||
e "Checking versions"
|
|
||||||
x Hyprland --version
|
|
||||||
x _check_quickshell_version
|
|
||||||
x _check_PKGBUILD_version
|
|
||||||
|
|
||||||
e "Finished. Output saved as \"$output_file\"."
|
|
||||||
if ! command -v curl 2>&1 >>/dev/null ;then echo "\"curl\" not found, pastebin upload unavailable.";exit;fi
|
|
||||||
echo "(Optional) Do you agree to upload the file \"$output_file\" to the online pastebin (https://0x0.st)?"
|
|
||||||
echo "Notes:"
|
|
||||||
echo "1. It is a public service and the logfile will be expired in 15 days."
|
|
||||||
echo "2. You should have a look at the content of \"$output_file\" before agreeing to upload it."
|
|
||||||
echo "3. Only agree when necessary, typically when you are creating an issue and not able to upload the \"diagnose.result\" file there or copy-paste the output directly."
|
|
||||||
read -p "y=yes, n=no (default) ====> " p
|
|
||||||
case $p in
|
|
||||||
[yY]) echo "OK, uploading..."
|
|
||||||
curl -F'file=@diagnose.result' -Fexpires=360 https://0x0.st && \
|
|
||||||
echo "Uploaded. Please attach the URL above when asking for help."
|
|
||||||
;;
|
|
||||||
*) echo "Uploading aborted.";;
|
|
||||||
esac
|
|
||||||
@@ -1,366 +0,0 @@
|
|||||||
;;; material-theme.el --- Theme using Matugen SCSS variables
|
|
||||||
|
|
||||||
;; Copyright (C) 2025
|
|
||||||
|
|
||||||
;; Author: Generated (Improved)
|
|
||||||
;; Version: 1.2
|
|
||||||
;; Package-Requires: ((emacs "24.1"))
|
|
||||||
;; Keywords: faces
|
|
||||||
|
|
||||||
;;; Commentary:
|
|
||||||
|
|
||||||
;; A theme using Matugen SCSS variables with quality of life improvements:
|
|
||||||
;; - Better source block distinction
|
|
||||||
;; - Improved text visibility when selected
|
|
||||||
;; - Refined org-mode styling with hidden asterisks
|
|
||||||
;; - Enhanced contrast and readability
|
|
||||||
;; - Seamless integration of source blocks with consistent styling
|
|
||||||
|
|
||||||
;;; Code:
|
|
||||||
|
|
||||||
(deftheme material "Theme using Matugen SCSS variables with quality of life improvements.")
|
|
||||||
|
|
||||||
;; Define function to read SCSS variables
|
|
||||||
(defun material-get-color-from-scss (var-name)
|
|
||||||
"Extract color value for VAR-NAME from material_colors.scss file."
|
|
||||||
(let* ((scss-file (expand-file-name "~/.local/state/quickshell/user/generated/material_colors.scss"))
|
|
||||||
(scss-content (with-temp-buffer
|
|
||||||
(insert-file-contents scss-file)
|
|
||||||
(buffer-string)))
|
|
||||||
(var-pattern (concat "\\$" var-name ":\\s-+\\(#[0-9a-fA-F]\\{6\\}\\);"))
|
|
||||||
(match (string-match var-pattern scss-content)))
|
|
||||||
(if match
|
|
||||||
(match-string 1 scss-content)
|
|
||||||
(message "Could not find color variable: %s" var-name)
|
|
||||||
"#000000")))
|
|
||||||
|
|
||||||
;; Define function to adjust color brightness
|
|
||||||
(defun material-adjust-color (hex-color factor)
|
|
||||||
"Adjust HEX-COLOR brightness by FACTOR (0-2).
|
|
||||||
Values < 1 darken, values > 1 lighten."
|
|
||||||
(let* ((r (string-to-number (substring hex-color 1 3) 16))
|
|
||||||
(g (string-to-number (substring hex-color 3 5) 16))
|
|
||||||
(b (string-to-number (substring hex-color 5 7) 16))
|
|
||||||
(adjust-channel (lambda (channel)
|
|
||||||
(max 0 (min 255 (round (* channel factor))))))
|
|
||||||
(new-r (funcall adjust-channel r))
|
|
||||||
(new-g (funcall adjust-channel g))
|
|
||||||
(new-b (funcall adjust-channel b)))
|
|
||||||
(format "#%02x%02x%02x" new-r new-g new-b)))
|
|
||||||
|
|
||||||
;; Define all the color variables
|
|
||||||
(let* ((bg (material-get-color-from-scss "background"))
|
|
||||||
(err (material-get-color-from-scss "error"))
|
|
||||||
(err-container (material-get-color-from-scss "errorContainer"))
|
|
||||||
(inverse-on-surface (material-get-color-from-scss "inverseOnSurface"))
|
|
||||||
(inverse-primary (material-get-color-from-scss "inversePrimary"))
|
|
||||||
(inverse-surface (material-get-color-from-scss "inverseSurface"))
|
|
||||||
(on-background (material-get-color-from-scss "onBackground"))
|
|
||||||
(on-err (material-get-color-from-scss "onError"))
|
|
||||||
(on-err-container (material-get-color-from-scss "onErrorContainer"))
|
|
||||||
(on-primary (material-get-color-from-scss "onPrimary"))
|
|
||||||
(on-primary-container (material-get-color-from-scss "onPrimaryContainer"))
|
|
||||||
(on-primary-fixed (material-get-color-from-scss "onPrimaryFixed"))
|
|
||||||
(on-primary-fixed-variant (material-get-color-from-scss "onPrimaryFixedVariant"))
|
|
||||||
(on-secondary (material-get-color-from-scss "onSecondary"))
|
|
||||||
(on-secondary-container (material-get-color-from-scss "onSecondaryContainer"))
|
|
||||||
(on-secondary-fixed (material-get-color-from-scss "onSecondaryFixed"))
|
|
||||||
(on-secondary-fixed-variant (material-get-color-from-scss "onSecondaryFixedVariant"))
|
|
||||||
(on-surface (material-get-color-from-scss "onSurface"))
|
|
||||||
(on-surface-variant (material-get-color-from-scss "onSurfaceVariant"))
|
|
||||||
(on-tertiary (material-get-color-from-scss "onTertiary"))
|
|
||||||
(on-tertiary-container (material-get-color-from-scss "onTertiaryContainer"))
|
|
||||||
(on-tertiary-fixed (material-get-color-from-scss "onTertiaryFixed"))
|
|
||||||
(on-tertiary-fixed-variant (material-get-color-from-scss "onTertiaryFixedVariant"))
|
|
||||||
(outline-color (material-get-color-from-scss "outline"))
|
|
||||||
(outline-variant (material-get-color-from-scss "outlineVariant"))
|
|
||||||
(primary (material-get-color-from-scss "primary"))
|
|
||||||
(primary-container (material-get-color-from-scss "primaryContainer"))
|
|
||||||
(primary-fixed (material-get-color-from-scss "primaryFixed"))
|
|
||||||
(primary-fixed-dim (material-get-color-from-scss "primaryFixedDim"))
|
|
||||||
(scrim (material-get-color-from-scss "scrim"))
|
|
||||||
(secondary (material-get-color-from-scss "secondary"))
|
|
||||||
(secondary-container (material-get-color-from-scss "secondaryContainer"))
|
|
||||||
(secondary-fixed (material-get-color-from-scss "secondaryFixed"))
|
|
||||||
(secondary-fixed-dim (material-get-color-from-scss "secondaryFixedDim"))
|
|
||||||
(shadow (material-get-color-from-scss "shadow"))
|
|
||||||
(surface (material-get-color-from-scss "surface"))
|
|
||||||
(surface-bright (material-get-color-from-scss "surfaceBright"))
|
|
||||||
(surface-container (material-get-color-from-scss "surfaceContainer"))
|
|
||||||
(surface-container-high (material-get-color-from-scss "surfaceContainerHigh"))
|
|
||||||
(surface-container-highest (material-get-color-from-scss "surfaceContainerHighest"))
|
|
||||||
(surface-container-low (material-get-color-from-scss "surfaceContainerLow"))
|
|
||||||
(surface-container-lowest (material-get-color-from-scss "surfaceContainerLowest"))
|
|
||||||
(surface-dim (material-get-color-from-scss "surfaceDim"))
|
|
||||||
(surface-tint (material-get-color-from-scss "surfaceTint"))
|
|
||||||
(surface-variant (material-get-color-from-scss "surfaceVariant"))
|
|
||||||
(tertiary (material-get-color-from-scss "tertiary"))
|
|
||||||
(tertiary-container (material-get-color-from-scss "tertiaryContainer"))
|
|
||||||
(tertiary-fixed (material-get-color-from-scss "tertiaryFixed"))
|
|
||||||
(tertiary-fixed-dim (material-get-color-from-scss "tertiaryFixedDim"))
|
|
||||||
(success (material-get-color-from-scss "success"))
|
|
||||||
(on-success (material-get-color-from-scss "onSuccess"))
|
|
||||||
(success-container (material-get-color-from-scss "successContainer"))
|
|
||||||
(on-success-container (material-get-color-from-scss "onSuccessContainer"))
|
|
||||||
(term0 (material-get-color-from-scss "term0"))
|
|
||||||
(term1 (material-get-color-from-scss "term1"))
|
|
||||||
(term2 (material-get-color-from-scss "term2"))
|
|
||||||
(term3 (material-get-color-from-scss "term3"))
|
|
||||||
(term4 (material-get-color-from-scss "term4"))
|
|
||||||
(term5 (material-get-color-from-scss "term5"))
|
|
||||||
(term6 (material-get-color-from-scss "term6"))
|
|
||||||
(term7 (material-get-color-from-scss "term7"))
|
|
||||||
(term8 (material-get-color-from-scss "term8"))
|
|
||||||
(term9 (material-get-color-from-scss "term9"))
|
|
||||||
(term10 (material-get-color-from-scss "term10"))
|
|
||||||
(term11 (material-get-color-from-scss "term11"))
|
|
||||||
(term12 (material-get-color-from-scss "term12"))
|
|
||||||
(term13 (material-get-color-from-scss "term13"))
|
|
||||||
(term14 (material-get-color-from-scss "term14"))
|
|
||||||
(term15 (material-get-color-from-scss "term15")))
|
|
||||||
|
|
||||||
(custom-theme-set-faces
|
|
||||||
'material
|
|
||||||
;; Basic faces
|
|
||||||
`(default ((t (:background ,bg :foreground ,on-background))))
|
|
||||||
`(cursor ((t (:background ,primary))))
|
|
||||||
`(highlight ((t (:background ,primary-container :foreground ,on-primary-container))))
|
|
||||||
`(region ((t (:background ,primary-container :foreground ,on-primary-container :extend t))))
|
|
||||||
`(secondary-selection ((t (:background ,secondary-container :foreground ,on-secondary-container :extend t))))
|
|
||||||
`(isearch ((t (:background ,tertiary-container :foreground ,on-tertiary-container :weight bold))))
|
|
||||||
`(lazy-highlight ((t (:background ,secondary-container :foreground ,on-secondary-container))))
|
|
||||||
`(vertical-border ((t (:foreground ,surface-variant))))
|
|
||||||
`(border ((t (:background ,surface-variant :foreground ,surface-variant))))
|
|
||||||
`(fringe ((t (:background ,surface :foreground ,outline-variant))))
|
|
||||||
`(shadow ((t (:foreground ,outline-variant))))
|
|
||||||
`(link ((t (:foreground ,primary :underline t))))
|
|
||||||
`(link-visited ((t (:foreground ,tertiary :underline t))))
|
|
||||||
`(success ((t (:foreground ,success))))
|
|
||||||
`(warning ((t (:foreground ,secondary))))
|
|
||||||
`(error ((t (:foreground ,err))))
|
|
||||||
`(match ((t (:background ,secondary-container :foreground ,on-secondary-container))))
|
|
||||||
|
|
||||||
;; Font-lock
|
|
||||||
`(font-lock-builtin-face ((t (:foreground ,primary))))
|
|
||||||
`(font-lock-comment-face ((t (:foreground ,outline-color :slant italic))))
|
|
||||||
`(font-lock-comment-delimiter-face ((t (:foreground ,outline-variant))))
|
|
||||||
`(font-lock-constant-face ((t (:foreground ,tertiary :weight bold))))
|
|
||||||
`(font-lock-doc-face ((t (:foreground ,on-surface-variant :slant italic))))
|
|
||||||
`(font-lock-function-name-face ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(font-lock-keyword-face ((t (:foreground ,secondary :weight bold))))
|
|
||||||
`(font-lock-string-face ((t (:foreground ,tertiary))))
|
|
||||||
`(font-lock-type-face ((t (:foreground ,primary-fixed))))
|
|
||||||
`(font-lock-variable-name-face ((t (:foreground ,on-surface))))
|
|
||||||
`(font-lock-warning-face ((t (:foreground ,err :weight bold))))
|
|
||||||
`(font-lock-preprocessor-face ((t (:foreground ,secondary-fixed-dim))))
|
|
||||||
`(font-lock-negation-char-face ((t (:foreground ,tertiary-fixed))))
|
|
||||||
|
|
||||||
;; Show paren
|
|
||||||
`(show-paren-match ((t (:background ,primary-container :foreground ,on-primary-container :weight bold))))
|
|
||||||
`(show-paren-mismatch ((t (:background ,err-container :foreground ,on-err-container :weight bold))))
|
|
||||||
|
|
||||||
;; Mode line - improved status bar styling
|
|
||||||
`(mode-line ((t (:background ,surface-container :foreground ,on-surface :box nil))))
|
|
||||||
`(mode-line-inactive ((t (:background ,surface :foreground ,on-surface-variant :box nil))))
|
|
||||||
`(mode-line-buffer-id ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(mode-line-emphasis ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(mode-line-highlight ((t (:foreground ,primary :box nil))))
|
|
||||||
|
|
||||||
;; Improved Source blocks - make them integrated with the theme
|
|
||||||
`(org-block ((t (:background ,surface-container-low :extend t :inherit fixed-pitch))))
|
|
||||||
`(org-block-begin-line ((t (:background ,surface-container-low :foreground ,primary-fixed-dim :extend t :slant italic :inherit fixed-pitch))))
|
|
||||||
`(org-block-end-line ((t (:background ,surface-container-low :foreground ,primary-fixed-dim :extend t :slant italic :inherit fixed-pitch))))
|
|
||||||
`(org-code ((t (:background ,surface-container-low :foreground ,tertiary-fixed :inherit fixed-pitch))))
|
|
||||||
`(org-verbatim ((t (:background ,surface-container-low :foreground ,primary-fixed :inherit fixed-pitch))))
|
|
||||||
`(org-meta-line ((t (:foreground ,outline-color :slant italic))))
|
|
||||||
|
|
||||||
;; Org mode with hidden asterisks
|
|
||||||
`(org-level-1 ((t (:foreground ,primary :weight bold :height 1.2))))
|
|
||||||
`(org-level-2 ((t (:foreground ,primary-container :weight bold :height 1.1))))
|
|
||||||
`(org-level-3 ((t (:foreground ,secondary :weight bold))))
|
|
||||||
`(org-level-4 ((t (:foreground ,secondary-container :weight bold))))
|
|
||||||
`(org-level-5 ((t (:foreground ,tertiary :weight bold))))
|
|
||||||
`(org-level-6 ((t (:foreground ,tertiary-container :weight bold))))
|
|
||||||
`(org-level-7 ((t (:foreground ,primary-fixed :weight bold))))
|
|
||||||
`(org-level-8 ((t (:foreground ,primary-fixed-dim :weight bold))))
|
|
||||||
`(org-document-title ((t (:foreground ,primary :weight bold :height 1.3))))
|
|
||||||
`(org-document-info ((t (:foreground ,primary-container))))
|
|
||||||
`(org-todo ((t (:foreground ,err :weight bold))))
|
|
||||||
`(org-done ((t (:foreground ,success :weight bold))))
|
|
||||||
`(org-headline-done ((t (:foreground ,on-surface-variant))))
|
|
||||||
`(org-hide ((t (:foreground ,bg)))) ;; Hide leading asterisks
|
|
||||||
`(org-ellipsis ((t (:foreground ,tertiary :underline nil)))) ;; Style for folded content indicator
|
|
||||||
`(org-table ((t (:foreground ,secondary-fixed :inherit fixed-pitch))))
|
|
||||||
`(org-formula ((t (:foreground ,tertiary :inherit fixed-pitch))))
|
|
||||||
`(org-checkbox ((t (:foreground ,primary :weight bold :inherit fixed-pitch))))
|
|
||||||
`(org-date ((t (:foreground ,secondary-fixed :underline t))))
|
|
||||||
`(org-special-keyword ((t (:foreground ,on-surface-variant :slant italic))))
|
|
||||||
`(org-tag ((t (:foreground ,outline-color :weight normal))))
|
|
||||||
|
|
||||||
;; Magit
|
|
||||||
`(magit-section-highlight ((t (:background ,surface-container-low))))
|
|
||||||
`(magit-diff-hunk-heading ((t (:background ,surface-container :foreground ,on-surface-variant))))
|
|
||||||
`(magit-diff-hunk-heading-highlight ((t (:background ,surface-container-high :foreground ,on-surface))))
|
|
||||||
`(magit-diff-context ((t (:foreground ,on-surface-variant))))
|
|
||||||
`(magit-diff-context-highlight ((t (:background ,surface-container-low :foreground ,on-surface))))
|
|
||||||
`(magit-diff-added ((t (:background ,success-container :foreground ,on-success-container))))
|
|
||||||
`(magit-diff-added-highlight ((t (:background ,success-container :foreground ,on-success-container :weight bold))))
|
|
||||||
`(magit-diff-removed ((t (:background ,err-container :foreground ,on-err-container))))
|
|
||||||
`(magit-diff-removed-highlight ((t (:background ,err-container :foreground ,on-err-container :weight bold))))
|
|
||||||
`(magit-hash ((t (:foreground ,outline-color))))
|
|
||||||
`(magit-branch-local ((t (:foreground ,tertiary :weight bold))))
|
|
||||||
`(magit-branch-remote ((t (:foreground ,primary :weight bold))))
|
|
||||||
|
|
||||||
;; Company
|
|
||||||
`(company-tooltip ((t (:background ,surface-container :foreground ,on-surface))))
|
|
||||||
`(company-tooltip-selection ((t (:background ,primary-container :foreground ,on-primary-container))))
|
|
||||||
`(company-tooltip-common ((t (:foreground ,primary))))
|
|
||||||
`(company-tooltip-common-selection ((t (:foreground ,on-primary-container :weight bold))))
|
|
||||||
`(company-tooltip-annotation ((t (:foreground ,tertiary))))
|
|
||||||
`(company-scrollbar-fg ((t (:background ,primary))))
|
|
||||||
`(company-scrollbar-bg ((t (:background ,surface-variant))))
|
|
||||||
`(company-preview ((t (:foreground ,on-surface-variant :slant italic))))
|
|
||||||
`(company-preview-common ((t (:foreground ,primary :slant italic))))
|
|
||||||
|
|
||||||
;; Ido
|
|
||||||
`(ido-first-match ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(ido-only-match ((t (:foreground ,tertiary :weight bold))))
|
|
||||||
`(ido-subdir ((t (:foreground ,secondary))))
|
|
||||||
`(ido-indicator ((t (:foreground ,err))))
|
|
||||||
`(ido-virtual ((t (:foreground ,outline-color))))
|
|
||||||
|
|
||||||
;; Helm
|
|
||||||
`(helm-selection ((t (:background ,primary-container :foreground ,on-primary-container))))
|
|
||||||
`(helm-match ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(helm-source-header ((t (:background ,surface-container-high :foreground ,primary :weight bold :height 1.1))))
|
|
||||||
`(helm-candidate-number ((t (:foreground ,tertiary :weight bold))))
|
|
||||||
`(helm-ff-directory ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(helm-ff-file ((t (:foreground ,on-surface))))
|
|
||||||
`(helm-ff-executable ((t (:foreground ,tertiary))))
|
|
||||||
|
|
||||||
;; Which-key
|
|
||||||
`(which-key-key-face ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(which-key-separator-face ((t (:foreground ,outline-variant))))
|
|
||||||
`(which-key-command-description-face ((t (:foreground ,on-surface))))
|
|
||||||
`(which-key-group-description-face ((t (:foreground ,secondary))))
|
|
||||||
`(which-key-special-key-face ((t (:foreground ,tertiary :weight bold))))
|
|
||||||
|
|
||||||
;; Line numbers
|
|
||||||
`(line-number ((t (:foreground ,outline-variant :inherit fixed-pitch))))
|
|
||||||
`(line-number-current-line ((t (:foreground ,primary :weight bold :inherit fixed-pitch))))
|
|
||||||
|
|
||||||
;; Parenthesis matching
|
|
||||||
`(sp-show-pair-match-face ((t (:background ,primary-container :foreground ,on-primary-container))))
|
|
||||||
`(sp-show-pair-mismatch-face ((t (:background ,err-container :foreground ,on-err-container))))
|
|
||||||
|
|
||||||
;; Rainbow delimiters
|
|
||||||
`(rainbow-delimiters-depth-1-face ((t (:foreground ,primary))))
|
|
||||||
`(rainbow-delimiters-depth-2-face ((t (:foreground ,secondary))))
|
|
||||||
`(rainbow-delimiters-depth-3-face ((t (:foreground ,tertiary))))
|
|
||||||
`(rainbow-delimiters-depth-4-face ((t (:foreground ,primary-fixed))))
|
|
||||||
`(rainbow-delimiters-depth-5-face ((t (:foreground ,secondary-fixed))))
|
|
||||||
`(rainbow-delimiters-depth-6-face ((t (:foreground ,tertiary-fixed))))
|
|
||||||
`(rainbow-delimiters-depth-7-face ((t (:foreground ,primary-fixed-dim))))
|
|
||||||
`(rainbow-delimiters-depth-8-face ((t (:foreground ,secondary-fixed-dim))))
|
|
||||||
`(rainbow-delimiters-depth-9-face ((t (:foreground ,tertiary-fixed-dim))))
|
|
||||||
`(rainbow-delimiters-mismatched-face ((t (:foreground ,err :weight bold))))
|
|
||||||
`(rainbow-delimiters-unmatched-face ((t (:foreground ,err :weight bold))))
|
|
||||||
|
|
||||||
;; Dired
|
|
||||||
`(dired-directory ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(dired-ignored ((t (:foreground ,outline-variant))))
|
|
||||||
`(dired-flagged ((t (:foreground ,err))))
|
|
||||||
`(dired-marked ((t (:foreground ,tertiary :weight bold))))
|
|
||||||
`(dired-symlink ((t (:foreground ,secondary :slant italic))))
|
|
||||||
`(dired-header ((t (:foreground ,primary :weight bold :height 1.1))))
|
|
||||||
|
|
||||||
;; Terminal colors
|
|
||||||
`(term-color-black ((t (:foreground ,term0 :background ,term0))))
|
|
||||||
`(term-color-red ((t (:foreground ,term1 :background ,term1))))
|
|
||||||
`(term-color-green ((t (:foreground ,term2 :background ,term2))))
|
|
||||||
`(term-color-yellow ((t (:foreground ,term3 :background ,term3))))
|
|
||||||
`(term-color-blue ((t (:foreground ,term4 :background ,term4))))
|
|
||||||
`(term-color-magenta ((t (:foreground ,term5 :background ,term5))))
|
|
||||||
`(term-color-cyan ((t (:foreground ,term6 :background ,term6))))
|
|
||||||
`(term-color-white ((t (:foreground ,term7 :background ,term7))))
|
|
||||||
|
|
||||||
;; EShell
|
|
||||||
`(eshell-prompt ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(eshell-ls-directory ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(eshell-ls-symlink ((t (:foreground ,secondary :slant italic))))
|
|
||||||
`(eshell-ls-executable ((t (:foreground ,tertiary))))
|
|
||||||
`(eshell-ls-archive ((t (:foreground ,on-tertiary-container))))
|
|
||||||
`(eshell-ls-backup ((t (:foreground ,outline-variant))))
|
|
||||||
`(eshell-ls-clutter ((t (:foreground ,err))))
|
|
||||||
`(eshell-ls-missing ((t (:foreground ,err))))
|
|
||||||
`(eshell-ls-product ((t (:foreground ,on-surface-variant))))
|
|
||||||
`(eshell-ls-readonly ((t (:foreground ,on-surface-variant))))
|
|
||||||
`(eshell-ls-special ((t (:foreground ,secondary-fixed))))
|
|
||||||
`(eshell-ls-unreadable ((t (:foreground ,outline-variant))))
|
|
||||||
|
|
||||||
;; Improved markdown mode
|
|
||||||
`(markdown-header-face ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(markdown-header-face-1 ((t (:foreground ,primary :weight bold :height 1.2))))
|
|
||||||
`(markdown-header-face-2 ((t (:foreground ,primary-container :weight bold :height 1.1))))
|
|
||||||
`(markdown-header-face-3 ((t (:foreground ,secondary :weight bold))))
|
|
||||||
`(markdown-header-face-4 ((t (:foreground ,secondary-container :weight bold))))
|
|
||||||
`(markdown-inline-code-face ((t (:foreground ,tertiary-fixed :background ,surface-container-low :inherit fixed-pitch))))
|
|
||||||
`(markdown-code-face ((t (:background ,surface-container-low :extend t :inherit fixed-pitch))))
|
|
||||||
`(markdown-pre-face ((t (:background ,surface-container-low :inherit fixed-pitch))))
|
|
||||||
`(markdown-table-face ((t (:foreground ,secondary-fixed :inherit fixed-pitch))))
|
|
||||||
|
|
||||||
;; Web mode
|
|
||||||
`(web-mode-html-tag-face ((t (:foreground ,primary))))
|
|
||||||
`(web-mode-html-tag-bracket-face ((t (:foreground ,on-surface-variant))))
|
|
||||||
`(web-mode-html-attr-name-face ((t (:foreground ,secondary))))
|
|
||||||
`(web-mode-html-attr-value-face ((t (:foreground ,tertiary))))
|
|
||||||
`(web-mode-css-selector-face ((t (:foreground ,primary))))
|
|
||||||
`(web-mode-css-property-name-face ((t (:foreground ,secondary))))
|
|
||||||
`(web-mode-css-string-face ((t (:foreground ,tertiary))))
|
|
||||||
|
|
||||||
;; Flycheck
|
|
||||||
`(flycheck-error ((t (:underline (:style wave :color ,err)))))
|
|
||||||
`(flycheck-warning ((t (:underline (:style wave :color ,secondary)))))
|
|
||||||
`(flycheck-info ((t (:underline (:style wave :color ,tertiary)))))
|
|
||||||
`(flycheck-fringe-error ((t (:foreground ,err))))
|
|
||||||
`(flycheck-fringe-warning ((t (:foreground ,secondary))))
|
|
||||||
`(flycheck-fringe-info ((t (:foreground ,tertiary))))
|
|
||||||
|
|
||||||
;; Mini-buffer customization
|
|
||||||
`(minibuffer-prompt ((t (:foreground ,primary :weight bold))))
|
|
||||||
|
|
||||||
;; Improved search highlighting
|
|
||||||
`(lsp-face-highlight-textual ((t (:background ,primary-container :foreground ,on-primary-container :weight bold))))
|
|
||||||
`(lsp-face-highlight-read ((t (:background ,secondary-container :foreground ,on-secondary-container :weight bold))))
|
|
||||||
`(lsp-face-highlight-write ((t (:background ,tertiary-container :foreground ,on-tertiary-container :weight bold))))
|
|
||||||
|
|
||||||
;; Info and help modes
|
|
||||||
`(info-title-1 ((t (:foreground ,primary :weight bold :height 1.3))))
|
|
||||||
`(info-title-2 ((t (:foreground ,primary-container :weight bold :height 1.2))))
|
|
||||||
`(info-title-3 ((t (:foreground ,secondary :weight bold :height 1.1))))
|
|
||||||
`(info-title-4 ((t (:foreground ,secondary-container :weight bold))))
|
|
||||||
`(Info-quoted ((t (:foreground ,tertiary))))
|
|
||||||
`(info-menu-header ((t (:foreground ,primary :weight bold))))
|
|
||||||
`(info-menu-star ((t (:foreground ,primary))))
|
|
||||||
`(info-node ((t (:foreground ,tertiary :weight bold))))
|
|
||||||
|
|
||||||
;; Fixed-pitch faces
|
|
||||||
`(fixed-pitch ((t (:family "monospace"))))
|
|
||||||
`(fixed-pitch-serif ((t (:family "monospace serif"))))
|
|
||||||
|
|
||||||
;; Variable-pitch face
|
|
||||||
`(variable-pitch ((t (:family "sans serif"))))
|
|
||||||
))
|
|
||||||
|
|
||||||
;; Add org-mode hooks for hiding leading stars
|
|
||||||
(with-eval-after-load 'org
|
|
||||||
(setq org-hide-leading-stars t)
|
|
||||||
(setq org-startup-indented t))
|
|
||||||
|
|
||||||
;;;###autoload
|
|
||||||
(when load-file-name
|
|
||||||
(add-to-list 'custom-theme-load-path
|
|
||||||
(file-name-as-directory (file-name-directory load-file-name))))
|
|
||||||
|
|
||||||
(provide-theme 'material)
|
|
||||||
;;; material-theme.el ends here
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
# Vertical Candidate List
|
|
||||||
Vertical Candidate List=False
|
|
||||||
# Use mouse wheel to go to prev or next page
|
|
||||||
WheelForPaging=True
|
|
||||||
# Font
|
|
||||||
Font="Google Sans Flex 11"
|
|
||||||
# Menu Font
|
|
||||||
MenuFont="Google Sans Flex 11"
|
|
||||||
# Tray Font
|
|
||||||
TrayFont="Google Sans Flex 11"
|
|
||||||
# Prefer Text Icon
|
|
||||||
PreferTextIcon=False
|
|
||||||
# Show Layout Name In Icon
|
|
||||||
ShowLayoutNameInIcon=True
|
|
||||||
# Use input method language to display text
|
|
||||||
UseInputMethodLanguageToDisplayText=True
|
|
||||||
# Theme
|
|
||||||
Theme=plasma
|
|
||||||
# Dark Theme
|
|
||||||
DarkTheme=plasma
|
|
||||||
# Follow system light/dark color scheme
|
|
||||||
UseDarkTheme=False
|
|
||||||
# Follow system accent color if it is supported by theme and desktop
|
|
||||||
UseAccentColor=True
|
|
||||||
# Use Per Screen DPI on X11
|
|
||||||
PerScreenDPI=False
|
|
||||||
# Force font DPI on Wayland
|
|
||||||
ForceWaylandDPI=0
|
|
||||||
# Enable fractional scale under Wayland
|
|
||||||
EnableFractionalScale=True
|
|
||||||
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# Bar, wallpaper
|
|
||||||
exec-once = ~/.config/hypr/hyprland/scripts/start_geoclue_agent.sh
|
|
||||||
exec-once = qs -c $qsConfig &
|
|
||||||
|
|
||||||
# Input method
|
|
||||||
# exec-once = fcitx5
|
|
||||||
|
|
||||||
# Core components (authentication, lock screen, notification daemon)
|
|
||||||
exec-once = gnome-keyring-daemon --start --components=secrets
|
|
||||||
exec-once = hypridle
|
|
||||||
exec-once = dbus-update-activation-environment --all
|
|
||||||
exec-once = sleep 1 && dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # Some fix idk
|
|
||||||
|
|
||||||
# Audio
|
|
||||||
exec-once = easyeffects --gapplication-service
|
|
||||||
|
|
||||||
# Clipboard: history
|
|
||||||
# exec-once = wl-paste --watch cliphist store &
|
|
||||||
exec-once = wl-paste --type text --watch bash -c 'cliphist store && qs -c $qsConfig ipc call cliphistService update'
|
|
||||||
exec-once = wl-paste --type image --watch bash -c 'cliphist store && qs -c $qsConfig ipc call cliphistService update'
|
|
||||||
|
|
||||||
# Cursor
|
|
||||||
exec-once = hyprctl setcursor Bibata-Modern-Classic 24
|
|
||||||
|
|
||||||
# Fix dock pinned apps not launching properly (https://github.com/end-4/dots-hyprland/issues/2200)
|
|
||||||
# exec-once = sleep 3.5 && hyprctl reload && sleep 0.5 && touch ~/.config/quickshell/ii/shell.qml
|
|
||||||
|
|
||||||
# For fedora to setup polkit
|
|
||||||
exec-once = /usr/libexec/kf6/polkit-kde-authentication-agent-1
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
|
|
||||||
<fontconfig>
|
|
||||||
<match target="font">
|
|
||||||
<edit name="rgba" mode="assign">
|
|
||||||
<const>none</const>
|
|
||||||
</edit>
|
|
||||||
</match>
|
|
||||||
|
|
||||||
<!-- Fix for: arabic fonts rendering in Noto Nastaliq Urdu | affects Chromium, Discord (maybe all chromium based apps, but not Spotify somehow) -->
|
|
||||||
<match target="pattern">
|
|
||||||
<test compare="eq" name="family">
|
|
||||||
<string>sans-serif</string>
|
|
||||||
</test>
|
|
||||||
<edit name="family" mode="prepend" binding="strong">
|
|
||||||
<string>Noto Sans Arabic</string>
|
|
||||||
</edit>
|
|
||||||
</match>
|
|
||||||
</fontconfig>
|
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
daemonize
|
|
||||||
ignore-empty-password
|
|
||||||
font=Rubik
|
|
||||||
font-size=23
|
|
||||||
|
|
||||||
clock
|
|
||||||
timestr=%R
|
|
||||||
#datestr=%a, %e of %B
|
|
||||||
|
|
||||||
color=000000dd
|
|
||||||
|
|
||||||
#fade-in=0.1
|
|
||||||
#effect-blur=20x2
|
|
||||||
#effect-greyscale
|
|
||||||
#effect-scale=0.3
|
|
||||||
|
|
||||||
indicator
|
|
||||||
indicator-radius=80
|
|
||||||
indicator-thickness=10
|
|
||||||
indicator-caps-lock
|
|
||||||
|
|
||||||
key-hl-color=d4d4d4
|
|
||||||
caps-lock-key-hl-color=d4d4d4
|
|
||||||
|
|
||||||
separator-color=00000000
|
|
||||||
|
|
||||||
inside-color=000000ff
|
|
||||||
inside-clear-color=00000099
|
|
||||||
inside-caps-lock-color=00000099
|
|
||||||
inside-ver-color=00000099
|
|
||||||
inside-wrong-color=00000099
|
|
||||||
|
|
||||||
ring-color=1c1c1c
|
|
||||||
ring-clear-color=1c1c1c
|
|
||||||
ring-caps-lock-color=1c1c1c
|
|
||||||
ring-ver-color=1c1c1c
|
|
||||||
ring-wrong-color=400000
|
|
||||||
|
|
||||||
line-color=00000000
|
|
||||||
line-clear-color=d4d4d4
|
|
||||||
line-caps-lock-color=d4d4d4
|
|
||||||
line-ver-color=d9d8d8FF
|
|
||||||
line-wrong-color=ee2e24FF
|
|
||||||
|
|
||||||
text-color=c9c9c9
|
|
||||||
text-clear-color=c9c9c9
|
|
||||||
text-ver-color=c9c9c9
|
|
||||||
text-wrong-color=c9c9c9
|
|
||||||
|
|
||||||
bs-hl-color=470400
|
|
||||||
caps-lock-bs-hl-color=470400
|
|
||||||
# caps-lock-key-hl-color=ffd204FF
|
|
||||||
# caps-lock-bs-hl-color=ee2e24FF
|
|
||||||
# disable-caps-lock-text
|
|
||||||
text-caps-lock-color=d4d4d4
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
This folder contains tweakd configs when --via-nix is specified.
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
$lock_cmd = swaylock -c 000000
|
|
||||||
# $lock_cmd = pidof hyprlock || hyprlock
|
|
||||||
$suspend_cmd = systemctl suspend || loginctl suspend
|
|
||||||
|
|
||||||
general {
|
|
||||||
lock_cmd = $lock_cmd
|
|
||||||
before_sleep_cmd = loginctl lock-session
|
|
||||||
after_sleep_cmd = hyprctl dispatch global quickshell:lockFocus
|
|
||||||
inhibit_sleep = 3
|
|
||||||
}
|
|
||||||
|
|
||||||
listener {
|
|
||||||
timeout = 300 # 5mins
|
|
||||||
on-timeout = loginctl lock-session
|
|
||||||
}
|
|
||||||
|
|
||||||
listener {
|
|
||||||
timeout = 600 # 10mins
|
|
||||||
on-timeout = hyprctl dispatch dpms off
|
|
||||||
on-resume = hyprctl dispatch dpms on
|
|
||||||
}
|
|
||||||
|
|
||||||
listener {
|
|
||||||
timeout = 900 # 15mins
|
|
||||||
on-timeout = $suspend_cmd
|
|
||||||
}
|
|
||||||
@@ -1,576 +0,0 @@
|
|||||||
[%General]
|
|
||||||
author=Vince Liuice, based on KvAdapta by Tsu Jan
|
|
||||||
comment=An uncomplicated theme inspired by the Materia GTK theme
|
|
||||||
x11drag=none
|
|
||||||
alt_mnemonic=true
|
|
||||||
left_tabs=false
|
|
||||||
attach_active_tab=false
|
|
||||||
mirror_doc_tabs=true
|
|
||||||
group_toolbar_buttons=false
|
|
||||||
toolbar_item_spacing=0
|
|
||||||
toolbar_interior_spacing=2
|
|
||||||
spread_progressbar=true
|
|
||||||
composite=true
|
|
||||||
menu_shadow_depth=6
|
|
||||||
spread_menuitems=false
|
|
||||||
tooltip_shadow_depth=7
|
|
||||||
splitter_width=1
|
|
||||||
scroll_width=9
|
|
||||||
scroll_arrows=false
|
|
||||||
scroll_min_extent=60
|
|
||||||
slider_width=2
|
|
||||||
slider_handle_width=23
|
|
||||||
slider_handle_length=22
|
|
||||||
tickless_slider_handle_size=22
|
|
||||||
center_toolbar_handle=true
|
|
||||||
check_size=24
|
|
||||||
textless_progressbar=false
|
|
||||||
progressbar_thickness=2
|
|
||||||
menubar_mouse_tracking=true
|
|
||||||
toolbutton_style=1
|
|
||||||
double_click=false
|
|
||||||
translucent_windows=false
|
|
||||||
blurring=false
|
|
||||||
popup_blurring=false
|
|
||||||
vertical_spin_indicators=false
|
|
||||||
spin_button_width=24
|
|
||||||
fill_rubberband=false
|
|
||||||
merge_menubar_with_toolbar=true
|
|
||||||
small_icon_size=16
|
|
||||||
large_icon_size=32
|
|
||||||
button_icon_size=16
|
|
||||||
toolbar_icon_size=16
|
|
||||||
combo_as_lineedit=true
|
|
||||||
animate_states=true
|
|
||||||
button_contents_shift=false
|
|
||||||
combo_menu=true
|
|
||||||
hide_combo_checkboxes=true
|
|
||||||
combo_focus_rect=false
|
|
||||||
groupbox_top_label=true
|
|
||||||
inline_spin_indicators=true
|
|
||||||
joined_inactive_tabs=false
|
|
||||||
layout_spacing=3
|
|
||||||
layout_margin=3
|
|
||||||
scrollbar_in_view=true
|
|
||||||
transient_scrollbar=true
|
|
||||||
transient_groove=false
|
|
||||||
submenu_overlap=0
|
|
||||||
tooltip_delay=0
|
|
||||||
tree_branch_line=false
|
|
||||||
no_window_pattern=false
|
|
||||||
opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
|
|
||||||
reduce_window_opacity=0
|
|
||||||
respect_DE=true
|
|
||||||
scrollable_menu=false
|
|
||||||
submenu_delay=150
|
|
||||||
no_inactiveness=false
|
|
||||||
reduce_menu_opacity=0
|
|
||||||
click_behavior=2
|
|
||||||
contrast=1.00
|
|
||||||
dialog_button_layout=0
|
|
||||||
intensity=1.00
|
|
||||||
saturation=1.00
|
|
||||||
shadowless_popup=false
|
|
||||||
drag_from_buttons=false
|
|
||||||
menu_blur_radius=0
|
|
||||||
tooltip_blur_radius=0
|
|
||||||
|
|
||||||
[GeneralColors]
|
|
||||||
window.color=#F5F5F5
|
|
||||||
base.color=#ffffff
|
|
||||||
alt.base.color=#f8f8f8
|
|
||||||
button.color=#f2f2f2
|
|
||||||
light.color=#ffffff
|
|
||||||
mid.light.color=#f0f0f0
|
|
||||||
dark.color=#c8c8c8
|
|
||||||
mid.color=#e1e1e1
|
|
||||||
highlight.color=#3c84f7
|
|
||||||
inactive.highlight.color=#3c84f7
|
|
||||||
text.color=#444444
|
|
||||||
window.text.color=#444444
|
|
||||||
button.text.color=#444444
|
|
||||||
disabled.text.color=#44444474
|
|
||||||
tooltip.text.color=#444444
|
|
||||||
highlight.text.color=#333333
|
|
||||||
link.color=#0057AE
|
|
||||||
link.visited.color=#E040FB
|
|
||||||
progress.indicator.text.color=#444444
|
|
||||||
|
|
||||||
[Hacks]
|
|
||||||
transparent_ktitle_label=true
|
|
||||||
transparent_dolphin_view=true
|
|
||||||
transparent_pcmanfm_sidepane=true
|
|
||||||
blur_translucent=false
|
|
||||||
transparent_menutitle=true
|
|
||||||
respect_darkness=true
|
|
||||||
kcapacitybar_as_progressbar=true
|
|
||||||
force_size_grip=true
|
|
||||||
iconless_pushbutton=false
|
|
||||||
iconless_menu=false
|
|
||||||
disabled_icon_opacity=100
|
|
||||||
lxqtmainmenu_iconsize=16
|
|
||||||
normal_default_pushbutton=true
|
|
||||||
single_top_toolbar=true
|
|
||||||
tint_on_mouseover=0
|
|
||||||
transparent_pcmanfm_view=true
|
|
||||||
no_selection_tint=true
|
|
||||||
transparent_arrow_button=true
|
|
||||||
middle_click_scroll=false
|
|
||||||
opaque_colors=false
|
|
||||||
kinetic_scrolling=false
|
|
||||||
scroll_jump_workaround=true
|
|
||||||
centered_forms=false
|
|
||||||
noninteger_translucency=false
|
|
||||||
style_vertical_toolbars=false
|
|
||||||
blur_only_active_window=true
|
|
||||||
|
|
||||||
[PanelButtonCommand]
|
|
||||||
frame=true
|
|
||||||
frame.element=button
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
interior=true
|
|
||||||
interior.element=button
|
|
||||||
indicator.size=8
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=white
|
|
||||||
highlight.text.color=white
|
|
||||||
text.shadow=0
|
|
||||||
text.margin=4
|
|
||||||
text.iconspacing=4
|
|
||||||
indicator.element=arrow
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[PanelButtonTool]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=white
|
|
||||||
text.disabled.color=#44444474
|
|
||||||
text.bold=false
|
|
||||||
indicator.element=arrow
|
|
||||||
indicator.size=8
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[ToolbarButton]
|
|
||||||
frame=true
|
|
||||||
frame.element=tbutton
|
|
||||||
interior.element=tbutton
|
|
||||||
frame.top=14
|
|
||||||
frame.bottom=14
|
|
||||||
frame.left=14
|
|
||||||
frame.right=14
|
|
||||||
indicator.element=tarrow
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
text.disabled.color=#44444474
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=28
|
|
||||||
|
|
||||||
[Dock]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior.element=dock
|
|
||||||
frame.element=dock
|
|
||||||
frame.top=1
|
|
||||||
frame.bottom=1
|
|
||||||
frame.left=1
|
|
||||||
frame.right=1
|
|
||||||
text.normal.color=#444444
|
|
||||||
|
|
||||||
[DockTitle]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior=false
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[IndicatorSpinBox]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
interior=true
|
|
||||||
frame.top=2
|
|
||||||
frame.bottom=2
|
|
||||||
frame.left=2
|
|
||||||
frame.right=2
|
|
||||||
indicator.element=spin
|
|
||||||
indicator.size=8
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
|
|
||||||
[RadioButton]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior.element=radio
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
|
|
||||||
[CheckBox]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior.element=checkbox
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
|
|
||||||
[Focus]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
frame.element=focus
|
|
||||||
frame.top=2
|
|
||||||
frame.bottom=2
|
|
||||||
frame.left=2
|
|
||||||
frame.right=2
|
|
||||||
frame.patternsize=14
|
|
||||||
|
|
||||||
[GenericFrame]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
interior=false
|
|
||||||
frame.element=common
|
|
||||||
interior.element=common
|
|
||||||
frame.top=1
|
|
||||||
frame.bottom=1
|
|
||||||
frame.left=1
|
|
||||||
frame.right=1
|
|
||||||
|
|
||||||
[LineEdit]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[DropDownButton]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.element=arrow-down
|
|
||||||
|
|
||||||
[IndicatorArrow]
|
|
||||||
indicator.element=arrow
|
|
||||||
indicator.size=8
|
|
||||||
|
|
||||||
[ToolboxTab]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.focus.color=#444444
|
|
||||||
|
|
||||||
[Tab]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior.element=tab
|
|
||||||
text.margin.left=8
|
|
||||||
text.margin.right=8
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
frame.element=tab
|
|
||||||
indicator.element=tab
|
|
||||||
indicator.size=22
|
|
||||||
frame.top=8
|
|
||||||
frame.bottom=8
|
|
||||||
frame.left=8
|
|
||||||
frame.right=8
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
frame.expansion=0
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[TabFrame]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=tabframe
|
|
||||||
interior.element=tabframe
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
|
|
||||||
[TreeExpander]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.size=8
|
|
||||||
indicator.element=tree
|
|
||||||
|
|
||||||
[HeaderSection]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior.element=header
|
|
||||||
frame.element=header
|
|
||||||
frame.top=0
|
|
||||||
frame.bottom=1
|
|
||||||
frame.left=1
|
|
||||||
frame.right=1
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[SizeGrip]
|
|
||||||
indicator.element=resize-grip
|
|
||||||
|
|
||||||
[Toolbar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.element=toolbar
|
|
||||||
indicator.size=5
|
|
||||||
text.margin=0
|
|
||||||
interior.element=menubar
|
|
||||||
frame.element=menubar
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
frame.top=0
|
|
||||||
frame.bottom=1
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[Slider]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=slider
|
|
||||||
focusFrame=true
|
|
||||||
interior.element=slider
|
|
||||||
frame.top=3
|
|
||||||
frame.bottom=3
|
|
||||||
frame.left=3
|
|
||||||
frame.right=3
|
|
||||||
|
|
||||||
[SliderCursor]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior.element=slidercursor
|
|
||||||
|
|
||||||
[Progressbar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=progress
|
|
||||||
interior.element=progress
|
|
||||||
text.margin=0
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=8
|
|
||||||
|
|
||||||
[ProgressbarContents]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
frame.element=progress-pattern
|
|
||||||
interior.element=progress-pattern
|
|
||||||
|
|
||||||
[ItemView]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
text.margin=0
|
|
||||||
frame.element=itemview
|
|
||||||
interior.element=itemview
|
|
||||||
frame.top=4
|
|
||||||
frame.bottom=4
|
|
||||||
frame.left=4
|
|
||||||
frame.right=4
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
text.margin.left=8
|
|
||||||
text.margin.right=8
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[Splitter]
|
|
||||||
interior.element=splitter
|
|
||||||
frame=false
|
|
||||||
indicator.size=0
|
|
||||||
|
|
||||||
[Scrollbar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.element=arrow
|
|
||||||
indicator.size=12
|
|
||||||
|
|
||||||
[ScrollbarSlider]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=scrollbarslider
|
|
||||||
interior=false
|
|
||||||
frame.left=5
|
|
||||||
frame.right=5
|
|
||||||
frame.top=5
|
|
||||||
frame.bottom=5
|
|
||||||
indicator.element=grip
|
|
||||||
indicator.size=12
|
|
||||||
|
|
||||||
[ScrollbarGroove]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior=false
|
|
||||||
frame=false
|
|
||||||
|
|
||||||
[Menu]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.top=10
|
|
||||||
frame.bottom=10
|
|
||||||
frame.left=10
|
|
||||||
frame.right=10
|
|
||||||
frame.element=menu
|
|
||||||
interior.element=menu
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.shadow=false
|
|
||||||
frame.expansion=0
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[MenuItem]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
interior.element=menuitem
|
|
||||||
indicator.element=menuitem
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#333333
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
text.margin.left=6
|
|
||||||
text.margin.right=6
|
|
||||||
frame.top=4
|
|
||||||
frame.bottom=4
|
|
||||||
frame.left=4
|
|
||||||
frame.right=4
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[MenuBar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=menubar
|
|
||||||
interior.element=menubar
|
|
||||||
frame.bottom=0
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
frame.expansion=0
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[MenuBarItem]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior=true
|
|
||||||
interior.element=menubaritem
|
|
||||||
frame.element=menubaritem
|
|
||||||
frame.top=2
|
|
||||||
frame.bottom=2
|
|
||||||
frame.left=2
|
|
||||||
frame.right=2
|
|
||||||
text.margin.left=4
|
|
||||||
text.margin.right=4
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
text.bold=false
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[TitleBar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
interior.element=titlebar
|
|
||||||
indicator.size=16
|
|
||||||
indicator.element=mdi
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#444444
|
|
||||||
text.bold=false
|
|
||||||
text.italic=true
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[ComboBox]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=combo
|
|
||||||
interior.element=combo
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#424242
|
|
||||||
text.press.color=#424242
|
|
||||||
text.toggle.color=#424242
|
|
||||||
|
|
||||||
[GroupBox]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame=false
|
|
||||||
text.shadow=0
|
|
||||||
text.margin=0
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#333333
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[TabBarFrame]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame=false
|
|
||||||
interior=false
|
|
||||||
|
|
||||||
[ToolTip]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
interior=true
|
|
||||||
text.shadow=0
|
|
||||||
text.margin=6
|
|
||||||
interior.element=tooltip
|
|
||||||
frame.element=tooltip
|
|
||||||
text.normal.color=#444444
|
|
||||||
text.focus.color=#333333
|
|
||||||
text.press.color=#333333
|
|
||||||
text.toggle.color=#333333
|
|
||||||
frame.expansion=6
|
|
||||||
|
|
||||||
[StatusBar]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame=false
|
|
||||||
interior=false
|
|
||||||
|
|
||||||
[Window]
|
|
||||||
interior=true
|
|
||||||
interior.element=window
|
|
||||||
frame=true
|
|
||||||
frame.element=window
|
|
||||||
frame.bottom=10
|
|
||||||
frame.top=10
|
|
||||||
|
Before Width: | Height: | Size: 170 KiB |
@@ -1,569 +0,0 @@
|
|||||||
[%General]
|
|
||||||
author=Vince Liuice, based on KvAdapta by Tsu Jan
|
|
||||||
comment=An uncomplicated theme inspired by the Materia GTK theme
|
|
||||||
x11drag=none
|
|
||||||
alt_mnemonic=true
|
|
||||||
left_tabs=false
|
|
||||||
attach_active_tab=false
|
|
||||||
mirror_doc_tabs=true
|
|
||||||
group_toolbar_buttons=false
|
|
||||||
toolbar_item_spacing=0
|
|
||||||
toolbar_interior_spacing=2
|
|
||||||
spread_progressbar=true
|
|
||||||
composite=true
|
|
||||||
menu_shadow_depth=6
|
|
||||||
spread_menuitems=false
|
|
||||||
tooltip_shadow_depth=7
|
|
||||||
splitter_width=1
|
|
||||||
scroll_width=9
|
|
||||||
scroll_arrows=false
|
|
||||||
scroll_min_extent=60
|
|
||||||
slider_width=2
|
|
||||||
slider_handle_width=23
|
|
||||||
slider_handle_length=22
|
|
||||||
tickless_slider_handle_size=22
|
|
||||||
center_toolbar_handle=true
|
|
||||||
check_size=24
|
|
||||||
textless_progressbar=false
|
|
||||||
progressbar_thickness=2
|
|
||||||
menubar_mouse_tracking=true
|
|
||||||
toolbutton_style=1
|
|
||||||
double_click=false
|
|
||||||
translucent_windows=false
|
|
||||||
blurring=false
|
|
||||||
popup_blurring=false
|
|
||||||
vertical_spin_indicators=false
|
|
||||||
spin_button_width=24
|
|
||||||
fill_rubberband=false
|
|
||||||
merge_menubar_with_toolbar=true
|
|
||||||
small_icon_size=16
|
|
||||||
large_icon_size=32
|
|
||||||
button_icon_size=16
|
|
||||||
toolbar_icon_size=16
|
|
||||||
combo_as_lineedit=true
|
|
||||||
animate_states=true
|
|
||||||
button_contents_shift=false
|
|
||||||
combo_menu=true
|
|
||||||
hide_combo_checkboxes=true
|
|
||||||
combo_focus_rect=false
|
|
||||||
groupbox_top_label=true
|
|
||||||
inline_spin_indicators=true
|
|
||||||
joined_inactive_tabs=false
|
|
||||||
layout_spacing=3
|
|
||||||
layout_margin=3
|
|
||||||
scrollbar_in_view=true
|
|
||||||
transient_scrollbar=true
|
|
||||||
transient_groove=false
|
|
||||||
submenu_overlap=0
|
|
||||||
tooltip_delay=0
|
|
||||||
tree_branch_line=false
|
|
||||||
no_window_pattern=false
|
|
||||||
opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam
|
|
||||||
reduce_window_opacity=0
|
|
||||||
respect_DE=true
|
|
||||||
scrollable_menu=false
|
|
||||||
submenu_delay=150
|
|
||||||
no_inactiveness=false
|
|
||||||
reduce_menu_opacity=0
|
|
||||||
click_behavior=2
|
|
||||||
contrast=1.00
|
|
||||||
dialog_button_layout=0
|
|
||||||
intensity=1.00
|
|
||||||
saturation=1.00
|
|
||||||
shadowless_popup=false
|
|
||||||
drag_from_buttons=false
|
|
||||||
menu_blur_radius=0
|
|
||||||
tooltip_blur_radius=0
|
|
||||||
|
|
||||||
[GeneralColors]
|
|
||||||
window.color=#2c2c2c
|
|
||||||
base.color=#2c2c2c
|
|
||||||
alt.base.color=#2e2e2e
|
|
||||||
button.color=#4d4d4d
|
|
||||||
light.color=#535353
|
|
||||||
mid.light.color=#474747
|
|
||||||
dark.color=#282828
|
|
||||||
mid.color=#323232
|
|
||||||
highlight.color=#5b9bf8
|
|
||||||
inactive.highlight.color=#5b9bf8
|
|
||||||
text.color=#dfdfdf
|
|
||||||
window.text.color=#dfdfdf
|
|
||||||
button.text.color=#dfdfdf
|
|
||||||
disabled.text.color=#696969
|
|
||||||
tooltip.text.color=#efefef
|
|
||||||
highlight.text.color=#ffffff
|
|
||||||
link.color=#0057AE
|
|
||||||
link.visited.color=#E040FB
|
|
||||||
progress.indicator.text.color=#dfdfdf
|
|
||||||
|
|
||||||
[Hacks]
|
|
||||||
transparent_ktitle_label=true
|
|
||||||
transparent_dolphin_view=true
|
|
||||||
transparent_pcmanfm_sidepane=true
|
|
||||||
blur_translucent=false
|
|
||||||
transparent_menutitle=true
|
|
||||||
respect_darkness=true
|
|
||||||
kcapacitybar_as_progressbar=true
|
|
||||||
force_size_grip=true
|
|
||||||
iconless_pushbutton=false
|
|
||||||
iconless_menu=false
|
|
||||||
disabled_icon_opacity=100
|
|
||||||
lxqtmainmenu_iconsize=16
|
|
||||||
normal_default_pushbutton=true
|
|
||||||
single_top_toolbar=true
|
|
||||||
tint_on_mouseover=0
|
|
||||||
transparent_pcmanfm_view=true
|
|
||||||
no_selection_tint=true
|
|
||||||
transparent_arrow_button=true
|
|
||||||
middle_click_scroll=false
|
|
||||||
opaque_colors=false
|
|
||||||
kinetic_scrolling=false
|
|
||||||
scroll_jump_workaround=true
|
|
||||||
centered_forms=false
|
|
||||||
noninteger_translucency=false
|
|
||||||
style_vertical_toolbars=false
|
|
||||||
blur_only_active_window=true
|
|
||||||
|
|
||||||
[PanelButtonCommand]
|
|
||||||
frame=true
|
|
||||||
frame.element=button
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
interior=true
|
|
||||||
interior.element=button
|
|
||||||
indicator.size=8
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
text.shadow=0
|
|
||||||
text.margin=4
|
|
||||||
text.iconspacing=4
|
|
||||||
indicator.element=arrow
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[PanelButtonTool]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
text.bold=false
|
|
||||||
indicator.element=arrow
|
|
||||||
indicator.size=8
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[ToolbarButton]
|
|
||||||
frame=true
|
|
||||||
frame.element=tbutton
|
|
||||||
interior.element=tbutton
|
|
||||||
frame.top=16
|
|
||||||
frame.bottom=16
|
|
||||||
frame.left=16
|
|
||||||
frame.right=16
|
|
||||||
indicator.element=tarrow
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=white
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=32
|
|
||||||
|
|
||||||
[Dock]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior.element=dock
|
|
||||||
frame.element=dock
|
|
||||||
frame.top=1
|
|
||||||
frame.bottom=1
|
|
||||||
frame.left=1
|
|
||||||
frame.right=1
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
|
|
||||||
[DockTitle]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior=false
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[IndicatorSpinBox]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
interior=true
|
|
||||||
frame.top=2
|
|
||||||
frame.bottom=2
|
|
||||||
frame.left=2
|
|
||||||
frame.right=2
|
|
||||||
indicator.element=spin
|
|
||||||
indicator.size=8
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
|
|
||||||
[RadioButton]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior.element=radio
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
|
|
||||||
[CheckBox]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior.element=checkbox
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
|
|
||||||
[Focus]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
frame.element=focus
|
|
||||||
frame.top=2
|
|
||||||
frame.bottom=2
|
|
||||||
frame.left=2
|
|
||||||
frame.right=2
|
|
||||||
frame.patternsize=14
|
|
||||||
|
|
||||||
[GenericFrame]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
interior=false
|
|
||||||
frame.element=common
|
|
||||||
interior.element=common
|
|
||||||
frame.top=1
|
|
||||||
frame.bottom=1
|
|
||||||
frame.left=1
|
|
||||||
frame.right=1
|
|
||||||
|
|
||||||
[LineEdit]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[DropDownButton]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.element=arrow-down
|
|
||||||
|
|
||||||
[IndicatorArrow]
|
|
||||||
indicator.element=arrow
|
|
||||||
indicator.size=8
|
|
||||||
|
|
||||||
[ToolboxTab]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.press.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
|
|
||||||
[Tab]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior.element=tab
|
|
||||||
text.margin.left=8
|
|
||||||
text.margin.right=8
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
frame.element=tab
|
|
||||||
indicator.element=tab
|
|
||||||
indicator.size=22
|
|
||||||
frame.top=8
|
|
||||||
frame.bottom=8
|
|
||||||
frame.left=8
|
|
||||||
frame.right=8
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=#dfdfdf
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=white
|
|
||||||
frame.expansion=0
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[TabFrame]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=tabframe
|
|
||||||
interior.element=tabframe
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
|
|
||||||
[TreeExpander]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.size=8
|
|
||||||
indicator.element=tree
|
|
||||||
|
|
||||||
[HeaderSection]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior.element=header
|
|
||||||
frame.element=header
|
|
||||||
frame.top=0
|
|
||||||
frame.bottom=1
|
|
||||||
frame.left=1
|
|
||||||
frame.right=1
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=white
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[SizeGrip]
|
|
||||||
indicator.element=resize-grip
|
|
||||||
|
|
||||||
[Toolbar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.element=toolbar
|
|
||||||
indicator.size=5
|
|
||||||
text.margin=0
|
|
||||||
interior.element=menubar
|
|
||||||
frame.element=menubar
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
text.press.color=#dfdfdf
|
|
||||||
text.toggle.color=white
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
frame.top=0
|
|
||||||
frame.bottom=1
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[Slider]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=slider
|
|
||||||
focusFrame=true
|
|
||||||
interior.element=slider
|
|
||||||
frame.top=3
|
|
||||||
frame.bottom=3
|
|
||||||
frame.left=3
|
|
||||||
frame.right=3
|
|
||||||
|
|
||||||
[SliderCursor]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior.element=slidercursor
|
|
||||||
|
|
||||||
[Progressbar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=progress
|
|
||||||
interior.element=progress
|
|
||||||
text.margin=0
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=#dfdfdf
|
|
||||||
text.press.color=#dfdfdf
|
|
||||||
text.toggle.color=#dfdfdf
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=8
|
|
||||||
|
|
||||||
[ProgressbarContents]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
frame.element=progress-pattern
|
|
||||||
interior.element=progress-pattern
|
|
||||||
|
|
||||||
[ItemView]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
text.margin=0
|
|
||||||
frame.element=itemview
|
|
||||||
interior.element=itemview
|
|
||||||
frame.top=4
|
|
||||||
frame.bottom=4
|
|
||||||
frame.left=4
|
|
||||||
frame.right=4
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
text.margin.left=8
|
|
||||||
text.margin.right=8
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=#dfdfdf
|
|
||||||
text.press.color=#ffffff
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[Splitter]
|
|
||||||
interior.element=splitter
|
|
||||||
frame=false
|
|
||||||
indicator.size=0
|
|
||||||
|
|
||||||
[Scrollbar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.element=arrow
|
|
||||||
indicator.size=12
|
|
||||||
|
|
||||||
[ScrollbarSlider]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=scrollbarslider
|
|
||||||
interior=false
|
|
||||||
frame.left=5
|
|
||||||
frame.right=5
|
|
||||||
frame.top=5
|
|
||||||
frame.bottom=5
|
|
||||||
indicator.element=grip
|
|
||||||
indicator.size=12
|
|
||||||
|
|
||||||
[ScrollbarGroove]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior=false
|
|
||||||
frame=false
|
|
||||||
|
|
||||||
[Menu]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.top=10
|
|
||||||
frame.bottom=10
|
|
||||||
frame.left=10
|
|
||||||
frame.right=10
|
|
||||||
frame.element=menu
|
|
||||||
interior.element=menu
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.shadow=false
|
|
||||||
frame.expansion=0
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[MenuItem]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
interior.element=menuitem
|
|
||||||
indicator.element=menuitem
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=#ffffff
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
text.margin.left=6
|
|
||||||
text.margin.right=6
|
|
||||||
frame.top=4
|
|
||||||
frame.bottom=4
|
|
||||||
frame.left=4
|
|
||||||
frame.right=4
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[MenuBar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=menubar
|
|
||||||
interior.element=menubar
|
|
||||||
frame.bottom=0
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=#ffffff
|
|
||||||
text.press.color=#ffffff
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
frame.expansion=0
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[MenuBarItem]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior=true
|
|
||||||
interior.element=menubaritem
|
|
||||||
frame.element=menubaritem
|
|
||||||
frame.top=2
|
|
||||||
frame.bottom=2
|
|
||||||
frame.left=2
|
|
||||||
frame.right=2
|
|
||||||
text.margin.left=4
|
|
||||||
text.margin.right=4
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=#ffffff
|
|
||||||
text.press.color=#ffffff
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
text.bold=false
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[TitleBar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
interior.element=titlebar
|
|
||||||
indicator.size=16
|
|
||||||
indicator.element=mdi
|
|
||||||
text.normal.color=#787878
|
|
||||||
text.focus.color=#dfdfdf
|
|
||||||
text.bold=false
|
|
||||||
text.italic=true
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[ComboBox]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=combo
|
|
||||||
interior.element=combo
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
text.focus.color=white
|
|
||||||
text.press.color=#dfdfdf
|
|
||||||
text.toggle.color=white
|
|
||||||
|
|
||||||
[GroupBox]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame=false
|
|
||||||
text.shadow=0
|
|
||||||
text.margin=0
|
|
||||||
text.normal.color=#dfdfdf
|
|
||||||
text.focus.color=white
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[TabBarFrame]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame=false
|
|
||||||
frame.element=tabBarFrame
|
|
||||||
interior=false
|
|
||||||
frame.top=0
|
|
||||||
frame.bottom=0
|
|
||||||
frame.left=0
|
|
||||||
frame.right=0
|
|
||||||
|
|
||||||
[ToolTip]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
interior=true
|
|
||||||
text.shadow=0
|
|
||||||
text.margin=6
|
|
||||||
interior.element=tooltip
|
|
||||||
frame.element=tooltip
|
|
||||||
frame.expansion=6
|
|
||||||
|
|
||||||
[StatusBar]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame=false
|
|
||||||
interior=false
|
|
||||||
|
|
||||||
[Window]
|
|
||||||
interior=true
|
|
||||||
interior.element=window
|
|
||||||
frame=true
|
|
||||||
frame.element=window
|
|
||||||
frame.bottom=10
|
|
||||||
frame.top=10
|
|
||||||
|
Before Width: | Height: | Size: 168 KiB |
@@ -1,571 +0,0 @@
|
|||||||
[%General]
|
|
||||||
author=Vince Liuice, based on KvAdapta by Tsu Jan
|
|
||||||
comment=An uncomplicated theme inspired by the Materia GTK theme
|
|
||||||
x11drag=none
|
|
||||||
alt_mnemonic=true
|
|
||||||
left_tabs=false
|
|
||||||
attach_active_tab=false
|
|
||||||
mirror_doc_tabs=true
|
|
||||||
group_toolbar_buttons=false
|
|
||||||
toolbar_item_spacing=0
|
|
||||||
toolbar_interior_spacing=2
|
|
||||||
spread_progressbar=true
|
|
||||||
composite=true
|
|
||||||
menu_shadow_depth=6
|
|
||||||
spread_menuitems=false
|
|
||||||
tooltip_shadow_depth=7
|
|
||||||
splitter_width=1
|
|
||||||
scroll_width=9
|
|
||||||
scroll_arrows=false
|
|
||||||
scroll_min_extent=60
|
|
||||||
slider_width=2
|
|
||||||
slider_handle_width=23
|
|
||||||
slider_handle_length=22
|
|
||||||
tickless_slider_handle_size=22
|
|
||||||
center_toolbar_handle=true
|
|
||||||
check_size=24
|
|
||||||
textless_progressbar=false
|
|
||||||
progressbar_thickness=2
|
|
||||||
menubar_mouse_tracking=true
|
|
||||||
toolbutton_style=1
|
|
||||||
double_click=false
|
|
||||||
translucent_windows=false
|
|
||||||
blurring=false
|
|
||||||
popup_blurring=false
|
|
||||||
vertical_spin_indicators=false
|
|
||||||
spin_button_width=24
|
|
||||||
fill_rubberband=false
|
|
||||||
merge_menubar_with_toolbar=true
|
|
||||||
small_icon_size=16
|
|
||||||
large_icon_size=32
|
|
||||||
button_icon_size=16
|
|
||||||
toolbar_icon_size=16
|
|
||||||
combo_as_lineedit=true
|
|
||||||
animate_states=true
|
|
||||||
button_contents_shift=false
|
|
||||||
combo_menu=true
|
|
||||||
hide_combo_checkboxes=true
|
|
||||||
combo_focus_rect=false
|
|
||||||
groupbox_top_label=true
|
|
||||||
inline_spin_indicators=true
|
|
||||||
joined_inactive_tabs=false
|
|
||||||
layout_spacing=3
|
|
||||||
layout_margin=3
|
|
||||||
scrollbar_in_view=true
|
|
||||||
transient_scrollbar=true
|
|
||||||
transient_groove=false
|
|
||||||
submenu_overlap=0
|
|
||||||
tooltip_delay=0
|
|
||||||
tree_branch_line=false
|
|
||||||
no_window_pattern=false
|
|
||||||
opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,VirtualBoxVM,trojita,dragon,digikam,lyx
|
|
||||||
reduce_window_opacity=0
|
|
||||||
respect_DE=true
|
|
||||||
scrollable_menu=false
|
|
||||||
submenu_delay=150
|
|
||||||
no_inactiveness=false
|
|
||||||
reduce_menu_opacity=0
|
|
||||||
click_behavior=2
|
|
||||||
contrast=1.00
|
|
||||||
dialog_button_layout=0
|
|
||||||
intensity=1.00
|
|
||||||
saturation=1.00
|
|
||||||
shadowless_popup=false
|
|
||||||
drag_from_buttons=false
|
|
||||||
menu_blur_radius=0
|
|
||||||
tooltip_blur_radius=0
|
|
||||||
|
|
||||||
[GeneralColors]
|
|
||||||
window.color=#0F1416
|
|
||||||
base.color=#0F1416
|
|
||||||
alt.base.color=#0F1416
|
|
||||||
button.color=#1B2022
|
|
||||||
light.color=#171C1E
|
|
||||||
mid.light.color=#1B2022
|
|
||||||
dark.color=#303638
|
|
||||||
mid.color=#252B2D
|
|
||||||
highlight.color=#84D2E7
|
|
||||||
inactive.highlight.color=#84D2E7
|
|
||||||
text.color=#DEE3E5
|
|
||||||
window.text.color=#DEE3E5
|
|
||||||
button.text.color=#DEE3E5
|
|
||||||
disabled.text.color=#DEE3E5
|
|
||||||
tooltip.text.color=#DEE3E5
|
|
||||||
highlight.text.color=#DEE3E5
|
|
||||||
link.color=#BFC4EB
|
|
||||||
link.visited.color=#DDE1FF
|
|
||||||
progress.indicator.text.color=#DEE3E5
|
|
||||||
|
|
||||||
[Hacks]
|
|
||||||
transparent_ktitle_label=true
|
|
||||||
transparent_dolphin_view=true
|
|
||||||
transparent_pcmanfm_sidepane=true
|
|
||||||
blur_translucent=false
|
|
||||||
transparent_menutitle=true
|
|
||||||
respect_darkness=true
|
|
||||||
kcapacitybar_as_progressbar=true
|
|
||||||
force_size_grip=true
|
|
||||||
iconless_pushbutton=false
|
|
||||||
iconless_menu=false
|
|
||||||
disabled_icon_opacity=100
|
|
||||||
lxqtmainmenu_iconsize=16
|
|
||||||
normal_default_pushbutton=true
|
|
||||||
single_top_toolbar=true
|
|
||||||
tint_on_mouseover=0
|
|
||||||
transparent_pcmanfm_view=true
|
|
||||||
no_selection_tint=true
|
|
||||||
transparent_arrow_button=true
|
|
||||||
middle_click_scroll=false
|
|
||||||
opaque_colors=false
|
|
||||||
kinetic_scrolling=false
|
|
||||||
scroll_jump_workaround=true
|
|
||||||
centered_forms=false
|
|
||||||
noninteger_translucency=false
|
|
||||||
style_vertical_toolbars=false
|
|
||||||
blur_only_active_window=true
|
|
||||||
|
|
||||||
[PanelButtonCommand]
|
|
||||||
frame=true
|
|
||||||
frame.element=button
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
interior=true
|
|
||||||
interior.element=button
|
|
||||||
indicator.size=8
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
text.shadow=0
|
|
||||||
text.margin=4
|
|
||||||
text.iconspacing=4
|
|
||||||
indicator.element=arrow
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[PanelButtonTool]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
text.bold=false
|
|
||||||
indicator.element=arrow
|
|
||||||
indicator.size=8
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[ToolbarButton]
|
|
||||||
frame=true
|
|
||||||
frame.element=tbutton
|
|
||||||
interior.element=tbutton
|
|
||||||
frame.top=16
|
|
||||||
frame.bottom=16
|
|
||||||
frame.left=16
|
|
||||||
frame.right=16
|
|
||||||
indicator.element=tarrow
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=white
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=32
|
|
||||||
|
|
||||||
[Dock]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior.element=dock
|
|
||||||
frame.element=dock
|
|
||||||
frame.top=1
|
|
||||||
frame.bottom=1
|
|
||||||
frame.left=1
|
|
||||||
frame.right=1
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
|
|
||||||
[DockTitle]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior=false
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[IndicatorSpinBox]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
interior=true
|
|
||||||
frame.top=2
|
|
||||||
frame.bottom=2
|
|
||||||
frame.left=2
|
|
||||||
frame.right=2
|
|
||||||
indicator.element=spin
|
|
||||||
indicator.size=8
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
|
|
||||||
[RadioButton]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior.element=radio
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
|
|
||||||
[CheckBox]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior.element=checkbox
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
|
|
||||||
[Focus]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
frame.element=focus
|
|
||||||
frame.top=2
|
|
||||||
frame.bottom=2
|
|
||||||
frame.left=2
|
|
||||||
frame.right=2
|
|
||||||
frame.patternsize=14
|
|
||||||
|
|
||||||
[GenericFrame]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
interior=false
|
|
||||||
frame.element=common
|
|
||||||
interior.element=common
|
|
||||||
frame.top=1
|
|
||||||
frame.bottom=1
|
|
||||||
frame.left=1
|
|
||||||
frame.right=1
|
|
||||||
|
|
||||||
[LineEdit]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
|
|
||||||
[ToolbarLineEdit]
|
|
||||||
frame.element=lineedit
|
|
||||||
interior.element=lineedit
|
|
||||||
|
|
||||||
[DropDownButton]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.element=arrow-down
|
|
||||||
|
|
||||||
[IndicatorArrow]
|
|
||||||
indicator.element=arrow
|
|
||||||
indicator.size=8
|
|
||||||
|
|
||||||
[ToolboxTab]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.press.color=#dfdfdf
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
|
|
||||||
[Tab]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior.element=tab
|
|
||||||
text.margin.left=8
|
|
||||||
text.margin.right=8
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
frame.element=tab
|
|
||||||
indicator.element=tab
|
|
||||||
indicator.size=22
|
|
||||||
frame.top=8
|
|
||||||
frame.bottom=8
|
|
||||||
frame.left=8
|
|
||||||
frame.right=8
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=white
|
|
||||||
frame.expansion=0
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[TabFrame]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=tabframe
|
|
||||||
interior.element=tabframe
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
|
|
||||||
[TreeExpander]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.size=8
|
|
||||||
indicator.element=tree
|
|
||||||
|
|
||||||
[HeaderSection]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior.element=header
|
|
||||||
frame.element=header
|
|
||||||
frame.top=0
|
|
||||||
frame.bottom=1
|
|
||||||
frame.left=1
|
|
||||||
frame.right=1
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=white
|
|
||||||
text.toggle.color=white
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[SizeGrip]
|
|
||||||
indicator.element=resize-grip
|
|
||||||
|
|
||||||
[Toolbar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.element=toolbar
|
|
||||||
indicator.size=5
|
|
||||||
text.margin=0
|
|
||||||
interior.element=menubar
|
|
||||||
frame.element=menubar
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=#dfdfdf
|
|
||||||
text.toggle.color=white
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
frame.top=0
|
|
||||||
frame.bottom=1
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[Slider]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=slider
|
|
||||||
focusFrame=true
|
|
||||||
interior.element=slider
|
|
||||||
frame.top=3
|
|
||||||
frame.bottom=3
|
|
||||||
frame.left=3
|
|
||||||
frame.right=3
|
|
||||||
|
|
||||||
[SliderCursor]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
interior.element=slidercursor
|
|
||||||
|
|
||||||
[Progressbar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=progress
|
|
||||||
interior.element=progress
|
|
||||||
text.margin=0
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=#dfdfdf
|
|
||||||
text.toggle.color=#dfdfdf
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=8
|
|
||||||
|
|
||||||
[ProgressbarContents]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
frame.element=progress-pattern
|
|
||||||
interior.element=progress-pattern
|
|
||||||
|
|
||||||
[ItemView]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
text.margin=0
|
|
||||||
frame.element=itemview
|
|
||||||
interior.element=itemview
|
|
||||||
frame.top=4
|
|
||||||
frame.bottom=4
|
|
||||||
frame.left=4
|
|
||||||
frame.right=4
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
text.margin.left=8
|
|
||||||
text.margin.right=8
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=#ffffff
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[Splitter]
|
|
||||||
interior.element=splitter
|
|
||||||
frame=false
|
|
||||||
indicator.size=0
|
|
||||||
|
|
||||||
[Scrollbar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
indicator.element=arrow
|
|
||||||
indicator.size=12
|
|
||||||
|
|
||||||
[ScrollbarSlider]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=scrollbarslider
|
|
||||||
interior=false
|
|
||||||
frame.left=5
|
|
||||||
frame.right=5
|
|
||||||
frame.top=5
|
|
||||||
frame.bottom=5
|
|
||||||
indicator.element=grip
|
|
||||||
indicator.size=12
|
|
||||||
|
|
||||||
[ScrollbarGroove]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior=false
|
|
||||||
frame=false
|
|
||||||
|
|
||||||
[Menu]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.top=10
|
|
||||||
frame.bottom=10
|
|
||||||
frame.left=10
|
|
||||||
frame.right=10
|
|
||||||
frame.element=menu
|
|
||||||
interior.element=menu
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.shadow=false
|
|
||||||
frame.expansion=0
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[MenuItem]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=true
|
|
||||||
frame.element=menuitem
|
|
||||||
interior.element=menuitem
|
|
||||||
indicator.element=menuitem
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
text.margin.left=6
|
|
||||||
text.margin.right=6
|
|
||||||
frame.top=4
|
|
||||||
frame.bottom=4
|
|
||||||
frame.left=4
|
|
||||||
frame.right=4
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[MenuBar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=menubar
|
|
||||||
interior.element=menubar
|
|
||||||
frame.bottom=0
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=#ffffff
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
frame.expansion=0
|
|
||||||
text.bold=false
|
|
||||||
|
|
||||||
[MenuBarItem]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
interior=true
|
|
||||||
interior.element=menubaritem
|
|
||||||
frame.element=menubaritem
|
|
||||||
frame.top=2
|
|
||||||
frame.bottom=2
|
|
||||||
frame.left=2
|
|
||||||
frame.right=2
|
|
||||||
text.margin.left=4
|
|
||||||
text.margin.right=4
|
|
||||||
text.margin.top=0
|
|
||||||
text.margin.bottom=0
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=#ffffff
|
|
||||||
text.toggle.color=#ffffff
|
|
||||||
text.bold=false
|
|
||||||
min_width=+0.3font
|
|
||||||
min_height=+0.3font
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[TitleBar]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame=false
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
interior.element=titlebar
|
|
||||||
indicator.size=16
|
|
||||||
indicator.element=mdi
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.bold=false
|
|
||||||
text.italic=true
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[ComboBox]
|
|
||||||
inherits=PanelButtonCommand
|
|
||||||
frame.element=combo
|
|
||||||
interior.element=combo
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
text.margin.top=2
|
|
||||||
text.margin.bottom=2
|
|
||||||
text.margin.left=2
|
|
||||||
text.margin.right=2
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.press.color=#dfdfdf
|
|
||||||
text.toggle.color=white
|
|
||||||
|
|
||||||
[GroupBox]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame=false
|
|
||||||
text.shadow=0
|
|
||||||
text.margin=0
|
|
||||||
text.normal.color=#DEE3E5
|
|
||||||
text.focus.color=#DEE3E5
|
|
||||||
text.bold=false
|
|
||||||
frame.expansion=0
|
|
||||||
|
|
||||||
[TabBarFrame]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame=false
|
|
||||||
frame.element=tabBarFrame
|
|
||||||
interior=false
|
|
||||||
frame.top=0
|
|
||||||
frame.bottom=0
|
|
||||||
frame.left=0
|
|
||||||
frame.right=0
|
|
||||||
|
|
||||||
[ToolTip]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame.top=6
|
|
||||||
frame.bottom=6
|
|
||||||
frame.left=6
|
|
||||||
frame.right=6
|
|
||||||
interior=true
|
|
||||||
text.shadow=0
|
|
||||||
text.margin=6
|
|
||||||
interior.element=tooltip
|
|
||||||
frame.element=tooltip
|
|
||||||
frame.expansion=6
|
|
||||||
|
|
||||||
[StatusBar]
|
|
||||||
inherits=GenericFrame
|
|
||||||
frame=false
|
|
||||||
interior=false
|
|
||||||
|
|
||||||
[Window]
|
|
||||||
interior=true
|
|
||||||
interior.element=window
|
|
||||||
frame=true
|
|
||||||
frame.element=window
|
|
||||||
frame.bottom=10
|
|
||||||
frame.top=10
|
|
||||||
|
|
||||||
text.disabled.color=#0F1416
|
|
||||||
|
Before Width: | Height: | Size: 168 KiB |
@@ -1,2 +0,0 @@
|
|||||||
[General]
|
|
||||||
theme=MaterialAdw
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
--password-store=gnome-libsecret
|
|
||||||
--ozone-platform-hint=wayland
|
|
||||||
--gtk-version=4
|
|
||||||
--ignore-gpu-blocklist
|
|
||||||
--enable-features=TouchpadOverscrollHistoryNavigation
|
|
||||||
--enable-wayland-ime
|
|
||||||
--disable-features=ExtensionManifestV2Unsupported
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
--ozone-platform-hint=wayland
|
|
||||||
--gtk-version=4
|
|
||||||
--ignore-gpu-blocklist
|
|
||||||
--enable-features=TouchpadOverscrollHistoryNavigation
|
|
||||||
--enable-wayland-ime
|
|
||||||
--password-store=gnome-libsecret
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
[Style]
|
|
||||||
WidgetDrawShadow=false
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
[DetailsMode]
|
|
||||||
PreviewSize=32
|
|
||||||
|
|
||||||
[General]
|
|
||||||
GlobalViewProps=false
|
|
||||||
ShowFullPath=true
|
|
||||||
ShowStatusBar=FullWidth
|
|
||||||
Version=202
|
|
||||||
|
|
||||||
[KFileDialog Settings]
|
|
||||||
Places Icons Auto-resize=false
|
|
||||||
Places Icons Static Size=22
|
|
||||||
|
|
||||||
[MainWindow]
|
|
||||||
MenuBar=Disabled
|
|
||||||
|
|
||||||
[PreviewSettings]
|
|
||||||
Plugins=ffmpegthumbnailer,appimagethumbnail,audiothumbnail,avif,blenderthumbnail,comicbookthumbnail,cursorthumbnail,djvuthumbnail,ebookthumbnail,exrthumbnail,directorythumbnail,fontthumbnail,heif,imagethumbnail,jpegthumbnail,jxl,kraorathumbnail,windowsexethumbnail,windowsimagethumbnail,mobithumbnail,opendocumentthumbnail,gsthumbnail,rawthumbnail,librsvg,svgthumbnail,ffmpegthumbs,gdk-pixbuf-thumbnailer,gsf-office
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
# Auto start Hyprland on tty1
|
|
||||||
if test -z "$DISPLAY" ;and test "$XDG_VTNR" -eq 1
|
|
||||||
mkdir -p ~/.cache
|
|
||||||
exec start-hyprland > ~/.cache/hyprland.log 2>&1
|
|
||||||
end
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
# Commands to run in interactive sessions can go here
|
|
||||||
if status is-interactive
|
|
||||||
# No greeting
|
|
||||||
set fish_greeting
|
|
||||||
|
|
||||||
# Use starship
|
|
||||||
function starship_transient_prompt_func
|
|
||||||
starship module character
|
|
||||||
end
|
|
||||||
if test "$TERM" != "linux"
|
|
||||||
starship init fish | source
|
|
||||||
enable_transience
|
|
||||||
end
|
|
||||||
|
|
||||||
# Colors
|
|
||||||
if test -f ~/.local/state/quickshell/user/generated/terminal/sequences.txt
|
|
||||||
cat ~/.local/state/quickshell/user/generated/terminal/sequences.txt
|
|
||||||
end
|
|
||||||
|
|
||||||
# Aliases
|
|
||||||
# kitty doesn't clear properly so we need to do this weird printing
|
|
||||||
alias clear "printf '\033[2J\033[3J\033[1;1H'"
|
|
||||||
alias celar "printf '\033[2J\033[3J\033[1;1H'"
|
|
||||||
alias claer "printf '\033[2J\033[3J\033[1;1H'"
|
|
||||||
alias pamcan pacman
|
|
||||||
alias q 'qs -c ii'
|
|
||||||
if test "$TERM" != "linux"
|
|
||||||
alias ls 'eza --icons'
|
|
||||||
end
|
|
||||||
if test "$TERM" = "xterm-kitty"
|
|
||||||
alias ssh 'kitten ssh'
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
|
|
||||||
<fontconfig>
|
|
||||||
<match target="font">
|
|
||||||
<edit name="rgba" mode="assign">
|
|
||||||
<const>none</const>
|
|
||||||
</edit>
|
|
||||||
</match>
|
|
||||||
</fontconfig>
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
shell=fish
|
|
||||||
term=xterm-256color
|
|
||||||
|
|
||||||
title=foot
|
|
||||||
|
|
||||||
font=JetBrainsMono Nerd Font:size=11
|
|
||||||
letter-spacing=0
|
|
||||||
dpi-aware=no
|
|
||||||
|
|
||||||
pad=25x25
|
|
||||||
|
|
||||||
bold-text-in-bright=no
|
|
||||||
|
|
||||||
[scrollback]
|
|
||||||
lines=10000
|
|
||||||
|
|
||||||
[cursor]
|
|
||||||
style=beam
|
|
||||||
blink=no
|
|
||||||
beam-thickness=1.5
|
|
||||||
# underline-thickness=<font underline thickness>
|
|
||||||
|
|
||||||
[key-bindings]
|
|
||||||
scrollback-up-page=Page_Up
|
|
||||||
scrollback-down-page=Page_Down
|
|
||||||
clipboard-copy=Control+c
|
|
||||||
clipboard-paste=Control+v
|
|
||||||
# primary-paste=Shift+Insert
|
|
||||||
search-start=Control+f
|
|
||||||
font-increase=Control+plus Control+equal Control+KP_Add
|
|
||||||
font-decrease=Control+minus Control+KP_Subtract
|
|
||||||
font-reset=Control+0 Control+KP_0
|
|
||||||
|
|
||||||
[search-bindings]
|
|
||||||
cancel=Escape
|
|
||||||
find-prev=Shift+F3
|
|
||||||
find-next=F3 Control+G
|
|
||||||
delete-prev-word=Control+BackSpace
|
|
||||||
|
|
||||||
[text-bindings]
|
|
||||||
\x03=Control+Shift+c
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
include="~/.config/fuzzel/fuzzel_theme.ini"
|
|
||||||
font=Google Sans Flex:weight=medium
|
|
||||||
terminal=kitty -1
|
|
||||||
prompt=">> "
|
|
||||||
layer=overlay
|
|
||||||
|
|
||||||
[border]
|
|
||||||
radius=17
|
|
||||||
width=1
|
|
||||||
|
|
||||||
[dmenu]
|
|
||||||
exit-immediately-if-empty=yes
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
[colors]
|
|
||||||
background=161217ff
|
|
||||||
text=e9e0e8ff
|
|
||||||
selection=4b454dff
|
|
||||||
selection-text=cdc3ceff
|
|
||||||
border=4b454ddd
|
|
||||||
match=dfb8f6ff
|
|
||||||
selection-match=dfb8f6ff
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
hl.bind("CTRL+SUPER+ALT+Slash", hl.dsp.exec_cmd("xdg-open ~/.config/hypr/custom/keybinds.lua"), {description = "Edit user keybinds"} )
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# The content of this script will be generated by switchwall.sh - Don't modify it by yourself.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
$lock_cmd = hyprctl dispatch 'hl.dsp.global("quickshell:lock")' & pidof qs quickshell hyprlock || hyprlock
|
|
||||||
# $lock_cmd = pidof hyprlock || hyprlock
|
|
||||||
$suspend_cmd = systemctl suspend || loginctl suspend
|
|
||||||
|
|
||||||
general {
|
|
||||||
lock_cmd = $lock_cmd
|
|
||||||
before_sleep_cmd = loginctl lock-session
|
|
||||||
after_sleep_cmd = hyprctl dispatch 'hl.dsp.global("quickshell:lockFocus")'
|
|
||||||
inhibit_sleep = 3
|
|
||||||
}
|
|
||||||
|
|
||||||
listener {
|
|
||||||
timeout = 300 # 5mins
|
|
||||||
on-timeout = loginctl lock-session
|
|
||||||
}
|
|
||||||
|
|
||||||
listener {
|
|
||||||
timeout = 600 # 10mins
|
|
||||||
on-timeout = hyprctl dispatch 'hl.dsp.dpms(false)'
|
|
||||||
on-resume = hyprctl dispatch 'hl.dsp.dpms(true)'
|
|
||||||
}
|
|
||||||
|
|
||||||
listener {
|
|
||||||
timeout = 900 # 15mins
|
|
||||||
on-timeout = $suspend_cmd
|
|
||||||
}
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
-- This file sources other files in `hyprland` and `custom` folders
|
|
||||||
-- You wanna add your stuff in files in `custom`
|
|
||||||
|
|
||||||
-- Internal stuff --
|
|
||||||
require("hyprland.lib")
|
|
||||||
require("hyprland.services")
|
|
||||||
|
|
||||||
-- Environment variables --
|
|
||||||
require("hyprland.env")
|
|
||||||
if is_file_exists(HOME .. "/.config/hypr/custom/env.lua") then
|
|
||||||
require("custom.env")
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Default configurations --
|
|
||||||
require("hyprland.execs")
|
|
||||||
require("hyprland.general")
|
|
||||||
require("hyprland.rules")
|
|
||||||
require("hyprland.colors")
|
|
||||||
require("hyprland.keybinds")
|
|
||||||
|
|
||||||
-- Custom configurations --
|
|
||||||
if is_file_exists(HOME .. "/.config/hypr/custom/execs.lua") then
|
|
||||||
require("custom.execs")
|
|
||||||
end
|
|
||||||
if is_file_exists(HOME .. "/.config/hypr/custom/general.lua") then
|
|
||||||
require("custom.general")
|
|
||||||
end
|
|
||||||
if is_file_exists(HOME .. "/.config/hypr/custom/rules.lua") then
|
|
||||||
require("custom.rules")
|
|
||||||
end
|
|
||||||
if is_file_exists(HOME .. "/.config/hypr/custom/keybinds.lua") then
|
|
||||||
require("custom.keybinds")
|
|
||||||
end
|
|
||||||
|
|
||||||
-- nwg-displays support --
|
|
||||||
if is_file_exists(HOME .. "/.config/hypr/workspaces.lua") then
|
|
||||||
require("workspaces")
|
|
||||||
end
|
|
||||||
if is_file_exists(HOME .. "/.config/hypr/monitors.lua") then
|
|
||||||
require("monitors")
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Shell overrides --
|
|
||||||
require("hyprland.shellOverrides.main")
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
hl.config({
|
|
||||||
general = {
|
|
||||||
col = {
|
|
||||||
active_border = "rgba(44464f77)",
|
|
||||||
inactive_border = "rgba(1a1b2033)",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
misc = {
|
|
||||||
background_color = "rgba(121318FF)",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.window_rule({ -- not sure how to syntax "pin 1"
|
|
||||||
match = { pin = 1 },
|
|
||||||
border_color = "rgba(afc6ffAA) rgba(afc6ff77)",
|
|
||||||
})
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
local home_dir = os.getenv("HOME")
|
|
||||||
|
|
||||||
-- Wayland
|
|
||||||
hl.env("ELECTRON_OZONE_PLATFORM_HINT", "auto")
|
|
||||||
|
|
||||||
-- Applications
|
|
||||||
local xdg_data_dirs_old = os.getenv("XDG_DATA_DIRS") or ""
|
|
||||||
hl.env("XDG_DATA_DIRS", home_dir .. "/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share:" .. xdg_data_dirs_old)
|
|
||||||
|
|
||||||
-- Themes
|
|
||||||
hl.env("QT_QPA_PLATFORM", "wayland;xcb")
|
|
||||||
hl.env("QT_QPA_PLATFORMTHEME", "kde")
|
|
||||||
hl.env("XDG_MENU_PREFIX", "plasma-")
|
|
||||||
|
|
||||||
-- Virtual environment
|
|
||||||
hl.env("ILLOGICAL_IMPULSE_VIRTUAL_ENV", home_dir .. "/.local/state/quickshell/.venv")
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
-- put former exec-once commands inside the func and former exec commands outside
|
|
||||||
hl.on("hyprland.start", function ()
|
|
||||||
|
|
||||||
-- Bar, wallpaper
|
|
||||||
hl.exec_cmd("$HOME/.config/hypr/hyprland/scripts/start_geoclue_agent.sh")
|
|
||||||
hl.exec_cmd("qs -c $qsConfig")
|
|
||||||
hl.exec_cmd("$HOME/.config/hypr/custom/scripts/__restore_video_wallpaper.sh")
|
|
||||||
|
|
||||||
-- Core components (authentication, lock screen, notification daemon)
|
|
||||||
hl.exec_cmd("gnome-keyring-daemon --start --components=secrets")
|
|
||||||
hl.exec_cmd("hypridle")
|
|
||||||
hl.exec_cmd("dbus-update-activation-environment --all")
|
|
||||||
hl.exec_cmd("sleep 1 && dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP") -- Some fix idk
|
|
||||||
|
|
||||||
-- Audio
|
|
||||||
hl.exec_cmd("easyeffects --hide-window --service-mode")
|
|
||||||
|
|
||||||
-- Clipboard: history
|
|
||||||
--hl.exec_cmd("wl-paste --watch cliphist store")
|
|
||||||
hl.exec_cmd("wl-paste --type text --watch bash -c 'cliphist store && qs -c $qsConfig ipc call cliphistService update'")
|
|
||||||
hl.exec_cmd("wl-paste --type image --watch bash -c 'cliphist store && qs -c $qsConfig ipc call cliphistService update'")
|
|
||||||
|
|
||||||
-- Cursor
|
|
||||||
hl.exec_cmd("hyprctl setcursor Bibata-Modern-Classic 24")
|
|
||||||
end)
|
|
||||||
@@ -1,305 +0,0 @@
|
|||||||
-- MONITOR CONFIG
|
|
||||||
hl.monitor({
|
|
||||||
output = "",
|
|
||||||
mode = "preferred",
|
|
||||||
position = "auto",
|
|
||||||
scale = 1
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.gesture({
|
|
||||||
fingers = 3,
|
|
||||||
direction = "swipe",
|
|
||||||
action = "move"
|
|
||||||
})
|
|
||||||
hl.gesture({
|
|
||||||
fingers = 3,
|
|
||||||
direction = "pinch",
|
|
||||||
action = "fullscreen"
|
|
||||||
})
|
|
||||||
hl.gesture({
|
|
||||||
fingers = 4,
|
|
||||||
direction = "horizontal",
|
|
||||||
action = "workspace"
|
|
||||||
})
|
|
||||||
hl.gesture({
|
|
||||||
fingers = 4,
|
|
||||||
direction = "up",
|
|
||||||
action = function()
|
|
||||||
hl.dispatch(hl.dsp.global("quickshell:overviewWorkspacesToggle"))
|
|
||||||
end
|
|
||||||
})
|
|
||||||
hl.gesture({
|
|
||||||
fingers = 4,
|
|
||||||
direction = "down",
|
|
||||||
action = function()
|
|
||||||
hl.dispatch(hl.dsp.global("quickshell:overviewWorkspacesToggle"))
|
|
||||||
end
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.config({
|
|
||||||
gestures = {
|
|
||||||
workspace_swipe_distance = 700,
|
|
||||||
workspace_swipe_cancel_ratio = 0.2,
|
|
||||||
workspace_swipe_min_speed_to_force = 5,
|
|
||||||
workspace_swipe_direction_lock = true,
|
|
||||||
workspace_swipe_direction_lock_threshold = 10,
|
|
||||||
workspace_swipe_create_new = true
|
|
||||||
},
|
|
||||||
general = {
|
|
||||||
-- Gaps and border
|
|
||||||
gaps_in = 4,
|
|
||||||
gaps_out = 5,
|
|
||||||
gaps_workspaces = 50,
|
|
||||||
|
|
||||||
border_size = 1,
|
|
||||||
|
|
||||||
col = {
|
|
||||||
active_border = "rgba(0DB7D455)",
|
|
||||||
inactive_border = "rgba(31313600)"
|
|
||||||
},
|
|
||||||
resize_on_border = true,
|
|
||||||
|
|
||||||
no_focus_fallback = true,
|
|
||||||
allow_tearing = true, -- This just allows the `immediate` window rule to work
|
|
||||||
snap = {
|
|
||||||
enabled = true,
|
|
||||||
window_gap = 4,
|
|
||||||
monitor_gap = 5,
|
|
||||||
respect_gaps = true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
decoration = {
|
|
||||||
-- 2 = circle, higher = squircle, 4 = very obvious squircle
|
|
||||||
-- Fuck clearly visible squircles. 100% Apple brainrot.
|
|
||||||
rounding_power = 2.5,
|
|
||||||
rounding = 18,
|
|
||||||
|
|
||||||
blur = {
|
|
||||||
enabled = true,
|
|
||||||
xray = true,
|
|
||||||
special = false,
|
|
||||||
new_optimizations = true,
|
|
||||||
size = 10,
|
|
||||||
passes = 3,
|
|
||||||
brightness = 1,
|
|
||||||
noise = 0.05,
|
|
||||||
contrast = 0.89,
|
|
||||||
vibrancy = 0.5,
|
|
||||||
vibrancy_darkness = 0.5,
|
|
||||||
popups = false,
|
|
||||||
popups_ignorealpha = 0.6,
|
|
||||||
input_methods = true,
|
|
||||||
input_methods_ignorealpha = 0.8
|
|
||||||
},
|
|
||||||
shadow = {
|
|
||||||
enabled = true,
|
|
||||||
range = 20,
|
|
||||||
offset = {0, 2},
|
|
||||||
render_power = 10,
|
|
||||||
color = "rgba(00000020)"
|
|
||||||
|
|
||||||
},
|
|
||||||
-- Dim
|
|
||||||
dim_inactive = true,
|
|
||||||
dim_strength = 0.05,
|
|
||||||
dim_special = 0.2
|
|
||||||
},
|
|
||||||
animations = {
|
|
||||||
enabled = true
|
|
||||||
},
|
|
||||||
dwindle = {
|
|
||||||
preserve_split = true,
|
|
||||||
smart_split = false,
|
|
||||||
smart_resizing = false
|
|
||||||
-- precise_mouse_move = true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
-- Curves
|
|
||||||
hl.curve("expressiveFastSpatial", {
|
|
||||||
type = "bezier",
|
|
||||||
points = {{0.42, 1.67}, {0.21, 0.90}}
|
|
||||||
})
|
|
||||||
hl.curve("expressiveSlowSpatial", {
|
|
||||||
type = "bezier",
|
|
||||||
points = {{0.39, 1.29}, {0.35, 0.98}}
|
|
||||||
})
|
|
||||||
hl.curve("expressiveDefaultSpatial", {
|
|
||||||
type = "bezier",
|
|
||||||
points = {{0.38, 1.21}, {0.22, 1.00}}
|
|
||||||
})
|
|
||||||
hl.curve("emphasizedDecel", {
|
|
||||||
type = "bezier",
|
|
||||||
points = {{0.05, 0.7}, {0.1, 1}}
|
|
||||||
})
|
|
||||||
hl.curve("emphasizedAccel", {
|
|
||||||
type = "bezier",
|
|
||||||
points = {{0.3, 0}, {0.8, 0.15}}
|
|
||||||
})
|
|
||||||
hl.curve("standardDecel", {
|
|
||||||
type = "bezier",
|
|
||||||
points = {{0, 0}, {0, 1}}
|
|
||||||
})
|
|
||||||
hl.curve("menu_decel", {
|
|
||||||
type = "bezier",
|
|
||||||
points = {{0.1, 1}, {0, 1}}
|
|
||||||
})
|
|
||||||
hl.curve("menu_accel", {
|
|
||||||
type = "bezier",
|
|
||||||
points = {{0.52, 0.03}, {0.72, 0.08}}
|
|
||||||
})
|
|
||||||
hl.curve("stall", {
|
|
||||||
type = "bezier",
|
|
||||||
points = {{1, -0.1}, {0.7, 0.85}}
|
|
||||||
})
|
|
||||||
-- Configs
|
|
||||||
-- windows
|
|
||||||
hl.animation({
|
|
||||||
leaf = "windowsIn",
|
|
||||||
enabled = true,
|
|
||||||
speed = 3,
|
|
||||||
bezier = "emphasizedDecel",
|
|
||||||
style = "popin 80%"
|
|
||||||
})
|
|
||||||
hl.animation({
|
|
||||||
leaf = "fadeIn",
|
|
||||||
enabled = true,
|
|
||||||
speed = 3,
|
|
||||||
bezier = "emphasizedDecel"
|
|
||||||
})
|
|
||||||
hl.animation({
|
|
||||||
leaf = "windowsOut",
|
|
||||||
enabled = true,
|
|
||||||
speed = 2,
|
|
||||||
bezier = "emphasizedDecel",
|
|
||||||
style = "popin 90%"
|
|
||||||
})
|
|
||||||
hl.animation({
|
|
||||||
leaf = "fadeOut",
|
|
||||||
enabled = true,
|
|
||||||
speed = 2,
|
|
||||||
bezier = "emphasizedDecel"
|
|
||||||
})
|
|
||||||
hl.animation({
|
|
||||||
leaf = "windowsMove",
|
|
||||||
enabled = true,
|
|
||||||
speed = 3,
|
|
||||||
bezier = "emphasizedDecel",
|
|
||||||
style = "slide"
|
|
||||||
})
|
|
||||||
hl.animation({
|
|
||||||
leaf = "border",
|
|
||||||
enabled = true,
|
|
||||||
speed = 10,
|
|
||||||
bezier = "emphasizedDecel"
|
|
||||||
})
|
|
||||||
|
|
||||||
-- layers
|
|
||||||
hl.animation({
|
|
||||||
leaf = "layersIn",
|
|
||||||
enabled = true,
|
|
||||||
speed = 2.7,
|
|
||||||
bezier = "emphasizedDecel",
|
|
||||||
style = "popin 93%"
|
|
||||||
})
|
|
||||||
hl.animation({
|
|
||||||
leaf = "layersOut",
|
|
||||||
enabled = true,
|
|
||||||
speed = 2.4,
|
|
||||||
bezier = "menu_accel",
|
|
||||||
style = "popin 94%"
|
|
||||||
})
|
|
||||||
-- fade
|
|
||||||
hl.animation({
|
|
||||||
leaf = "fadeLayersIn",
|
|
||||||
enabled = true,
|
|
||||||
speed = 0.5,
|
|
||||||
bezier = "menu_decel"
|
|
||||||
})
|
|
||||||
hl.animation({
|
|
||||||
leaf = "fadeLayersOut",
|
|
||||||
enabled = true,
|
|
||||||
speed = 2.7,
|
|
||||||
bezier = "stall"
|
|
||||||
})
|
|
||||||
-- workspaces
|
|
||||||
hl.animation({
|
|
||||||
leaf = "workspaces",
|
|
||||||
enabled = true,
|
|
||||||
speed = 7,
|
|
||||||
bezier = "menu_decel",
|
|
||||||
style = "slide"
|
|
||||||
})
|
|
||||||
-- specialWorkspace
|
|
||||||
hl.animation({
|
|
||||||
leaf = "specialWorkspaceIn",
|
|
||||||
enabled = true,
|
|
||||||
speed = 2.8,
|
|
||||||
bezier = "emphasizedDecel",
|
|
||||||
style = "slidevert"
|
|
||||||
})
|
|
||||||
hl.animation({
|
|
||||||
leaf = "specialWorkspaceOut",
|
|
||||||
enabled = true,
|
|
||||||
speed = 1.2,
|
|
||||||
bezier = "emphasizedAccel",
|
|
||||||
style = "slidevert"
|
|
||||||
})
|
|
||||||
-- zoom
|
|
||||||
hl.animation({
|
|
||||||
leaf = "zoomFactor",
|
|
||||||
enabled = true,
|
|
||||||
speed = 3,
|
|
||||||
bezier = "standardDecel"
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.config({
|
|
||||||
input = {
|
|
||||||
kb_layout = "us",
|
|
||||||
numlock_by_default = true,
|
|
||||||
repeat_delay = 250,
|
|
||||||
repeat_rate = 35,
|
|
||||||
|
|
||||||
follow_mouse = 1,
|
|
||||||
off_window_axis_events = 2,
|
|
||||||
|
|
||||||
touchpad = {
|
|
||||||
natural_scroll = true,
|
|
||||||
disable_while_typing = true,
|
|
||||||
clickfinger_behavior = true,
|
|
||||||
scroll_factor = 0.7
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
misc = {
|
|
||||||
disable_hyprland_logo = true,
|
|
||||||
disable_splash_rendering = true,
|
|
||||||
vrr = 0,
|
|
||||||
mouse_move_enables_dpms = true,
|
|
||||||
key_press_enables_dpms = true,
|
|
||||||
animate_manual_resizes = false,
|
|
||||||
animate_mouse_windowdragging = false,
|
|
||||||
enable_swallow = false,
|
|
||||||
swallow_regex = "(foot|kitty|allacritty|Alacritty)",
|
|
||||||
on_focus_under_fullscreen = 2,
|
|
||||||
allow_session_lock_restore = true,
|
|
||||||
session_lock_xray = true,
|
|
||||||
initial_workspace_tracking = false,
|
|
||||||
focus_on_activate = true
|
|
||||||
},
|
|
||||||
|
|
||||||
binds = {
|
|
||||||
scroll_event_delay = 0,
|
|
||||||
hide_special_on_workspace_change = true
|
|
||||||
},
|
|
||||||
|
|
||||||
cursor = {
|
|
||||||
zoom_factor = 1,
|
|
||||||
zoom_rigid = false,
|
|
||||||
zoom_disable_aa = true,
|
|
||||||
hotspot_padding = 1
|
|
||||||
},
|
|
||||||
|
|
||||||
xwayland = {
|
|
||||||
force_zero_scaling = true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
@@ -1,359 +0,0 @@
|
|||||||
require("hyprland.lib")
|
|
||||||
require("hyprland.variables")
|
|
||||||
if is_file_exists(HOME .. "/.config/hypr/custom/variables.lua") then
|
|
||||||
require("custom.variables")
|
|
||||||
end
|
|
||||||
|
|
||||||
local qsScripts = "$HOME/.config/quickshell/$qsConfig/scripts"
|
|
||||||
local hyprScripts = "$HOME/.config/hypr/hyprland/scripts"
|
|
||||||
local qsIpcCall = "qs -c $qsConfig ipc call"
|
|
||||||
local qsIsAlive = qsIpcCall .. " TEST_ALIVE"
|
|
||||||
|
|
||||||
hl.bind("SUPER + SUPER_L", hl.dsp.global("quickshell:searchToggleRelease"), { description = "Shell: Toggle search" })
|
|
||||||
hl.bind("SUPER + SUPER_R", hl.dsp.global("quickshell:searchToggleRelease"))
|
|
||||||
hl.bind("SUPER + SUPER_L", hl.dsp.exec_cmd(qsIsAlive .. " || pkill fuzzel || fuzzel"))
|
|
||||||
hl.bind("SUPER + SUPER_R", hl.dsp.exec_cmd(qsIsAlive .. " || pkill fuzzel || fuzzel"))
|
|
||||||
|
|
||||||
hl.bind("SUPER_L", hl.dsp.global("quickshell:workspaceNumber"), { ignore_mods = true, transparent = true })
|
|
||||||
hl.bind("SUPER_R", hl.dsp.global("quickshell:workspaceNumber"), { ignore_mods = true, transparent = true })
|
|
||||||
hl.bind("SUPER_L", hl.dsp.global("quickshell:workspaceNumber"),
|
|
||||||
{ ignore_mods = true, transparent = true, release = true })
|
|
||||||
hl.bind("SUPER_R", hl.dsp.global("quickshell:workspaceNumber"),
|
|
||||||
{ ignore_mods = true, transparent = true, release = true })
|
|
||||||
hl.bind("SUPER + Tab", hl.dsp.global("quickshell:overviewWorkspacesToggle"), { description = "Shell: Toggle overview" })
|
|
||||||
hl.bind("SUPER + V", hl.dsp.global("quickshell:overviewClipboardToggle"))
|
|
||||||
hl.bind("SUPER + Period", hl.dsp.global("quickshell:overviewEmojiToggle"))
|
|
||||||
hl.bind("SUPER + A", hl.dsp.global("quickshell:sidebarLeftToggle"), { description = "Shell: Toggle left sidebar" })
|
|
||||||
hl.bind("SUPER + ALT + A", hl.dsp.global("quickshell:sidebarLeftToggleDetach"))
|
|
||||||
hl.bind("SUPER + B", hl.dsp.global("quickshell:sidebarLeftToggle"))
|
|
||||||
hl.bind("SUPER + O", hl.dsp.global("quickshell:sidebarLeftToggle"))
|
|
||||||
hl.bind("SUPER + N", hl.dsp.global("quickshell:sidebarRightToggle"), { description = "Shell: Toggle right sidebar" })
|
|
||||||
hl.bind("SUPER + Slash", hl.dsp.global("quickshell:cheatsheetToggle"), { description = "Shell: Toggle cheatsheet" })
|
|
||||||
hl.bind("SUPER + K", hl.dsp.global("quickshell:oskToggle"), { description = "Shell: Toggle on-screen keyboard" })
|
|
||||||
hl.bind("SUPER + M", hl.dsp.global("quickshell:mediaControlsToggle"), { description = "Shell: Toggle media controls" })
|
|
||||||
hl.bind("SUPER + G", hl.dsp.global("quickshell:overlayToggle"), { description = "Shell: Toggle widget overlay" })
|
|
||||||
hl.bind("CTRL + ALT + Delete", hl.dsp.global("quickshell:sessionToggle"), { description = "Shell: Toggle session menu" })
|
|
||||||
hl.bind("SUPER + J", hl.dsp.global("quickshell:barToggle"), { description = "Shell: Toggle bar" })
|
|
||||||
hl.bind("CTRL + ALT + Delete", hl.dsp.exec_cmd(qsIsAlive .. " || pkill wlogout || wlogout -p layer-shell"))
|
|
||||||
hl.bind("SHIFT + SUPER + ALT + Slash", hl.dsp.exec_cmd("qs -p $HOME/.config/quickshell/$qsConfig/welcome.qml"))
|
|
||||||
|
|
||||||
hl.bind("XF86MonBrightnessUp", hl.dsp.exec_cmd(qsIpcCall .. " brightness increment || brightnessctl s 5%+"),
|
|
||||||
{ locked = true, repeating = true })
|
|
||||||
hl.bind("XF86MonBrightnessDown", hl.dsp.exec_cmd(qsIpcCall .. " brightness decrement || brightnessctl s 5%-"),
|
|
||||||
{ locked = true, repeating = true })
|
|
||||||
hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%+ -l 1.5"),
|
|
||||||
{ locked = true, repeating = true })
|
|
||||||
hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%-"),
|
|
||||||
{ locked = true, repeating = true })
|
|
||||||
|
|
||||||
hl.bind("CTRL + SUPER + T", hl.dsp.global("quickshell:wallpaperSelectorToggle"),
|
|
||||||
{ description = "Shell: Change wallpaper" })
|
|
||||||
hl.bind("CTRL + SUPER + ALT + T", hl.dsp.global("quickshell:wallpaperSelectorRandom"),
|
|
||||||
{ description = "Shell: Random wallpaper" })
|
|
||||||
hl.bind("CTRL + SUPER + SHIFT + D", hl.dsp.global("quickshell:toggleLightDark"),
|
|
||||||
{ description = "Shell: Toggle light/dark mode" })
|
|
||||||
hl.bind("CTRL + SUPER + T", hl.dsp.exec_cmd(qsIsAlive .. " || " .. qsScripts .. "/colors/switchwall.sh"))
|
|
||||||
hl.bind("CTRL + SUPER + R", hl.dsp.exec_cmd("killall ydotool qs quickshell; qs -c $qsConfig &"),
|
|
||||||
{ description = "Shell: Restart widgets" })
|
|
||||||
hl.bind("CTRL + SUPER + P", hl.dsp.global("quickshell:panelFamilyCycle"), { description = "Shell: Cycle panel family" })
|
|
||||||
|
|
||||||
--##! Utilities
|
|
||||||
--# Screenshot, Record, OCR, Color picker, Clipboard history
|
|
||||||
hl.bind("SUPER + V", hl.dsp.exec_cmd(
|
|
||||||
qsIsAlive .. " || pkill fuzzel || cliphist list | fuzzel --match-mode fzf --dmenu | cliphist decode | wl-copy"),
|
|
||||||
{ description = "Utilities: Clipboard history >> clipboard" })
|
|
||||||
hl.bind("SUPER + Period", hl.dsp.exec_cmd(
|
|
||||||
qsIsAlive .. " || pkill fuzzel || " .. hyprScripts .. "/fuzzel-emoji.sh copy"),
|
|
||||||
{ description = "Utilities: Emoji >> clipboard" })
|
|
||||||
hl.bind("SUPER + SHIFT + S", hl.dsp.global("quickshell:regionScreenshot"), { description = "Utilities: Screen snip" })
|
|
||||||
hl.bind("SUPER + SHIFT + S",
|
|
||||||
hl.dsp.exec_cmd(qsIsAlive .. " || pidof slurp || hyprshot --freeze --clipboard-only --mode region --silent"))
|
|
||||||
hl.bind("SUPER + SHIFT + A", hl.dsp.global("quickshell:regionSearch"), { description = "Utilities: Google Lens" })
|
|
||||||
hl.bind("SUPER + SHIFT + A", hl.dsp.exec_cmd(qsIsAlive .. " || pidof slurp || " .. hyprScripts .. "/snip_to_search.sh"))
|
|
||||||
--# OCR
|
|
||||||
hl.bind("SUPER + SHIFT + X", hl.dsp.global("quickshell:regionOcr"),
|
|
||||||
{ description = "Utilities: Character recognition >> clipboard" })
|
|
||||||
hl.bind("SUPER + SHIFT + T", hl.dsp.global("quickshell:screenTranslate"),
|
|
||||||
{ description = "Utilities: Translate screen content" })
|
|
||||||
hl.bind("SUPER + SHIFT + X", hl.dsp.exec_cmd(
|
|
||||||
qsIsAlive ..
|
|
||||||
" || pidof slurp || grim -g \"$(slurp $SLURP_ARGS)\" \"/tmp/ocr_image.png\" && tesseract \"/tmp/ocr_image.png\" stdout -l $(tesseract --list-langs | awk 'NR>1{print $1}' | tr '\\\\n' '+' | sed 's/\\\\+$/\\\\n/') | wl-copy && rm \"/tmp/ocr_image.png\""
|
|
||||||
))
|
|
||||||
--# Color picker
|
|
||||||
hl.bind("SUPER + SHIFT + C", hl.dsp.exec_cmd("hyprpicker -a"),
|
|
||||||
{ description = "Utilities: Pick color #RRGGBB >> clipboard" })
|
|
||||||
--# Recording stuff
|
|
||||||
hl.bind("SUPER + SHIFT + R", hl.dsp.global("quickshell:regionRecord"),
|
|
||||||
{ locked = true, description = "Utilities: Record region (no sound)" })
|
|
||||||
hl.bind("SUPER + SHIFT + R", hl.dsp.exec_cmd(qsIsAlive .. " || " .. qsScripts .. "/videos/record.sh"), { locked = true })
|
|
||||||
hl.bind("SUPER + ALT + R", hl.dsp.global("quickshell:regionRecord"), { locked = true })
|
|
||||||
hl.bind("SUPER + ALT + R", hl.dsp.exec_cmd(qsIsAlive .. " || " .. qsScripts .. "/videos/record.sh"), { locked = true })
|
|
||||||
hl.bind("CTRL + ALT + R", hl.dsp.exec_cmd(qsScripts .. "/videos/record.sh --fullscreen"), { locked = true })
|
|
||||||
hl.bind("SUPER + SHIFT + ALT + R", hl.dsp.exec_cmd(qsScripts .. "/videos/record.sh --fullscreen --sound"),
|
|
||||||
{ locked = true, description = "Utilities: Record screen (with sound)" })
|
|
||||||
--# Fullscreen screenshot
|
|
||||||
local grimhyprctl = "grim -o \"$(hyprctl activeworkspace -j | jq -r '.monitor')\""
|
|
||||||
hl.bind("Print", hl.dsp.exec_cmd(grimhyprctl .. " - | wl-copy"),
|
|
||||||
{ locked = true, description = "Utilities: Screenshot >> clipboard" })
|
|
||||||
hl.bind("CTRL + Print", hl.dsp.exec_cmd(
|
|
||||||
"mkdir -p $(xdg-user-dir PICTURES)/Screenshots && " ..
|
|
||||||
grimhyprctl .. " $(xdg-user-dir PICTURES)/Screenshots/Screenshot_\"$(date '+%Y-%m-%d_%H.%M.%S')\".png"
|
|
||||||
), { locked = true, non_consuming = true, description = "Utilities: Screenshot >> clipboard & file" })
|
|
||||||
hl.bind("CTRL + Print", hl.dsp.exec_cmd(grimhyprctl .. " - | wl-copy"), { locked = true, non_consuming = true })
|
|
||||||
--# AI
|
|
||||||
hl.bind("SUPER + SHIFT + ALT + mouse:273", hl.dsp.exec_cmd(hyprScripts .. "/ai/primary-buffer-query.sh"),
|
|
||||||
{ description = "Utilities: Generate AI summary for selected text" })
|
|
||||||
-- (requires a running ollama model)
|
|
||||||
|
|
||||||
--##! Screen
|
|
||||||
--# Zoom
|
|
||||||
local function zoomfunction(value)
|
|
||||||
local zoomvalue = hl.get_config("cursor:zoom_factor")
|
|
||||||
if (zoomvalue + value) > 3.0 then
|
|
||||||
hl.config({ cursor = { zoom_factor = 3.0 } })
|
|
||||||
elseif (zoomvalue + value) < 1.0 then
|
|
||||||
hl.config({ cursor = { zoom_factor = 1.0 } })
|
|
||||||
else
|
|
||||||
hl.config({ cursor = { zoom_factor = zoomvalue + value } })
|
|
||||||
end
|
|
||||||
end
|
|
||||||
hl.bind("SUPER + Minus", function() zoomfunction(-0.3) end, { repeating = true, description = "Screen: Zoom out" })
|
|
||||||
hl.bind("SUPER + Equal", function() zoomfunction(0.3) end, { repeating = true, description = "Screen: Zoom in" })
|
|
||||||
|
|
||||||
--# Zoom with keypad
|
|
||||||
hl.bind("SUPER + code:82", function() zoomfunction(-0.3) end, { repeating = true })
|
|
||||||
hl.bind("SUPER + code:86", function() zoomfunction(0.3) end, { repeating = true })
|
|
||||||
|
|
||||||
--##! Media
|
|
||||||
local mediaNextCommand =
|
|
||||||
"playerctl next || playerctl position `bc <<< \"100 * $(playerctl metadata mpris:length) / 1000000 / 100\"`"
|
|
||||||
hl.bind("SUPER + SHIFT + N", hl.dsp.exec_cmd(mediaNextCommand), { locked = true, description = "Media: Next track" })
|
|
||||||
hl.bind("XF86AudioNext", hl.dsp.exec_cmd(mediaNextCommand), { locked = true })
|
|
||||||
hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
|
|
||||||
hl.bind("SUPER + SHIFT + ALT + mouse:275", hl.dsp.exec_cmd("playerctl previous"))
|
|
||||||
hl.bind("SUPER + SHIFT + ALT + mouse:276", hl.dsp.exec_cmd(mediaNextCommand))
|
|
||||||
hl.bind("SUPER + SHIFT + B", hl.dsp.exec_cmd("playerctl previous"),
|
|
||||||
{ locked = true, description = "Media: Previous track" })
|
|
||||||
hl.bind("SUPER + SHIFT + P", hl.dsp.exec_cmd("playerctl play-pause"),
|
|
||||||
{ locked = true, description = "Media: Play/pause media" })
|
|
||||||
hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
|
|
||||||
hl.bind("XF86AudioPause", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
|
|
||||||
hl.bind("XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_SINK@ toggle"), { locked = true })
|
|
||||||
hl.bind("SUPER + SHIFT + M", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_SINK@ toggle"),
|
|
||||||
{ locked = true, description = "Media: Toggle mute" })
|
|
||||||
hl.bind("ALT + XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_SOURCE@ toggle"), { locked = true })
|
|
||||||
hl.bind("XF86AudioMicMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_SOURCE@ toggle"), { locked = true })
|
|
||||||
hl.bind("SUPER + ALT + M", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_SOURCE@ toggle"),
|
|
||||||
{ locked = true, description = "Media: Toggle mic" })
|
|
||||||
|
|
||||||
--#!
|
|
||||||
--##! Window
|
|
||||||
--# Focusing
|
|
||||||
hl.bind("SUPER + mouse:272", hl.dsp.window.drag(), { mouse = true, description = "Window: Move" })
|
|
||||||
hl.bind("SUPER + mouse:274", hl.dsp.window.drag(), { mouse = true })
|
|
||||||
hl.bind("SUPER + mouse:273", hl.dsp.window.resize(), { mouse = true, description = "Window: Resize" })
|
|
||||||
--#/# bind = SUPER + ←/↑/→/↓,, -- Focus in direction
|
|
||||||
for i = 1, 4 do
|
|
||||||
local arrowkey = { "Left", "Right", "Up", "Down" }
|
|
||||||
local focusdir = { "l", "r", "u", "d" }
|
|
||||||
hl.bind("SUPER + " .. arrowkey[i], hl.dsp.focus({ direction = focusdir[i] }),
|
|
||||||
{ description = "Window: Focus " .. arrowkey[i] })
|
|
||||||
end
|
|
||||||
for i = 1, 2 do
|
|
||||||
local arrowkey = { "BracketLeft", "BracketRight" }
|
|
||||||
local focusdir = { "l", "r" }
|
|
||||||
hl.bind("SUPER + " .. arrowkey[i], hl.dsp.focus({ direction = focusdir[i] }))
|
|
||||||
end
|
|
||||||
--#/# bind = SUPER + SHIFT, ←/↑/→/↓,, -- Move in direction
|
|
||||||
for i = 1, 4 do
|
|
||||||
local arrowkey = { "Left", "Right", "Up", "Down" }
|
|
||||||
local focusdir = { "l", "r", "u", "d" }
|
|
||||||
hl.bind("SUPER + SHIFT + " .. arrowkey[i], hl.dsp.window.move({ direction = focusdir[i] }),
|
|
||||||
{ description = "Window: Move " .. arrowkey[i] })
|
|
||||||
end
|
|
||||||
|
|
||||||
hl.bind("ALT + F4",
|
|
||||||
function()
|
|
||||||
hl.exec_cmd(
|
|
||||||
"notify-send \"Wrong close keybind\" \"Super+Q to close. Use Alt+F4 for Windows VMs\" -a Hyprland")
|
|
||||||
end,
|
|
||||||
{ non_consuming = true })
|
|
||||||
hl.bind("SUPER + Q", hl.dsp.window.close(), { description = "Window: Close" })
|
|
||||||
hl.bind("SUPER + SHIFT + ALT + Q", hl.dsp.exec_cmd("hyprctl kill"), { description = "Window: Forcefully zap a window" })
|
|
||||||
|
|
||||||
--# Window split ratio
|
|
||||||
--#/# binde = SUPER, ;/',, -- Adjust split ratio
|
|
||||||
hl.bind("SUPER + Semicolon", hl.dsp.layout("splitratio -0.1"), { repeating = true })
|
|
||||||
hl.bind("SUPER + Apostrophe", hl.dsp.layout("splitratio +0.1"), { repeating = true })
|
|
||||||
--# Positioning mode
|
|
||||||
hl.bind("SUPER + ALT + Space", hl.dsp.window.float({ action = "toggle" }), { description = "Window: Float/Tile" })
|
|
||||||
hl.bind("SUPER + D", hl.dsp.window.fullscreen({ mode = "maximized", action = "toggle" }),
|
|
||||||
{ description = "Window: Maximize" })
|
|
||||||
hl.bind("SUPER + F", hl.dsp.window.fullscreen({ mode = "fullscreen", action = "toggle" }),
|
|
||||||
{ description = "Window: Fullscreen" })
|
|
||||||
hl.bind("SUPER + ALT + F", hl.dsp.window.fullscreen_state({ internal = 0, client = 3, action = "toggle" }),
|
|
||||||
{ description = "Window: Fullscreen spoof" })
|
|
||||||
hl.bind("SUPER + P", hl.dsp.window.pin(), { description = "Window: Pin" })
|
|
||||||
|
|
||||||
--#/# bind = SUPER+ALT, Hash,, -- Send to workspace -- (1, 2, 3,...)
|
|
||||||
for i = 1, 10 do
|
|
||||||
hl.bind("SUPER + ALT + " .. (i % 10), function()
|
|
||||||
hl.dispatch(hl.dsp.window.move({ workspace = workspace_in_group(i), follow = false }))
|
|
||||||
end, { description = "Window: Send to workspace " .. i })
|
|
||||||
end
|
|
||||||
--# We also use raw keycodes because some keyboard layouts register number keys as different chars. The codes can be verified with `wev`
|
|
||||||
for i = 1, 10 do
|
|
||||||
local numberkey = { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 }
|
|
||||||
hl.bind("SUPER + ALT + code:" .. numberkey[i], function()
|
|
||||||
hl.dispatch(hl.dsp.window.move({ workspace = workspace_in_group(i), follow = false }))
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
--# keypad numbers
|
|
||||||
for i = 1, 10 do
|
|
||||||
local numpadkey = { 87, 88, 89, 83, 84, 85, 79, 80, 81, 90 }
|
|
||||||
hl.bind("SUPER + ALT + code:" .. numpadkey[i], function()
|
|
||||||
hl.dispatch(hl.dsp.window.move({ workspace = workspace_in_group(i), follow = false }))
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
--# #/# bind = SUPER+SHIFT, Scroll ↑/↓,, -- Send to workspace left/right
|
|
||||||
for i = 1, 4 do
|
|
||||||
local key = { "SUPER + SHIFT + mouse_", "SUPER + ALT + mouse_" }
|
|
||||||
local keycombos = { key[1] .. "down", key[1] .. "up", key[2] .. "down", key[2] .. "up" }
|
|
||||||
local prefix = { "r-", "r+", "r-", "r+" }
|
|
||||||
hl.bind(keycombos[i], hl.dsp.window.move({ workspace = prefix[i] .. "1" }))
|
|
||||||
end
|
|
||||||
|
|
||||||
--#/# bind = SUPER+SHIFT, Page_↑/↓,, -- Send to workspace left/right
|
|
||||||
for i = 1, 2 do
|
|
||||||
local keydirs = { "Up", "Down" }
|
|
||||||
local prefix = { "r-", "r+" }
|
|
||||||
local descdir = { "left", "right" }
|
|
||||||
hl.bind("SUPER + SHIFT + Page_" .. keydirs[i], hl.dsp.window.move({ workspace = prefix[i] .. "1" }), {description = "Window: Send to workspace " .. descdir[i]})
|
|
||||||
end
|
|
||||||
for i = 1, 4 do
|
|
||||||
local key = { "SUPER + ALT + Page_", "CTRL + SUPER + SHIFT + " }
|
|
||||||
local keycombos = { key[1] .. "down", key[1] .. "up", key[2] .. "Right", key[2] .. "Left" }
|
|
||||||
local prefix = { "r+", "r-", "r+", "r-" }
|
|
||||||
hl.bind(keycombos[i], hl.dsp.window.move({ workspace = prefix[i] .. "1" })) -- # [hidden]
|
|
||||||
end
|
|
||||||
|
|
||||||
hl.bind("SUPER + ALT + S",
|
|
||||||
hl.dsp.window.move({ workspace = "special:special", follow = false }), { description = "Window: Send to scratchpad" })
|
|
||||||
hl.bind("CTRL + SUPER + S", hl.dsp.workspace.toggle_special("special"))
|
|
||||||
|
|
||||||
--##! Workspace
|
|
||||||
--# Switching
|
|
||||||
--#/# bind = SUPER, Hash,, -- Focus workspace -- (1, 2, 3,...)
|
|
||||||
for i = 1, 10 do
|
|
||||||
hl.bind("SUPER + " .. (i % 10), function()
|
|
||||||
hl.dispatch(hl.dsp.focus({ workspace = workspace_in_group(i) }))
|
|
||||||
end, { description = "Workspace: Focus " .. i })
|
|
||||||
end
|
|
||||||
--# We also use raw keycodes because some keyboard layouts register number keys as different chars. The codes can be verified with `wev`
|
|
||||||
for i = 1, 10 do
|
|
||||||
local numberkey = { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 }
|
|
||||||
hl.bind("SUPER + code:" .. numberkey[i], function()
|
|
||||||
hl.dispatch(hl.dsp.focus({ workspace = workspace_in_group(i) }))
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
--# keypad numbers
|
|
||||||
for i = 1, 10 do
|
|
||||||
local numpadkey = { 87, 88, 89, 83, 84, 85, 79, 80, 81, 90 }
|
|
||||||
hl.bind("SUPER + code:" .. numpadkey[i], function()
|
|
||||||
hl.dispatch(hl.dsp.focus({ workspace = workspace_in_group(i) }))
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
--#/# bind = CTRL+SUPER, ←/→,, -- Focus left/right
|
|
||||||
--#/# bind = CTRL+SUPER+ALT, ←/→,, -- # [hidden] Focus busy left/right
|
|
||||||
for i = 1, 2 do
|
|
||||||
local keys = { "Left", "Right" }
|
|
||||||
local prefix = { "r-", "r+" }
|
|
||||||
local descdir = { "left", "right" }
|
|
||||||
hl.bind("CTRL + SUPER + " .. keys[i], hl.dsp.focus({ workspace = prefix[i] .. "1" }), {description = "Workspace: Focus " .. descdir[i]})
|
|
||||||
end
|
|
||||||
for i = 1, 2 do
|
|
||||||
local keys = { "Left", "Right" }
|
|
||||||
local prefix = { "m-", "m+" }
|
|
||||||
hl.bind("CTRL + SUPER + ALT + " .. keys[i], hl.dsp.focus({ workspace = prefix[i] .. "1" }))
|
|
||||||
end
|
|
||||||
--#/# bind = SUPER, Page_↑/↓,, -- Focus left/right
|
|
||||||
for i = 1, 4 do
|
|
||||||
local key = { "SUPER + Page_Down", "SUPER + Page_Up" }
|
|
||||||
local keycombos = { key[1], key[2], "CTRL + " .. key[1], "CTRL + " .. key[2] }
|
|
||||||
local prefix = { "r+", "r-", "r+", "r-" }
|
|
||||||
hl.bind(keycombos[i], hl.dsp.focus({ workspace = prefix[i] .. "1" }))
|
|
||||||
end
|
|
||||||
--#/# bind = SUPER, Scroll ↑/↓,, -- Focus left/right
|
|
||||||
for i = 1, 4 do
|
|
||||||
local key = { "SUPER + mouse_up", "SUPER + mouse_down" }
|
|
||||||
local keycombos = { key[1], key[2], "CTRL + " .. key[1], "CTRL + " .. key[2] }
|
|
||||||
local prefix = { "+", "-", "r+", "r-" }
|
|
||||||
hl.bind(keycombos[i], hl.dsp.focus({ workspace = prefix[i] .. "1" }))
|
|
||||||
end
|
|
||||||
--## Special
|
|
||||||
hl.bind("SUPER + S", hl.dsp.workspace.toggle_special("special"), { description = "Workspace: Toggle scratchpad" })
|
|
||||||
hl.bind("SUPER + mouse:275", hl.dsp.workspace.toggle_special("special"))
|
|
||||||
for i = 1, 4 do
|
|
||||||
local key = { "BracketLeft", "BracketRight", "Up", "Down" }
|
|
||||||
local prefix = { "-1", "+1", "r-5", "r+5" }
|
|
||||||
hl.bind("CTRL + SUPER + " .. key[i], hl.dsp.focus({ workspace = prefix[i] }))
|
|
||||||
end
|
|
||||||
|
|
||||||
--##! Virtual machines
|
|
||||||
hl.define_submap("virtual-machine", function()
|
|
||||||
hl.bind("SUPER + ALT + F1", function()
|
|
||||||
local currentsubmap = hl.get_current_submap()
|
|
||||||
if currentsubmap == "virtual-machine" then
|
|
||||||
hl.dispatch(hl.dsp.exec_cmd(
|
|
||||||
"notify-send 'Exited Virtual Machine submap' 'Keybinds re-enabled' -a 'Hyprland'"))
|
|
||||||
hl.dispatch(hl.dsp.submap("reset"))
|
|
||||||
elseif currentsubmap == "" then
|
|
||||||
hl.dispatch(hl.dsp.exec_cmd(
|
|
||||||
"notify-send 'Entered Virtual Machine submap' 'Keybinds disabled. hit SUPER+ALT+F1 to escape' -a 'Hyprland'"))
|
|
||||||
hl.dispatch(hl.dsp.submap("virtual-machine"))
|
|
||||||
end
|
|
||||||
end, { submap_universal = true })
|
|
||||||
end)
|
|
||||||
|
|
||||||
|
|
||||||
--#!
|
|
||||||
--# Testing
|
|
||||||
hl.bind("SUPER + ALT + F11",
|
|
||||||
hl.dsp.exec_cmd(
|
|
||||||
"bash -c 'RANDOM_IMAGE=$(find ~/Pictures -type f | shuf -n 1); ACTION=$(notify-send \"Test notification with body image\" \"This notification should contain your user account <b>image</b> and <a href=\\\"https://discord.com/app\\\">Discord</a> <b>icon</b>. Oh and here is a random image in your Pictures folder: <img src=\\\"$RANDOM_IMAGE\\\" alt=\\\"Testing image\\\"/>\" -a \"Hyprland\" -p -h \"string:image-path:/var/lib/AccountsService/icons/$USER\" -t 6000 -i \"discord\" -A \"openImage=Profile image\" -A \"action2=Open the random image\" -A \"action3=Useless button\"); [[ $ACTION == *openImage ]] && xdg-open \"/var/lib/AccountsService/icons/$USER\"; [[ $ACTION == *action2 ]] && xdg-open \"$RANDOM_IMAGE\"'")
|
|
||||||
) -- # [hidden]
|
|
||||||
hl.bind("SUPER + ALT + F12",
|
|
||||||
hl.dsp.exec_cmd(
|
|
||||||
"bash -c 'RANDOM_IMAGE=$(find ~/Pictures -type f | shuf -n 1); ACTION=$(notify-send \"Test notification\" \"This notification should contain a random image in your <b>Pictures</b> folder and <a href=\\\"https://discord.com/app\\\">Discord</a> <b>icon</b>.\n<i>Flick right to dismiss!</i>\" -a \"Discord (fake)\" -p -h \"string:image-path:$RANDOM_IMAGE\" -t 6000 -i \"discord\" -A \"openImage=Profile image\" -A \"action2=Useless button\"); [[ $ACTION == *openImage ]] && xdg-open \"/var/lib/AccountsService/icons/$USER\"'")
|
|
||||||
) -- # [hidden]
|
|
||||||
hl.bind("SUPER + ALT + Equal",
|
|
||||||
hl.dsp.exec_cmd("notify-send 'Urgent notification' 'Ah hell no' -u critical -a 'Hyprland keybind'")) -- # [hidden]
|
|
||||||
|
|
||||||
--##! Session
|
|
||||||
hl.bind("SUPER + L", hl.dsp.exec_cmd("loginctl lock-session"), { description = "Session: Lock" })
|
|
||||||
hl.bind("SUPER + SHIFT + L", hl.dsp.exec_cmd("systemctl suspend || loginctl suspend"),
|
|
||||||
{ locked = true, description = "Session: Sleep" }) -- Sleep
|
|
||||||
-- hl.bind("switch:on:Lid Switch", hl.dsp.exec_cmd("systemctl suspend || loginctl suspend"), {locked = true} ) -- # [hidden] Suspend when laptop lid is closed, uncomment if for whatever reason it's not the default behavior
|
|
||||||
|
|
||||||
hl.bind("CTRL + SHIFT + ALT + SUPER + Delete", hl.dsp.exec_cmd("systemctl poweroff || loginctl poweroff"),
|
|
||||||
{ description = "Session: Shut down" }) -- # [hidden] Power off
|
|
||||||
|
|
||||||
|
|
||||||
--##! Apps
|
|
||||||
hl.bind("SUPER + Return", hl.dsp.exec_cmd(terminal), { description = "App: Terminal" })
|
|
||||||
hl.bind("SUPER + T", hl.dsp.exec_cmd(terminal))
|
|
||||||
hl.bind("CTRL + ALT + T", hl.dsp.exec_cmd(terminal))
|
|
||||||
hl.bind("SUPER + E", hl.dsp.exec_cmd(fileManager), { description = "App: File manager" })
|
|
||||||
hl.bind("SUPER + W", hl.dsp.exec_cmd(browser), { description = "App: Browser" })
|
|
||||||
hl.bind("SUPER + C", hl.dsp.exec_cmd(codeEditor), { description = "App: Code editor" })
|
|
||||||
hl.bind("CTRL + SUPER + SHIFT + ALT + W", hl.dsp.exec_cmd(officeSoftware), { description = "App: Office software" })
|
|
||||||
hl.bind("SUPER + X", hl.dsp.exec_cmd(textEditor), { description = "App: Text editor" })
|
|
||||||
hl.bind("CTRL + SUPER + V", hl.dsp.exec_cmd(volumeMixer), { description = "App: Volume mixer" })
|
|
||||||
hl.bind("SUPER + I", hl.dsp.exec_cmd(settingsApp), { description = "App: Settings app" })
|
|
||||||
hl.bind("CTRL + SHIFT + Escape", hl.dsp.exec_cmd(taskManager), { description = "App: Task manager" })
|
|
||||||
|
|
||||||
--# Cursed stuff
|
|
||||||
--## Make window not amogus large
|
|
||||||
hl.bind("CTRL + SUPER + Backslash", hl.dsp.window.resize({ x = 640, y = 480, "exact" }))
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
HOME = os.getenv("HOME")
|
|
||||||
|
|
||||||
function is_file_exists(name)
|
|
||||||
local f = io.open(name, "r")
|
|
||||||
if f ~= nil then
|
|
||||||
io.close(f)
|
|
||||||
return true
|
|
||||||
else
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function create_if_not_exists(path)
|
|
||||||
if not is_file_exists(path) then
|
|
||||||
os.execute("mkdir -p \"$(dirname \"" .. path .. "\")\"")
|
|
||||||
os.execute("echo '-- This file will not be overwritten across dots-hyprland updates.\n-- The file name is for the sake of organization and does not matter\n-- See the corresponding files in ~/.config/hypr/hyprland for examples' > \"" .. path .. "\"")
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
function workspace_in_group(i)
|
|
||||||
local curr = hl.get_active_workspace().id
|
|
||||||
local newVal = math.floor((curr - 1) / workspaceGroupSize) * workspaceGroupSize + i
|
|
||||||
-- hl.notification.create({ text = "curr " .. curr .. " floor " .. math.floor(curr / 10) .. " new " .. newVal, duration = 5000 })
|
|
||||||
return newVal
|
|
||||||
end
|
|
||||||
@@ -1,169 +0,0 @@
|
|||||||
-- ######## Window rules ########
|
|
||||||
|
|
||||||
-- Disable blur for xwayland context menus
|
|
||||||
hl.window_rule({match = {class = "^()$", title = "^()$" }, no_blur = true })
|
|
||||||
|
|
||||||
-- Disable blur for every window
|
|
||||||
hl.window_rule({match = {class = ".*" }, no_blur = true })
|
|
||||||
|
|
||||||
-- Floating
|
|
||||||
hl.window_rule({match = {title = "^(Open File)(.*)$" }, center = true})
|
|
||||||
hl.window_rule({match = {title = "^(Open File)(.*)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^(Select a File)(.*)$" }, center = true})
|
|
||||||
hl.window_rule({match = {title = "^(Select a File)(.*)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^(Choose wallpaper)(.*)$" }, center = true})
|
|
||||||
hl.window_rule({match = {title = "^(Choose wallpaper)(.*)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^(Choose wallpaper)(.*)$" }, size = {"(monitor_w*0.60)", "(monitor_h*0.65)"} })
|
|
||||||
hl.window_rule({match = {title = "^(Open Folder)(.*)$" }, center = true})
|
|
||||||
hl.window_rule({match = {title = "^(Open Folder)(.*)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^(Save As)(.*)$" }, center = true})
|
|
||||||
hl.window_rule({match = {title = "^(Save As)(.*)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^(Library)(.*)$" }, center = true})
|
|
||||||
hl.window_rule({match = {title = "^(Library)(.*)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^(File Upload)(.*)$" }, center = true})
|
|
||||||
hl.window_rule({match = {title = "^(File Upload)(.*)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^(.*)(wants to save)$" }, center = true})
|
|
||||||
hl.window_rule({match = {title = "^(.*)(wants to save)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^(.*)(wants to open)$" }, center = true})
|
|
||||||
hl.window_rule({match = {title = "^(.*)(wants to open)$" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "^(blueberry\\.py)$" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "^(guifetch)$" }, float = true}) -- FlafyDev/guifetch
|
|
||||||
hl.window_rule({match = {class = "^(pavucontrol)$" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "^(pavucontrol)$" }, size = {"(monitor_w*0.45)", "(monitor_h*0.45)"} })
|
|
||||||
hl.window_rule({match = {class = "^(pavucontrol)$" }, center = true})
|
|
||||||
hl.window_rule({match = {class = "^(org.pulseaudio.pavucontrol)$" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "^(org.pulseaudio.pavucontrol)$" }, size = {"(monitor_w*0.45)", "(monitor_h*0.45)"} })
|
|
||||||
hl.window_rule({match = {class = "^(org.pulseaudio.pavucontrol)$" }, center = true})
|
|
||||||
hl.window_rule({match = {class = "^(nm-connection-editor)$" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "^(nm-connection-editor)$" }, size = {"(monitor_w*0.45)", "(monitor_h*0.45)"} })
|
|
||||||
hl.window_rule({match = {class = "^(nm-connection-editor)$" }, center = true})
|
|
||||||
hl.window_rule({match = {class = ".*plasmawindowed.*" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "kcm_.*" }, float = true})
|
|
||||||
hl.window_rule({match = {class = ".*bluedevilwizard" }, float = true})
|
|
||||||
hl.window_rule({match = {title = ".*Welcome" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^(illogical-impulse Settings)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = ".*Shell conflicts.*" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "org.freedesktop.impl.portal.desktop.kde" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "org.freedesktop.impl.portal.desktop.kde" }, size = {"(monitor_w*0.60)", "(monitor_h*0.65)"} })
|
|
||||||
hl.window_rule({match = {class = "^(Zotero)$" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "^(Zotero)$" }, size = {"(monitor_w*0.45)", "(monitor_h*0.45)"} })
|
|
||||||
|
|
||||||
-- Move
|
|
||||||
-- kde-material-you-colors spawns a window when changing dark/light theme. This is to make sure it doesn't interfere at all.
|
|
||||||
hl.window_rule({match = {class = "^(plasma-changeicons)$" }, float = true})
|
|
||||||
hl.window_rule({match = {class = "^(plasma-changeicons)$" }, no_initial_focus = true})
|
|
||||||
hl.window_rule({match = {class = "^(plasma-changeicons)$" }, move = {999999, 999999}})
|
|
||||||
-- stupid dolphin copy
|
|
||||||
hl.window_rule({match = {title = "^(Copying — Dolphin)$" }, move = {40, 80}})
|
|
||||||
|
|
||||||
-- Tiling
|
|
||||||
hl.window_rule({match = {class = "^dev\\.warp\\.Warp$" }, tile = true})
|
|
||||||
|
|
||||||
-- Picture-in-Picture
|
|
||||||
hl.window_rule({match = {title = "^([Pp]icture[-\\s]?[Ii]n[-\\s]?[Pp]icture)(.*)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^([Pp]icture[-\\s]?[Ii]n[-\\s]?[Pp]icture)(.*)$" }, keep_aspect_ratio = true})
|
|
||||||
hl.window_rule({match = {title = "^([Pp]icture[-\\s]?[Ii]n[-\\s]?[Pp]icture)(.*)$" }, move = {"(monitor_w*0.73)", "(monitor_h*0.72)"} })
|
|
||||||
hl.window_rule({match = {title = "^([Pp]icture[-\\s]?[Ii]n[-\\s]?[Pp]icture)(.*)$" }, size = {"(monitor_w*0.25)", "(monitor_h*0.25)"} })
|
|
||||||
hl.window_rule({match = {title = "^([Pp]icture[-\\s]?[Ii]n[-\\s]?[Pp]icture)(.*)$" }, float = true})
|
|
||||||
hl.window_rule({match = {title = "^([Pp]icture[-\\s]?[Ii]n[-\\s]?[Pp]icture)(.*)$" }, pin = true})
|
|
||||||
|
|
||||||
-- Screen sharing
|
|
||||||
hl.window_rule({match = {title = ".*is sharing (a window|your screen).*" }, float = true})
|
|
||||||
hl.window_rule({match = {title = ".*is sharing (a window|your screen).*" }, pin = true})
|
|
||||||
hl.window_rule({match = {title = ".*is sharing (a window|your screen).*" }, move = {"(monitor_w*.5-window_w*.5)", "(monitor_h-window_h-12)"} })
|
|
||||||
|
|
||||||
-- --- Tearing ---
|
|
||||||
hl.window_rule({match = {title = ".*\\.exe" }, immediate = true})
|
|
||||||
hl.window_rule({match = {title = ".*minecraft.*" }, immediate = true})
|
|
||||||
hl.window_rule({match = {class = "^(steam_app).*" }, immediate = true})
|
|
||||||
|
|
||||||
-- No shadow for tiled windows
|
|
||||||
hl.window_rule({match = {float = 0 }, no_shadow = true})
|
|
||||||
|
|
||||||
-- ######## Workspace rules ########
|
|
||||||
hl.workspace_rule({ workspace = "special:special", gaps_out = 30 })
|
|
||||||
|
|
||||||
-- ######## Layer rules ########
|
|
||||||
hl.layer_rule({ match = { namespace = ".*" }, xray = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "walker" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "selection" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "overview" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "anyrun" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "indicator.*" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "osk" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "hyprpicker" }, no_anim = true})
|
|
||||||
|
|
||||||
hl.layer_rule({ match = { namespace = "noanim" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "gtk-layer-shell" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "gtk-layer-shell" }, ignore_alpha = 0})
|
|
||||||
hl.layer_rule({ match = { namespace = "launcher" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "launcher" }, ignore_alpha = 0.5})
|
|
||||||
hl.layer_rule({ match = { namespace = "notifications" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "notifications" }, ignore_alpha = 0.69})
|
|
||||||
hl.layer_rule({ match = { namespace = "logout_dialog" }, blur = true}) -- wlogout
|
|
||||||
|
|
||||||
-- ags
|
|
||||||
hl.layer_rule({ match = { namespace = "sideleft.*" }, animation = "slide left"})
|
|
||||||
hl.layer_rule({ match = { namespace = "sideright.*" }, animation = "slide right"})
|
|
||||||
hl.layer_rule({ match = { namespace = "session[0-9]*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "bar[0-9]*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "bar[0-9]*" }, ignore_alpha = 0.6})
|
|
||||||
hl.layer_rule({ match = { namespace = "barcorner.*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "barcorner.*" }, ignore_alpha = 0.6})
|
|
||||||
hl.layer_rule({ match = { namespace = "dock[0-9]*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "dock[0-9]*" }, ignore_alpha = 0.6})
|
|
||||||
hl.layer_rule({ match = { namespace = "indicator.*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "indicator.*" }, ignore_alpha = 0.6})
|
|
||||||
hl.layer_rule({ match = { namespace = "overview[0-9]*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "overview[0-9]*" }, ignore_alpha = 0.6})
|
|
||||||
hl.layer_rule({ match = { namespace = "cheatsheet[0-9]*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "cheatsheet[0-9]*" }, ignore_alpha = 0.6})
|
|
||||||
hl.layer_rule({ match = { namespace = "sideright[0-9]*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "sideright[0-9]*" }, ignore_alpha = 0.6})
|
|
||||||
hl.layer_rule({ match = { namespace = "sideleft[0-9]*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "sideleft[0-9]*" }, ignore_alpha = 0.6})
|
|
||||||
hl.layer_rule({ match = { namespace = "indicator.*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "indicator.*" }, ignore_alpha = 0.6})
|
|
||||||
hl.layer_rule({ match = { namespace = "osk[0-9]*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "osk[0-9]*" }, ignore_alpha = 0.6})
|
|
||||||
|
|
||||||
-- Quickshell
|
|
||||||
-- Quickshell: illogical-impulse
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:.*" }, blur_popups = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:.*" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:.*" }, ignore_alpha = 0.79})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:bar" }, animation = "slide"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:actionCenter" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:cheatsheet" }, animation = "slide bottom"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:dock" }, animation = "slide bottom"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:screenCorners" }, animation = "popin 120%"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:lockWindowPusher" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:notificationPopup" }, animation = "fade"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:overlay" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:overlay" }, ignore_alpha = 1})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:overview" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:osk" }, animation = "slide bottom"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:polkit" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:popup" }, xray = false}) -- No weird color for bar tooltips (this in theory should suffice)
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:popup" }, ignore_alpha = 1}) -- No weird color for bar tooltips (but somehow this is necessary)
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:mediaControls" }, ignore_alpha = 1}) -- Same as above
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:reloadPopup" }, animation = "slide"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:regionSelector" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:screenshot" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:session" }, blur = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:session" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:session" }, ignore_alpha = 0})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:sidebarRight" }, animation = "slide right"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:sidebarLeft" }, animation = "slide left"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:verticalBar" }, animation = "slide"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:osk" }, order = -1})
|
|
||||||
-- Quickshell: waffles
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:wallpaperSelector" }, animation = "slide top"})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:wNotificationCenter" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:wOnScreenDisplay" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:wStartMenu" }, no_anim = true})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:wTaskView" }, ignore_alpha = 0})
|
|
||||||
hl.layer_rule({ match = { namespace = "quickshell:wTaskView" }, no_anim = true})
|
|
||||||
|
|
||||||
-- Launchers need to be FAST
|
|
||||||
hl.layer_rule({ match = { namespace = "gtk4-layer-shell" }, no_anim = true})
|
|
||||||
@@ -1,201 +0,0 @@
|
|||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright [yyyy] [name of copyright owner]
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Default system prompt
|
|
||||||
SYSTEM_PROMPT="You are a helpful, quick assistant that provides brief and concise explanation \
|
|
||||||
to given content in at most 100 characters. If the given content is not in English, translate \
|
|
||||||
it to English. If the content is an English word, provide its meaning. If the content is a name, \
|
|
||||||
provide some info about it. For a math expression, provide a simplification, \
|
|
||||||
each step on a line following this style: \`2x=11 (subtract 7 from both sides)\`. \
|
|
||||||
If you do not know the answer, simply say 'No info available'. \
|
|
||||||
Only respond for the appropriate case and use as little text as possible.\
|
|
||||||
The content:"
|
|
||||||
|
|
||||||
first_loaded_model=$("$(dirname "$0")/show-loaded-ollama-models.sh" -j | jq -r '.[0].model' 2>/dev/null) || first_loaded_model=""
|
|
||||||
model=${first_loaded_model:-"llama3.2"}
|
|
||||||
|
|
||||||
# Parse command-line arguments
|
|
||||||
while [[ "$#" -gt 0 ]]; do
|
|
||||||
case $1 in
|
|
||||||
--model) model="$2"; shift ;; # Set the model from the flag
|
|
||||||
*) echo "Unknown parameter: $1"; exit 1 ;;
|
|
||||||
esac
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
# Combine the system prompt with the clipboard content
|
|
||||||
content=$(wl-paste -p | tr '\n' ' ' | head -c 2000) # 2000 char limit to prevent overflow
|
|
||||||
|
|
||||||
# Properly escape content for JSON using jq
|
|
||||||
prompt_json=$(jq -n --arg system_prompt "$SYSTEM_PROMPT" --arg content "$content" '$system_prompt + " " + $content')
|
|
||||||
|
|
||||||
# Make the API call with the specified or default model
|
|
||||||
api_payload=$(jq -n --arg model "$model" --argjson prompt "$prompt_json" --argjson stream false \
|
|
||||||
'{model: $model, prompt: $prompt, stream: $stream}')
|
|
||||||
response=$(curl -s http://localhost:11434/api/generate -d "$api_payload" | jq -r '.response' 2>/dev/null)
|
|
||||||
|
|
||||||
# Check if content is a single line and no longer than 30 characters
|
|
||||||
if [[ ${#content} -le 30 && "$content" != *$'\n'* ]]; then
|
|
||||||
notify-send --app-name="Text selection query" --expire-time=10000 \
|
|
||||||
"$content" "$response"
|
|
||||||
else
|
|
||||||
notify-send --app-name="Text selection query" --expire-time=10000 \
|
|
||||||
"AI Response" "$response"
|
|
||||||
fi
|
|
||||||
@@ -1,99 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# From strikeoncmputrz/LLM_Scripts
|
|
||||||
# License: Apache-2.0, can be found in the same folder as this script
|
|
||||||
|
|
||||||
# Global Vars
|
|
||||||
ollama_url=http://localhost
|
|
||||||
port="11434"
|
|
||||||
blobs=()
|
|
||||||
model_name_paths=()
|
|
||||||
|
|
||||||
|
|
||||||
#Parse arguments
|
|
||||||
while [ "$#" -gt 0 ]; do
|
|
||||||
case $1 in
|
|
||||||
-h|--help)
|
|
||||||
echo
|
|
||||||
echo " Identifies Ollama models running on this operating system by parsing running processes."
|
|
||||||
echo
|
|
||||||
echo " Usage: $0 [options]"
|
|
||||||
echo
|
|
||||||
echo " Options:"
|
|
||||||
echo " -j, --json_output Prints result as a json object. Other output disabled. (Default: false)"
|
|
||||||
echo " -p, --port [port number] Specify Ollama Server port (Default: 11434)"
|
|
||||||
echo " -u, --ollama_url [url] Specify Ollama Server URL (Default: http://localhost)"
|
|
||||||
echo
|
|
||||||
echo " Dependencies: jq"
|
|
||||||
exit 0
|
|
||||||
;;
|
|
||||||
-j|--json_output)
|
|
||||||
json_out=1
|
|
||||||
shift 1
|
|
||||||
;;
|
|
||||||
-u|--ollama_url)
|
|
||||||
ollama_url=$2
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
-p|--port)
|
|
||||||
port=$2
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Unknown option: $1"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
compare_running_models_and_modelfiles() {
|
|
||||||
json_match=()
|
|
||||||
json_output=()
|
|
||||||
local matching_models=()
|
|
||||||
OLDIFS=$IFS
|
|
||||||
for ((i=0; i<${#model_name_paths[@]}; i++)); do # Iterate over the array of modelname,blob-path
|
|
||||||
for blob in "${blobs[@]}"; do
|
|
||||||
IFS=',', read -ra fields <<< "${model_name_paths[i]}" # Split the string into parts
|
|
||||||
if [ "${fields[1]}" == "$blob" ]; then # Check if current 'field' matches a blob
|
|
||||||
matching_models+=( '{ "model": "'"${fields[0]}"'", "path": "'"${fields[1]}"'"}') # Add to list of matching models
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ -z "$json_out" ]; then
|
|
||||||
echo -e "\nModel Found: \n $(echo ${matching_models[*]} | jq '.' | sed s/[{}]//g) \n"
|
|
||||||
else
|
|
||||||
local json_match="${matching_models[*]}"
|
|
||||||
json_output=$(echo $json_match | jq -c -s .)
|
|
||||||
echo "$json_output"
|
|
||||||
fi
|
|
||||||
IFS=$OLDIFS
|
|
||||||
}
|
|
||||||
|
|
||||||
get_running_model_paths() {
|
|
||||||
blobs=$(ps aux | grep -- '--model' | grep -v grep | grep -Po '(?<=--model\s).*' | cut -d ' ' -f1)
|
|
||||||
if [ -z "$blobs" ]; then
|
|
||||||
echo -e "\n\n Warning: No running Ollama models detected!\n"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
parse_modelfiles() {
|
|
||||||
if [ -z "$json_out" ]; then
|
|
||||||
echo -e "\nConnecting to $ollama_url:$port\n"
|
|
||||||
if [ -z "$(curl -s $ollama_url:$port)" ]; then
|
|
||||||
echo -e "Could not connect to Ollama. Check the ollama_url parameter and that the server is running\n"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
curl -s "$ollama_url:$port"
|
|
||||||
fi
|
|
||||||
local models=( $(curl -s "$ollama_url:$port/api/tags" | jq -r '.models[].name') )
|
|
||||||
for model in "${models[@]}"; do
|
|
||||||
local modelfile=$(curl -s "$ollama_url:$port/api/show" -d '{ "name": "'"$model"'", "modelfile": true }' | jq -r '.modelfile')
|
|
||||||
model_name_paths+=($model,$(echo "$modelfile" | awk '/^FROM/{print $2}'))
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
parse_modelfiles
|
|
||||||
get_running_model_paths
|
|
||||||
compare_running_models_and_modelfiles
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
for cmd in "$@"; do
|
|
||||||
[[ -z "$cmd" ]] && continue
|
|
||||||
eval "command -v ${cmd%% *}" >/dev/null 2>&1 || continue
|
|
||||||
eval "$cmd" &
|
|
||||||
exit
|
|
||||||
done
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
grim -g "$(slurp)" /tmp/image.png
|
|
||||||
imageLink=$(curl -sF files[]=@/tmp/image.png 'https://uguu.se/upload' | jq -r '.files[0].url')
|
|
||||||
xdg-open "https://lens.google.com/uploadbyurl?url=${imageLink}"
|
|
||||||
rm /tmp/image.png
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Check if GeoClue agent is already running
|
|
||||||
if pgrep -f 'geoclue-2.0/demos/agent' > /dev/null; then
|
|
||||||
echo "GeoClue agent is already running."
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# List of known possible GeoClue agent paths
|
|
||||||
AGENT_PATHS=(
|
|
||||||
/usr/libexec/geoclue-2.0/demos/agent
|
|
||||||
/usr/lib/geoclue-2.0/demos/agent
|
|
||||||
"$HOME/.nix-profile/libexec/geoclue-2.0/demos/agent"
|
|
||||||
"$HOME/.nix-profile/lib/geoclue-2.0/demos/agent"
|
|
||||||
/run/current-system/sw/libexec/geoclue-2.0/demos/agent
|
|
||||||
)
|
|
||||||
|
|
||||||
# Find the first valid agent path
|
|
||||||
for path in "${AGENT_PATHS[@]}"; do
|
|
||||||
if [ -x "$path" ]; then
|
|
||||||
echo "Starting GeoClue agent from: $path"
|
|
||||||
"$path" & # starts in the background
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
# If we got here, none of the paths worked
|
|
||||||
echo "GeoClue agent not found in known paths."
|
|
||||||
echo "Please install GeoClue or update the script with the correct path."
|
|
||||||
exit 1
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
require("hyprland/lib")
|
|
||||||
|
|
||||||
hl.on("hyprland.start", function()
|
|
||||||
local homeDir = os.getenv("HOME")
|
|
||||||
if string.len(homeDir) == 0 then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
local baseCustomDir = homeDir .. "/.config/hypr/custom"
|
|
||||||
local files = {
|
|
||||||
baseCustomDir .. "/env.lua",
|
|
||||||
baseCustomDir .. "/execs.lua",
|
|
||||||
baseCustomDir .. "/general.lua",
|
|
||||||
baseCustomDir .. "/keybinds.lua",
|
|
||||||
baseCustomDir .. "/rules.lua",
|
|
||||||
baseCustomDir .. "/variables.lua"
|
|
||||||
}
|
|
||||||
local createdFiles = 0
|
|
||||||
for _, file in ipairs(files) do
|
|
||||||
if not is_file_exists(file) then
|
|
||||||
create_if_not_exists(file)
|
|
||||||
createdFiles = createdFiles + 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if createdFiles > 0 then
|
|
||||||
-- hl.exec_cmd("notify-send 'Hyprland config' 'Created " .. createdFiles .. " custom Hyprland config files in " .. baseCustomDir .. "' -a 'Hyprland'")
|
|
||||||
-- hl.exec_cmd("hyprctl reload")
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
require("hyprland/services/create_custom_config")
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
-- DO NOT EDIT THIS FILE. IT IS MANAGED BY THE SHELL AND FOLLOWS STRICT RULES
|
|
||||||
-- In other words, I ain't writing a lua parser for this, so please be a good boi/girl/whatever
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
-- Default variables
|
|
||||||
-- Copy these to ~/.config/hypr/custom/variables.lua to make changes in a dotfiles-update-friendly manner
|
|
||||||
|
|
||||||
-- The folder within ~/.config/quickshell containing the config
|
|
||||||
hl.env("qsConfig", "ii")
|
|
||||||
|
|
||||||
-- Apps
|
|
||||||
-- PULL REQUESTS ADDING MORE WILL NOT BE ACCEPTED, CONFIG FOR YOURSELF
|
|
||||||
terminal = "~/.config/hypr/hyprland/scripts/launch_first_available.sh 'foot' 'kitty -1' 'alacritty' 'wezterm' 'konsole' 'kgx' 'uxterm' 'xterm'"
|
|
||||||
fileManager = "~/.config/hypr/hyprland/scripts/launch_first_available.sh 'dolphin' 'nautilus' 'nemo' 'thunar' 'kitty -1 fish -c yazi'"
|
|
||||||
browser = "~/.config/hypr/hyprland/scripts/launch_first_available.sh 'google-chrome-stable' 'zen-browser' 'firefox' 'brave' 'chromium' 'microsoft-edge-stable' 'opera' 'librewolf'"
|
|
||||||
codeEditor = "~/.config/hypr/hyprland/scripts/launch_first_available.sh 'windsurf' 'antigravity' 'code' 'codium' 'cursor' 'zed' 'zedit' 'zeditor' 'kate' 'gnome-text-editor' 'emacs' 'command -v nvim && kitty -1 nvim' 'command -v micro && kitty -1 micro'"
|
|
||||||
officeSoftware = "~/.config/hypr/hyprland/scripts/launch_first_available.sh 'wps' 'onlyoffice-desktopeditors' 'libreoffice'"
|
|
||||||
textEditor = "~/.config/hypr/hyprland/scripts/launch_first_available.sh 'kate' 'gnome-text-editor' 'emacs'"
|
|
||||||
volumeMixer = "~/.config/hypr/hyprland/scripts/launch_first_available.sh 'pavucontrol-qt' 'pavucontrol'"
|
|
||||||
settingsApp = "XDG_CURRENT_DESKTOP=gnome ~/.config/hypr/hyprland/scripts/launch_first_available.sh 'qs -p ~/.config/quickshell/$qsConfig/settings.qml' 'systemsettings' 'gnome-control-center' 'better-control'"
|
|
||||||
taskManager = "~/.config/hypr/hyprland/scripts/launch_first_available.sh 'gnome-system-monitor' 'plasma-systemmonitor --page-name Processes' 'command -v btop && kitty -1 fish -c btop'"
|
|
||||||
|
|
||||||
workspaceGroupSize = 10
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
source=~/.config/hypr/hyprlock/colors.conf
|
|
||||||
|
|
||||||
background {
|
|
||||||
color = rgba(181818FF)
|
|
||||||
}
|
|
||||||
input-field {
|
|
||||||
monitor =
|
|
||||||
size = 250, 50
|
|
||||||
outline_thickness = 2
|
|
||||||
dots_size = 0.1
|
|
||||||
dots_spacing = 0.3
|
|
||||||
outer_color = $entry_border_color
|
|
||||||
inner_color = $entry_background_color
|
|
||||||
font_color = $entry_color
|
|
||||||
fade_on_empty = true
|
|
||||||
|
|
||||||
position = 0, 20
|
|
||||||
halign = center
|
|
||||||
valign = center
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
monitor =
|
|
||||||
text = $LAYOUT
|
|
||||||
color = $text_color
|
|
||||||
font_size = 14
|
|
||||||
font_family = $font_family
|
|
||||||
position = -30, 30
|
|
||||||
halign = right
|
|
||||||
valign = bottom
|
|
||||||
}
|
|
||||||
|
|
||||||
label { # Caps Lock Warning
|
|
||||||
monitor =
|
|
||||||
text = cmd[update:250] ${XDG_CONFIG_HOME:-$HOME/.config}/hypr/hyprlock/check-capslock.sh
|
|
||||||
color = $text_color
|
|
||||||
font_size = 13
|
|
||||||
font_family = $font_family
|
|
||||||
position = 0, -25
|
|
||||||
halign = center
|
|
||||||
valign = center
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
label { # Clock
|
|
||||||
monitor =
|
|
||||||
text = $TIME
|
|
||||||
color = $text_color
|
|
||||||
font_size = 65
|
|
||||||
font_family = $font_family_clock
|
|
||||||
|
|
||||||
position = 0, 300
|
|
||||||
halign = center
|
|
||||||
valign = center
|
|
||||||
}
|
|
||||||
label { # Date
|
|
||||||
monitor =
|
|
||||||
text = cmd[update:5000] date +"%A, %B %d"
|
|
||||||
color = $text_color
|
|
||||||
font_size = 17
|
|
||||||
font_family = $font_family_clock
|
|
||||||
|
|
||||||
position = 0, 240
|
|
||||||
halign = center
|
|
||||||
valign = center
|
|
||||||
}
|
|
||||||
|
|
||||||
label { # User
|
|
||||||
monitor =
|
|
||||||
text = $USER
|
|
||||||
color = $text_color
|
|
||||||
outline_thickness = 2
|
|
||||||
dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8
|
|
||||||
dots_spacing = 0.2 # Scale of dots' absolute size, 0.0 - 1.0
|
|
||||||
dots_center = true
|
|
||||||
font_size = 20
|
|
||||||
font_family = $font_family
|
|
||||||
position = 0, 50
|
|
||||||
halign = center
|
|
||||||
valign = bottom
|
|
||||||
}
|
|
||||||
|
|
||||||
label { # Status
|
|
||||||
monitor =
|
|
||||||
text = cmd[update:5000] ${XDG_CONFIG_HOME:-$HOME/.config}/hypr/hyprlock/status.sh
|
|
||||||
color = $text_color
|
|
||||||
font_size = 14
|
|
||||||
font_family = $font_family
|
|
||||||
|
|
||||||
position = 30, -30
|
|
||||||
halign = left
|
|
||||||
valign = top
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
#!/bin/env bash
|
|
||||||
|
|
||||||
MAIN_KB_CAPS=$(hyprctl devices | grep -B 6 "main: yes" | grep "capsLock" | head -1 | awk '{print $2}')
|
|
||||||
|
|
||||||
if [ "$MAIN_KB_CAPS" = "yes" ]; then
|
|
||||||
echo "Caps Lock active"
|
|
||||||
else
|
|
||||||
echo ""
|
|
||||||
fi
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# This configuration is generated by matugen
|
|
||||||
# Changing these variables with matugen still enabled will overwrite them.
|
|
||||||
|
|
||||||
$text_color = rgba(d9e2ffFF)
|
|
||||||
$entry_background_color = rgba(00194411)
|
|
||||||
$entry_border_color = rgba(8f909955)
|
|
||||||
$entry_color = rgba(d9e2ffFF)
|
|
||||||
$font_family = Google Sans Flex Medium
|
|
||||||
$font_family_clock = Google Sans Flex Medium
|
|
||||||
$font_material_symbols = Material Symbols Rounded
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
############ Variables ############
|
|
||||||
enable_battery=false
|
|
||||||
battery_charging=false
|
|
||||||
|
|
||||||
####### Check availability ########
|
|
||||||
for battery in /sys/class/power_supply/*BAT*; do
|
|
||||||
if [[ -f "$battery/uevent" ]]; then
|
|
||||||
enable_battery=true
|
|
||||||
if [[ $(cat /sys/class/power_supply/*/status | head -1) == "Charging" ]]; then
|
|
||||||
battery_charging=true
|
|
||||||
fi
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
############# Output #############
|
|
||||||
if [[ $enable_battery == true ]]; then
|
|
||||||
if [[ $battery_charging == true ]]; then
|
|
||||||
echo -n "(+) "
|
|
||||||
fi
|
|
||||||
echo -n "$(cat /sys/class/power_supply/*/capacity | head -1)"%
|
|
||||||
if [[ $battery_charging == false ]]; then
|
|
||||||
echo -n " remaining"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo ''
|
|
||||||
@@ -1,76 +0,0 @@
|
|||||||
[CUSTOM]
|
|
||||||
# INSTRUCTIONS
|
|
||||||
# Run kde-material-you-colors with no arguments from terminal
|
|
||||||
# to debug your configuration changing in real time.
|
|
||||||
|
|
||||||
# Monitor to get wallpaper from
|
|
||||||
# For me main is 0 but second one is 6, play with this to find yours
|
|
||||||
# Default is 0
|
|
||||||
monitor = 0
|
|
||||||
|
|
||||||
# File containing absolute path of an image (Takes precedence over automatic wallpaper detection)
|
|
||||||
# Commented by default
|
|
||||||
file = ~/.local/state/quickshell/user/generated/wallpaper/path.txt
|
|
||||||
|
|
||||||
# List of 7 space separated colors (hex or rgb) to be used for text in pywal/konsole/KSyntaxHighlighting instead of wallpaper ones
|
|
||||||
# Accepted values are hex e.g #ff0000 and rgb e.g 255,0,0 colors (rgb is converted to hex)
|
|
||||||
# Commented by default
|
|
||||||
# Example using catppuccin color scheme:
|
|
||||||
custom_colors_list = #ED8796 #A6DA95 #EED49F #8AADF4 #F5BDE6 #8BD5CA #f5a97f
|
|
||||||
|
|
||||||
# Enable Light mode
|
|
||||||
# Accepted values are True or False
|
|
||||||
# Commented by default to follow System Color Setting (Material You Light/Dark only)
|
|
||||||
# NOTE:
|
|
||||||
# Will fallback to dark mode if not defined here or enabled in Settings
|
|
||||||
#light = False
|
|
||||||
|
|
||||||
# Alternative color mode (default is 0), some images return more than one color, this will use either the matched or last color
|
|
||||||
# Default is 0
|
|
||||||
ncolor = 0
|
|
||||||
|
|
||||||
# Light scheme icons theme
|
|
||||||
#iconslight = OneUI-light
|
|
||||||
iconslight = breeze-plus
|
|
||||||
|
|
||||||
# Dark scheme icons theme
|
|
||||||
#iconsdark = OneUI-dark
|
|
||||||
iconsdark = breeze-plus-dark
|
|
||||||
|
|
||||||
# Use pywal to theme other programs using Material You colors
|
|
||||||
pywal=False
|
|
||||||
|
|
||||||
# The amount of perceptible color for backgrounds in dark mode
|
|
||||||
# A number between 0 and 4.0 (limited for accessibility purposes)
|
|
||||||
# Defaults to 1 if not set
|
|
||||||
#light_blend_multiplier = 1.0
|
|
||||||
|
|
||||||
# The amount of perceptible color for backgrounds in dark mode
|
|
||||||
# A number between 0 and 4.0 (limited for accessibility purposes)
|
|
||||||
# Defaults to 1 if not set
|
|
||||||
#dark_blend_multiplier = 1.0
|
|
||||||
|
|
||||||
# A script/command that will be executed on start or wallpaper/dark/light/settings change
|
|
||||||
# example below using https://github.com/vlevit/notify-send.sh to send a desktop notification:
|
|
||||||
#on_change_hook = notify-send.sh "kde-material-you-colors" "This is a test" -t 2000
|
|
||||||
|
|
||||||
# Scheme Variant
|
|
||||||
# Changes between Material You scheme variants (0-8)
|
|
||||||
# 0 = Content
|
|
||||||
# 1 = Expressive
|
|
||||||
# 2 = Fidelity
|
|
||||||
# 3 = Monochrome
|
|
||||||
# 4 = Neutral
|
|
||||||
# 5 = TonalSpot
|
|
||||||
# 6 = Vibrant
|
|
||||||
# 7 = Rainbow
|
|
||||||
# 8 = FruitSalad
|
|
||||||
# Default is 5
|
|
||||||
scheme_variant = 5
|
|
||||||
|
|
||||||
# Colorfulness
|
|
||||||
chroma_multiplier = 1
|
|
||||||
|
|
||||||
# Brightness
|
|
||||||
# An integer between 0.5 and 1.5
|
|
||||||
tone_multiplier = 1
|
|
||||||
@@ -1,184 +0,0 @@
|
|||||||
[ColorEffects:Disabled]
|
|
||||||
ChangeSelectionColor=
|
|
||||||
Color=#211f24
|
|
||||||
ColorAmount=0.5
|
|
||||||
ColorEffect=3
|
|
||||||
ContrastAmount=0
|
|
||||||
ContrastEffect=0
|
|
||||||
Enable=
|
|
||||||
IntensityAmount=0
|
|
||||||
IntensityEffect=0
|
|
||||||
|
|
||||||
[ColorEffects:Inactive]
|
|
||||||
ChangeSelectionColor=true
|
|
||||||
Color=#0c0a10
|
|
||||||
ColorAmount=0.025
|
|
||||||
ColorEffect=0
|
|
||||||
ContrastAmount=0.1
|
|
||||||
ContrastEffect=0
|
|
||||||
Enable=true
|
|
||||||
IntensityAmount=0
|
|
||||||
IntensityEffect=0
|
|
||||||
|
|
||||||
[Colors:Button]
|
|
||||||
BackgroundAlternate=#47434c
|
|
||||||
BackgroundNormal=#2b292f
|
|
||||||
DecorationFocus=#cdb9fb
|
|
||||||
DecorationHover=#cdb9fb
|
|
||||||
ForegroundActive=#e6e0e9
|
|
||||||
ForegroundInactive=#948f99
|
|
||||||
ForegroundLink=#8fc9fc
|
|
||||||
ForegroundNegative=#ffb3b4
|
|
||||||
ForegroundNeutral=#fcb38a
|
|
||||||
ForegroundNormal=#e6e0e9
|
|
||||||
ForegroundPositive=#00e479
|
|
||||||
ForegroundVisited=#ebb2ff
|
|
||||||
|
|
||||||
[Colors:Complementary]
|
|
||||||
BackgroundAlternate=#121016
|
|
||||||
BackgroundNormal=#211f24
|
|
||||||
DecorationFocus=#cdb9fb
|
|
||||||
DecorationHover=#cdb9fb
|
|
||||||
ForegroundActive=#e6e0e9
|
|
||||||
ForegroundInactive=#948f99
|
|
||||||
ForegroundLink=#8fc9fc
|
|
||||||
ForegroundNegative=#ffb3b4
|
|
||||||
ForegroundNeutral=#fcb38a
|
|
||||||
ForegroundNormal=#cac4cf
|
|
||||||
ForegroundPositive=#00e479
|
|
||||||
ForegroundVisited=#ebb2ff
|
|
||||||
|
|
||||||
[Colors:Header]
|
|
||||||
BackgroundAlternate=#211f24
|
|
||||||
BackgroundNormal=#211f24
|
|
||||||
DecorationFocus=#cdb9fb
|
|
||||||
DecorationHover=#cdb9fb
|
|
||||||
ForegroundActive=#e6e0e9
|
|
||||||
ForegroundInactive=#948f99
|
|
||||||
ForegroundLink=#8fc9fc
|
|
||||||
ForegroundNegative=#ffb3b4
|
|
||||||
ForegroundNeutral=#fcb38a
|
|
||||||
ForegroundNormal=#cac4cf
|
|
||||||
ForegroundPositive=#00e479
|
|
||||||
ForegroundVisited=#ebb2ff
|
|
||||||
|
|
||||||
[Colors:Header][Inactive]
|
|
||||||
BackgroundAlternate=#211f24
|
|
||||||
BackgroundNormal=#211f24
|
|
||||||
DecorationFocus=#cdb9fb
|
|
||||||
DecorationHover=#cdb9fb
|
|
||||||
ForegroundActive=#e6e0e9
|
|
||||||
ForegroundInactive=#948f99
|
|
||||||
ForegroundLink=#8fc9fc
|
|
||||||
ForegroundNegative=#ffb3b4
|
|
||||||
ForegroundNeutral=#fcb38a
|
|
||||||
ForegroundNormal=#cac4cf
|
|
||||||
ForegroundPositive=#00e479
|
|
||||||
ForegroundVisited=#ebb2ff
|
|
||||||
|
|
||||||
[Colors:Selection]
|
|
||||||
BackgroundAlternate=#cdb9fb
|
|
||||||
BackgroundNormal=#cdb9fb
|
|
||||||
DecorationFocus=#cdb9fb
|
|
||||||
DecorationHover=#c9bfd8
|
|
||||||
ForegroundActive=#36265d
|
|
||||||
ForegroundInactive=#36265d
|
|
||||||
ForegroundLink=#004b73
|
|
||||||
ForegroundNegative=#920023
|
|
||||||
ForegroundNeutral=#753400
|
|
||||||
ForegroundNormal=#36265d
|
|
||||||
ForegroundPositive=#005228
|
|
||||||
ForegroundVisited=#74009f
|
|
||||||
|
|
||||||
[Colors:Tooltip]
|
|
||||||
BackgroundAlternate=#47434c
|
|
||||||
BackgroundNormal=#211f24
|
|
||||||
DecorationFocus=#cdb9fb
|
|
||||||
DecorationHover=#cdb9fb
|
|
||||||
ForegroundActive=#e6e0e9
|
|
||||||
ForegroundInactive=#948f99
|
|
||||||
ForegroundLink=#8fc9fc
|
|
||||||
ForegroundNegative=#ffb3b4
|
|
||||||
ForegroundNeutral=#fcb38a
|
|
||||||
ForegroundNormal=#e6e0e9
|
|
||||||
ForegroundPositive=#00e479
|
|
||||||
ForegroundVisited=#ebb2ff
|
|
||||||
|
|
||||||
[Colors:View]
|
|
||||||
BackgroundAlternate=#211f24
|
|
||||||
BackgroundNormal=#121016
|
|
||||||
DecorationFocus=#cdb9fb
|
|
||||||
DecorationHover=#65558f
|
|
||||||
ForegroundActive=#e6e0e9
|
|
||||||
ForegroundInactive=#948f99
|
|
||||||
ForegroundLink=#8fc9fc
|
|
||||||
ForegroundNegative=#ffb3b4
|
|
||||||
ForegroundNeutral=#fcb38a
|
|
||||||
ForegroundNormal=#e6e0e9
|
|
||||||
ForegroundPositive=#00e479
|
|
||||||
ForegroundVisited=#ebb2ff
|
|
||||||
|
|
||||||
[Colors:Window]
|
|
||||||
BackgroundAlternate=#47434c
|
|
||||||
BackgroundNormal=#211f24
|
|
||||||
DecorationFocus=#cdb9fb
|
|
||||||
DecorationHover=#cdb9fb
|
|
||||||
ForegroundActive=#8fc9fc
|
|
||||||
ForegroundInactive=#948f99
|
|
||||||
ForegroundLink=#8fc9fc
|
|
||||||
ForegroundNegative=#ffb3b4
|
|
||||||
ForegroundNeutral=#fcb38a
|
|
||||||
ForegroundNormal=#cac4cf
|
|
||||||
ForegroundPositive=#00e479
|
|
||||||
ForegroundVisited=#ebb2ff
|
|
||||||
|
|
||||||
[General]
|
|
||||||
ColorScheme=MaterialYouDark
|
|
||||||
ColorSchemeHash=3c0cecefbea43cdb8fe3da156e4a106f7384a526
|
|
||||||
LastUsedCustomAccentColor=184,117,220
|
|
||||||
XftHintStyle=hintslight
|
|
||||||
TerminalApplication=kitty -1
|
|
||||||
XftSubPixel=none
|
|
||||||
fixed=JetBrainsMono Nerd Font,11,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
|
|
||||||
font=Google Sans Flex,11,-1,5,500,0,0,0,0,0,0,0,0,0,0,1,Medium
|
|
||||||
menuFont=Google Sans Flex,10,-1,5,500,0,0,0,0,0,0,0,0,0,0,1,Medium
|
|
||||||
smallestReadableFont=Google Sans Flex,9,-1,5,500,0,0,0,0,0,0,0,0,0,0,1,Medium
|
|
||||||
toolBarFont=Google Sans Flex,10,-1,5,500,0,0,0,0,0,0,0,0,0,0,1,Medium
|
|
||||||
|
|
||||||
[Icons]
|
|
||||||
Theme=breeze-dark
|
|
||||||
|
|
||||||
[KDE]
|
|
||||||
widgetStyle=Darkly
|
|
||||||
|
|
||||||
[KFileDialog Settings]
|
|
||||||
Allow Expansion=false
|
|
||||||
Automatically select filename extension=true
|
|
||||||
Breadcrumb Navigation=true
|
|
||||||
Decoration position=2
|
|
||||||
LocationCombo Completionmode=5
|
|
||||||
PathCombo Completionmode=5
|
|
||||||
Show Bookmarks=false
|
|
||||||
Show Full Path=false
|
|
||||||
Show Inline Previews=true
|
|
||||||
Show Preview=false
|
|
||||||
Show Speedbar=true
|
|
||||||
Show hidden files=false
|
|
||||||
Sort by=Name
|
|
||||||
Sort directories first=true
|
|
||||||
Sort hidden files last=false
|
|
||||||
Sort reversed=false
|
|
||||||
Speedbar Width=168
|
|
||||||
View Style=Simple
|
|
||||||
|
|
||||||
[Sounds]
|
|
||||||
Theme=freedesktop
|
|
||||||
|
|
||||||
[WM]
|
|
||||||
activeBackground=54,52,58
|
|
||||||
activeBlend=252,252,252
|
|
||||||
activeForeground=230,224,233
|
|
||||||
inactiveBackground=76,70,90
|
|
||||||
activeFont=Google Sans Flex,10,-1,5,500,0,0,0,0,0,0,0,0,0,0,1,Medium
|
|
||||||
inactiveBlend=161,169,177
|
|
||||||
inactiveForeground=232,222,248
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
# Theming
|
|
||||||
include ~/.local/state/quickshell/user/generated/terminal/kitty-theme.conf
|
|
||||||
|
|
||||||
# Font
|
|
||||||
font_family JetBrains Mono Nerd Font
|
|
||||||
font_size 11.0
|
|
||||||
|
|
||||||
# Cursor
|
|
||||||
cursor_shape beam
|
|
||||||
cursor_trail 1
|
|
||||||
|
|
||||||
# Padding (why weird value? consistency with foot)
|
|
||||||
window_margin_width 21.75
|
|
||||||
|
|
||||||
# No stupid close confirmation
|
|
||||||
confirm_os_window_close 0
|
|
||||||
|
|
||||||
# Use fish shell
|
|
||||||
shell fish
|
|
||||||
|
|
||||||
# Copy
|
|
||||||
map ctrl+c copy_or_interrupt
|
|
||||||
|
|
||||||
# Search
|
|
||||||
map ctrl+f launch --location=hsplit --allow-remote-control kitty +kitten search.py @active-kitty-window-id
|
|
||||||
map kitty_mod+f launch --location=hsplit --allow-remote-control kitty +kitten search.py @active-kitty-window-id
|
|
||||||
|
|
||||||
# Scroll & Zoom
|
|
||||||
map page_up scroll_page_up
|
|
||||||
map page_down scroll_page_down
|
|
||||||
|
|
||||||
map ctrl+plus change_font_size all +1
|
|
||||||
map ctrl+equal change_font_size all +1
|
|
||||||
map ctrl+kp_add change_font_size all +1
|
|
||||||
map ctrl+minus change_font_size all -1
|
|
||||||
map ctrl+underscore change_font_size all -1
|
|
||||||
map ctrl+kp_subtract change_font_size all -1
|
|
||||||
map ctrl+0 change_font_size all 0
|
|
||||||
map ctrl+kp_0 change_font_size all 0
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
from kittens.tui.handler import result_handler
|
|
||||||
from kitty.boss import Boss
|
|
||||||
|
|
||||||
|
|
||||||
def main(args: list[str]) -> None:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
@result_handler(no_ui=True)
|
|
||||||
def handle_result(
|
|
||||||
args: list[str], answer: str, target_window_id: int, boss: Boss
|
|
||||||
) -> None:
|
|
||||||
w = boss.window_id_map.get(target_window_id)
|
|
||||||
if w is not None:
|
|
||||||
if len(args) > 1 and args[1] != "prev":
|
|
||||||
w.scroll_to_mark(prev=False)
|
|
||||||
else:
|
|
||||||
w.scroll_to_mark()
|
|
||||||
@@ -1,341 +0,0 @@
|
|||||||
# Kitty search from https://github.com/trygveaa/kitty-kitten-search
|
|
||||||
# License: GPLv3
|
|
||||||
|
|
||||||
import json
|
|
||||||
import re
|
|
||||||
import subprocess
|
|
||||||
from gettext import gettext as _
|
|
||||||
from pathlib import Path
|
|
||||||
from subprocess import PIPE, run
|
|
||||||
|
|
||||||
from kittens.tui.handler import Handler
|
|
||||||
from kittens.tui.line_edit import LineEdit
|
|
||||||
from kittens.tui.loop import Loop
|
|
||||||
from kittens.tui.operations import (
|
|
||||||
clear_screen,
|
|
||||||
cursor,
|
|
||||||
set_line_wrapping,
|
|
||||||
set_window_title,
|
|
||||||
styled,
|
|
||||||
)
|
|
||||||
from kitty.config import cached_values_for
|
|
||||||
from kitty.key_encoding import EventType
|
|
||||||
from kitty.typing_compat import KeyEventType, ScreenSize
|
|
||||||
|
|
||||||
NON_SPACE_PATTERN = re.compile(r"\S+")
|
|
||||||
SPACE_PATTERN = re.compile(r"\s+")
|
|
||||||
SPACE_PATTERN_END = re.compile(r"\s+$")
|
|
||||||
SPACE_PATTERN_START = re.compile(r"^\s+")
|
|
||||||
|
|
||||||
NON_ALPHANUM_PATTERN = re.compile(r"[^\w\d]+")
|
|
||||||
NON_ALPHANUM_PATTERN_END = re.compile(r"[^\w\d]+$")
|
|
||||||
NON_ALPHANUM_PATTERN_START = re.compile(r"^[^\w\d]+")
|
|
||||||
ALPHANUM_PATTERN = re.compile(r"[\w\d]+")
|
|
||||||
|
|
||||||
|
|
||||||
def call_remote_control(args: list[str]) -> None:
|
|
||||||
subprocess.run(["kitty", "@", *args], capture_output=True)
|
|
||||||
|
|
||||||
|
|
||||||
def reindex(
|
|
||||||
text: str, pattern: re.Pattern[str], right: bool = False
|
|
||||||
) -> tuple[int, int]:
|
|
||||||
if not right:
|
|
||||||
m = pattern.search(text)
|
|
||||||
else:
|
|
||||||
matches = [x for x in pattern.finditer(text) if x]
|
|
||||||
if not matches:
|
|
||||||
raise ValueError
|
|
||||||
m = matches[-1]
|
|
||||||
|
|
||||||
if not m:
|
|
||||||
raise ValueError
|
|
||||||
|
|
||||||
return m.span()
|
|
||||||
|
|
||||||
|
|
||||||
SCROLLMARK_FILE = Path(__file__).parent.absolute() / "scroll_mark.py"
|
|
||||||
|
|
||||||
|
|
||||||
class Search(Handler):
|
|
||||||
def __init__(
|
|
||||||
self, cached_values: dict[str, str], window_ids: list[int], error: str = ""
|
|
||||||
) -> None:
|
|
||||||
self.cached_values = cached_values
|
|
||||||
self.window_ids = window_ids
|
|
||||||
self.error = error
|
|
||||||
self.line_edit = LineEdit()
|
|
||||||
last_search = cached_values.get("last_search", "")
|
|
||||||
self.line_edit.add_text(last_search)
|
|
||||||
self.text_marked = bool(last_search)
|
|
||||||
self.mode = cached_values.get("mode", "text")
|
|
||||||
self.update_prompt()
|
|
||||||
self.mark()
|
|
||||||
|
|
||||||
def update_prompt(self) -> None:
|
|
||||||
self.prompt = "~> " if self.mode == "regex" else "=> "
|
|
||||||
|
|
||||||
def init_terminal_state(self) -> None:
|
|
||||||
self.write(set_line_wrapping(False))
|
|
||||||
self.write(set_window_title(_("Search")))
|
|
||||||
|
|
||||||
def initialize(self) -> None:
|
|
||||||
self.init_terminal_state()
|
|
||||||
self.draw_screen()
|
|
||||||
|
|
||||||
def draw_screen(self) -> None:
|
|
||||||
self.write(clear_screen())
|
|
||||||
if self.window_ids:
|
|
||||||
input_text = self.line_edit.current_input
|
|
||||||
if self.text_marked:
|
|
||||||
self.line_edit.current_input = styled(input_text, reverse=True)
|
|
||||||
self.line_edit.write(self.write, self.prompt)
|
|
||||||
self.line_edit.current_input = input_text
|
|
||||||
if self.error:
|
|
||||||
with cursor(self.write):
|
|
||||||
self.print("")
|
|
||||||
for l in self.error.split("\n"):
|
|
||||||
self.print(l)
|
|
||||||
|
|
||||||
def refresh(self) -> None:
|
|
||||||
self.draw_screen()
|
|
||||||
self.mark()
|
|
||||||
|
|
||||||
def switch_mode(self) -> None:
|
|
||||||
if self.mode == "regex":
|
|
||||||
self.mode = "text"
|
|
||||||
else:
|
|
||||||
self.mode = "regex"
|
|
||||||
self.cached_values["mode"] = self.mode
|
|
||||||
self.update_prompt()
|
|
||||||
|
|
||||||
def on_text(self, text: str, in_bracketed_paste: bool = False) -> None:
|
|
||||||
if self.text_marked:
|
|
||||||
self.text_marked = False
|
|
||||||
self.line_edit.clear()
|
|
||||||
self.line_edit.on_text(text, in_bracketed_paste)
|
|
||||||
self.refresh()
|
|
||||||
|
|
||||||
def on_key(self, key_event: KeyEventType) -> None:
|
|
||||||
if (
|
|
||||||
self.text_marked
|
|
||||||
and key_event.type == EventType.PRESS
|
|
||||||
and key_event.key
|
|
||||||
not in [
|
|
||||||
"TAB",
|
|
||||||
"LEFT_CONTROL",
|
|
||||||
"RIGHT_CONTROL",
|
|
||||||
"LEFT_ALT",
|
|
||||||
"RIGHT_ALT",
|
|
||||||
"LEFT_SHIFT",
|
|
||||||
"RIGHT_SHIFT",
|
|
||||||
"LEFT_SUPER",
|
|
||||||
"RIGHT_SUPER",
|
|
||||||
]
|
|
||||||
):
|
|
||||||
self.text_marked = False
|
|
||||||
self.refresh()
|
|
||||||
|
|
||||||
if self.line_edit.on_key(key_event):
|
|
||||||
self.refresh()
|
|
||||||
return
|
|
||||||
|
|
||||||
if key_event.matches("ctrl+u"):
|
|
||||||
self.line_edit.clear()
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("ctrl+a"):
|
|
||||||
self.line_edit.home()
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("ctrl+e"):
|
|
||||||
self.line_edit.end()
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("ctrl+backspace") or key_event.matches("ctrl+w"):
|
|
||||||
before, _ = self.line_edit.split_at_cursor()
|
|
||||||
|
|
||||||
try:
|
|
||||||
start, _ = reindex(before, SPACE_PATTERN_END, right=True)
|
|
||||||
except ValueError:
|
|
||||||
start = -1
|
|
||||||
|
|
||||||
try:
|
|
||||||
space = before[:start].rindex(" ")
|
|
||||||
except ValueError:
|
|
||||||
space = 0
|
|
||||||
self.line_edit.backspace(len(before) - space)
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("ctrl+left") or key_event.matches("ctrl+b"):
|
|
||||||
before, _ = self.line_edit.split_at_cursor()
|
|
||||||
try:
|
|
||||||
start, _ = reindex(before, SPACE_PATTERN_END, right=True)
|
|
||||||
except ValueError:
|
|
||||||
start = -1
|
|
||||||
|
|
||||||
try:
|
|
||||||
space = before[:start].rindex(" ")
|
|
||||||
except ValueError:
|
|
||||||
space = 0
|
|
||||||
self.line_edit.left(len(before) - space)
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("ctrl+right") or key_event.matches("ctrl+f"):
|
|
||||||
_, after = self.line_edit.split_at_cursor()
|
|
||||||
try:
|
|
||||||
_, end = reindex(after, SPACE_PATTERN_START)
|
|
||||||
except ValueError:
|
|
||||||
end = 0
|
|
||||||
|
|
||||||
try:
|
|
||||||
space = after[end:].index(" ") + 1
|
|
||||||
except ValueError:
|
|
||||||
space = len(after)
|
|
||||||
self.line_edit.right(space)
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("alt+backspace") or key_event.matches("alt+w"):
|
|
||||||
before, _ = self.line_edit.split_at_cursor()
|
|
||||||
|
|
||||||
try:
|
|
||||||
start, _ = reindex(before, NON_ALPHANUM_PATTERN_END, right=True)
|
|
||||||
except ValueError:
|
|
||||||
start = -1
|
|
||||||
else:
|
|
||||||
self.line_edit.backspace(len(before) - start)
|
|
||||||
self.refresh()
|
|
||||||
return
|
|
||||||
|
|
||||||
try:
|
|
||||||
start, _ = reindex(before, NON_ALPHANUM_PATTERN, right=True)
|
|
||||||
except ValueError:
|
|
||||||
self.line_edit.backspace(len(before))
|
|
||||||
self.refresh()
|
|
||||||
return
|
|
||||||
|
|
||||||
self.line_edit.backspace(len(before) - (start + 1))
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("alt+left") or key_event.matches("alt+b"):
|
|
||||||
before, _ = self.line_edit.split_at_cursor()
|
|
||||||
|
|
||||||
try:
|
|
||||||
start, _ = reindex(before, NON_ALPHANUM_PATTERN_END, right=True)
|
|
||||||
except ValueError:
|
|
||||||
start = -1
|
|
||||||
else:
|
|
||||||
self.line_edit.left(len(before) - start)
|
|
||||||
self.refresh()
|
|
||||||
return
|
|
||||||
|
|
||||||
try:
|
|
||||||
start, _ = reindex(before, NON_ALPHANUM_PATTERN, right=True)
|
|
||||||
except ValueError:
|
|
||||||
self.line_edit.left(len(before))
|
|
||||||
self.refresh()
|
|
||||||
return
|
|
||||||
|
|
||||||
self.line_edit.left(len(before) - (start + 1))
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("alt+right") or key_event.matches("alt+f"):
|
|
||||||
_, after = self.line_edit.split_at_cursor()
|
|
||||||
|
|
||||||
try:
|
|
||||||
_, end = reindex(after, NON_ALPHANUM_PATTERN_START)
|
|
||||||
except ValueError:
|
|
||||||
end = 0
|
|
||||||
else:
|
|
||||||
self.line_edit.right(end)
|
|
||||||
self.refresh()
|
|
||||||
return
|
|
||||||
|
|
||||||
try:
|
|
||||||
_, end = reindex(after, NON_ALPHANUM_PATTERN)
|
|
||||||
except ValueError:
|
|
||||||
self.line_edit.right(len(after))
|
|
||||||
self.refresh()
|
|
||||||
return
|
|
||||||
|
|
||||||
self.line_edit.right(end - 1)
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("tab"):
|
|
||||||
self.switch_mode()
|
|
||||||
self.refresh()
|
|
||||||
elif key_event.matches("up") or key_event.matches("f3"):
|
|
||||||
for match_arg in self.match_args():
|
|
||||||
call_remote_control(["kitten", match_arg, str(SCROLLMARK_FILE)])
|
|
||||||
elif key_event.matches("down") or key_event.matches("shift+f3"):
|
|
||||||
for match_arg in self.match_args():
|
|
||||||
call_remote_control(["kitten", match_arg, str(SCROLLMARK_FILE), "next"])
|
|
||||||
elif key_event.matches("enter"):
|
|
||||||
self.quit(0)
|
|
||||||
elif key_event.matches("esc"):
|
|
||||||
self.quit(1)
|
|
||||||
|
|
||||||
def on_interrupt(self) -> None:
|
|
||||||
self.quit(1)
|
|
||||||
|
|
||||||
def on_eot(self) -> None:
|
|
||||||
self.quit(1)
|
|
||||||
|
|
||||||
def on_resize(self, screen_size: ScreenSize) -> None:
|
|
||||||
self.refresh()
|
|
||||||
|
|
||||||
def match_args(self) -> list[str]:
|
|
||||||
return [f"--match=id:{window_id}" for window_id in self.window_ids]
|
|
||||||
|
|
||||||
def mark(self) -> None:
|
|
||||||
if not self.window_ids:
|
|
||||||
return
|
|
||||||
text = self.line_edit.current_input
|
|
||||||
if text:
|
|
||||||
match_case = "i" if text.islower() else ""
|
|
||||||
match_type = match_case + self.mode
|
|
||||||
for match_arg in self.match_args():
|
|
||||||
try:
|
|
||||||
call_remote_control(
|
|
||||||
["create-marker", match_arg, match_type, "1", text]
|
|
||||||
)
|
|
||||||
except SystemExit:
|
|
||||||
self.remove_mark()
|
|
||||||
else:
|
|
||||||
self.remove_mark()
|
|
||||||
|
|
||||||
def remove_mark(self) -> None:
|
|
||||||
for match_arg in self.match_args():
|
|
||||||
call_remote_control(["remove-marker", match_arg])
|
|
||||||
|
|
||||||
def quit(self, return_code: int) -> None:
|
|
||||||
self.cached_values["last_search"] = self.line_edit.current_input
|
|
||||||
self.remove_mark()
|
|
||||||
if return_code:
|
|
||||||
for match_arg in self.match_args():
|
|
||||||
call_remote_control(["scroll-window", match_arg, "end"])
|
|
||||||
self.quit_loop(return_code)
|
|
||||||
|
|
||||||
|
|
||||||
def main(args: list[str]) -> None:
|
|
||||||
call_remote_control(
|
|
||||||
["resize-window", "--self", "--axis=vertical", "--increment", "-100"]
|
|
||||||
)
|
|
||||||
|
|
||||||
error = ""
|
|
||||||
if len(args) < 2 or not args[1].isdigit():
|
|
||||||
error = "Error: Window id must be provided as the first argument."
|
|
||||||
|
|
||||||
window_id = int(args[1])
|
|
||||||
window_ids = [window_id]
|
|
||||||
if len(args) > 2 and args[2] == "--all-windows":
|
|
||||||
ls_output = run(["kitty", "@", "ls"], stdout=PIPE)
|
|
||||||
ls_json = json.loads(ls_output.stdout.decode())
|
|
||||||
current_tab = None
|
|
||||||
for os_window in ls_json:
|
|
||||||
for tab in os_window["tabs"]:
|
|
||||||
for kitty_window in tab["windows"]:
|
|
||||||
if kitty_window["id"] == window_id:
|
|
||||||
current_tab = tab
|
|
||||||
if current_tab:
|
|
||||||
window_ids = [
|
|
||||||
w["id"] for w in current_tab["windows"] if not w["is_focused"]
|
|
||||||
]
|
|
||||||
else:
|
|
||||||
error = "Error: Could not find the window id provided."
|
|
||||||
|
|
||||||
loop = Loop()
|
|
||||||
with cached_values_for("search") as cached_values:
|
|
||||||
handler = Search(cached_values, window_ids, error)
|
|
||||||
loop.loop(handler)
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
DefaultProfile=Profile 1.profile
|
|
||||||
|
|
||||||
[General]
|
|
||||||
ConfigVersion=1
|
|
||||||
|
|
||||||
[KonsoleWindow]
|
|
||||||
UseSingleInstance=true
|
|
||||||
|
|
||||||
[UiSettings]
|
|
||||||
ColorScheme=
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
[config]
|
|
||||||
version_check = false
|
|
||||||
|
|
||||||
[templates.m3colors]
|
|
||||||
input_path = '~/.config/matugen/templates/colors.json'
|
|
||||||
output_path = '~/.local/state/quickshell/user/generated/colors.json'
|
|
||||||
|
|
||||||
[templates.hyprland]
|
|
||||||
input_path = '~/.config/matugen/templates/hyprland/colors.lua'
|
|
||||||
output_path = '~/.config/hypr/hyprland/colors.lua'
|
|
||||||
|
|
||||||
[templates.hyprlock]
|
|
||||||
input_path = '~/.config/matugen/templates/hyprland/hyprlock-colors.conf'
|
|
||||||
output_path = '~/.config/hypr/hyprlock/colors.conf'
|
|
||||||
|
|
||||||
[templates.fuzzel]
|
|
||||||
input_path = '~/.config/matugen/templates/fuzzel/fuzzel_theme.ini'
|
|
||||||
output_path = '~/.config/fuzzel/fuzzel_theme.ini'
|
|
||||||
|
|
||||||
[templates.gtk3]
|
|
||||||
input_path = '~/.config/matugen/templates/gtk-3.0/gtk.css'
|
|
||||||
output_path = '~/.config/gtk-3.0/gtk.css'
|
|
||||||
|
|
||||||
[templates.gtk4]
|
|
||||||
input_path = '~/.config/matugen/templates/gtk-4.0/gtk.css'
|
|
||||||
output_path = '~/.config/gtk-4.0/gtk.css'
|
|
||||||
|
|
||||||
[templates.kde_colors]
|
|
||||||
input_path = '~/.config/matugen/templates/kde/color.txt'
|
|
||||||
output_path = '~/.local/state/quickshell/user/generated/color.txt'
|
|
||||||
|
|
||||||
[templates.wallpaper]
|
|
||||||
input_path = '~/.config/matugen/templates/wallpaper.txt'
|
|
||||||
output_path = '~/.local/state/quickshell/user/generated/wallpaper/path.txt'
|
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
$darkmode: False;
|
|
||||||
$transparent: False;
|
|
||||||
$background: {{colors.background.default.hex}};
|
|
||||||
$onBackground: {{colors.on_background.default.hex}};
|
|
||||||
$surface: {{colors.surface.default.hex}};
|
|
||||||
$surfaceDim: {{colors.surface_dim.default.hex}};
|
|
||||||
$surfaceBright: {{colors.surface_bright.default.hex}};
|
|
||||||
$surfaceContainerLowest: {{colors.surface_container_lowest.default.hex}};
|
|
||||||
$surfaceContainerLow: {{colors.surface_container_low.default.hex}};
|
|
||||||
$surfaceContainer: {{colors.surface_container.default.hex}};
|
|
||||||
$surfaceContainerHigh: {{colors.surface_container_high.default.hex}};
|
|
||||||
$surfaceContainerHighest: {{colors.surface_container_highest.default.hex}};
|
|
||||||
$onSurface: {{colors.on_surface.default.hex}};
|
|
||||||
$surfaceVariant: {{colors.surface_variant.default.hex}};
|
|
||||||
$onSurfaceVariant: {{colors.on_surface_variant.default.hex}};
|
|
||||||
$inverseSurface: {{colors.inverse_surface.default.hex}};
|
|
||||||
$inverseOnSurface: {{colors.inverse_on_surface.default.hex}};
|
|
||||||
$outline: {{colors.outline.default.hex}};
|
|
||||||
$outlineVariant: {{colors.outline_variant.default.hex}};
|
|
||||||
$shadow: {{colors.shadow.default.hex}};
|
|
||||||
$scrim: {{colors.scrim.default.hex}};
|
|
||||||
$primary: {{colors.primary.default.hex}};
|
|
||||||
$onPrimary: {{colors.on_primary.default.hex}};
|
|
||||||
$primaryContainer: {{colors.primary_container.default.hex}};
|
|
||||||
$onPrimaryContainer: {{colors.on_primary_container.default.hex}};
|
|
||||||
$inversePrimary: {{colors.inverse_primary.default.hex}};
|
|
||||||
$secondary: {{colors.secondary.default.hex}};
|
|
||||||
$onSecondary: {{colors.on_secondary.default.hex}};
|
|
||||||
$secondaryContainer: {{colors.secondary_container.default.hex}};
|
|
||||||
$onSecondaryContainer: {{colors.on_secondary_container.default.hex}};
|
|
||||||
$tertiary: {{colors.tertiary.default.hex}};
|
|
||||||
$onTertiary: {{colors.on_tertiary.default.hex}};
|
|
||||||
$tertiaryContainer: {{colors.tertiary_container.default.hex}};
|
|
||||||
$onTertiaryContainer: {{colors.on_tertiary_container.default.hex}};
|
|
||||||
$error: {{colors.error.default.hex}};
|
|
||||||
$onError: {{colors.on_error.default.hex}};
|
|
||||||
$errorContainer: {{colors.error_container.default.hex}};
|
|
||||||
$onErrorContainer: {{colors.on_error_container.default.hex}};
|
|
||||||
$primaryFixed: {{colors.primary_fixed.default.hex}};
|
|
||||||
$primaryFixedDim: {{colors.primary_fixed_dim.default.hex}};
|
|
||||||
$onPrimaryFixed: {{colors.on_primary_fixed.default.hex}};
|
|
||||||
$onPrimaryFixedVariant: {{colors.on_primary_fixed_variant.default.hex}};
|
|
||||||
$secondaryFixed: {{colors.secondary_fixed.default.hex}};
|
|
||||||
$secondaryFixedDim: {{colors.secondary_fixed_dim.default.hex}};
|
|
||||||
$onSecondaryFixed: {{colors.on_secondary_fixed.default.hex}};
|
|
||||||
$onSecondaryFixedVariant: {{colors.on_secondary_fixed_variant.default.hex}};
|
|
||||||
$tertiaryFixed: {{colors.tertiary_fixed.default.hex}};
|
|
||||||
$tertiaryFixedDim: {{colors.tertiary_fixed_dim.default.hex}};
|
|
||||||
$onTertiaryFixed: {{colors.on_tertiary_fixed.default.hex}};
|
|
||||||
$onTertiaryFixedVariant: {{colors.on_tertiary_fixed_variant.default.hex}};
|
|
||||||
$success: #B5CCBA;
|
|
||||||
$onSuccess: #213528;
|
|
||||||
$successContainer: #374B3E;
|
|
||||||
$onSuccessContainer: #D1E9D6;
|
|
||||||
$term0: #0D1C20;
|
|
||||||
$term1: #8383FF;
|
|
||||||
$term2: #63DFD4;
|
|
||||||
$term3: #75FCDD;
|
|
||||||
$term4: #76B4BD;
|
|
||||||
$term5: #7AAEEA;
|
|
||||||
$term6: #81D8D7;
|
|
||||||
$term7: #CCDBD5;
|
|
||||||
$term8: #B1BCB5;
|
|
||||||
$term9: #BCB9FF;
|
|
||||||
$term10: #F6FFFD;
|
|
||||||
$term11: #FFFFFF;
|
|
||||||
$term12: #BEE3E5;
|
|
||||||
$term13: #C8DAFF;
|
|
||||||
$term14: #E5FFFE;
|
|
||||||
$term15: #ADEDF6;
|
|
||||||
@@ -1,95 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<style-scheme id="custom-light" _name="Custom" version="1.0">
|
|
||||||
<author>end_4</author>
|
|
||||||
<_description>Catppuccin port but very random</_description>
|
|
||||||
|
|
||||||
<style name="bracket-match" background="{{ colors.secondary_container.default.hex }}" foreground="{{ colors.on_secondary_container.default.hex }}" bold="true"/>
|
|
||||||
<style name="bracket-mismatch" background="#E3E6EB" underline="true"/>
|
|
||||||
<style name="c:preprocessor" foreground="#DF8E1D"/>
|
|
||||||
<style name="css:at-rules" foreground="#8839EF"/>
|
|
||||||
<style name="css:color" foreground="#DF8E1D"/>
|
|
||||||
<style name="css:keyword" foreground="#256BF5"/>
|
|
||||||
<style name="current-line" background="{{ colors.surface_container_highest.default.hex }}"/>
|
|
||||||
<style name="cursor" foreground="#DC8A78"/>
|
|
||||||
<style name="def:base-n-integer" foreground="#DF8E1D"/>
|
|
||||||
<style name="def:boolean" foreground="#DF8E1D"/>
|
|
||||||
<style name="def:builtin" foreground="#DF8E1D"/>
|
|
||||||
<style name="def:character" foreground="#DF8E1D"/>
|
|
||||||
<style name="def:comment" foreground="#9DA1B1"/>
|
|
||||||
<style name="def:complex" foreground="#DF8E1D"/>
|
|
||||||
<style name="def:decimal" foreground="#DF8E1D"/>
|
|
||||||
<style name="def:doc-comment" foreground="#9DA1B1"/>
|
|
||||||
<style name="def:doc-comment-element" foreground="#9DA1B1"/>
|
|
||||||
<style name="def:error" foreground="#D53055" background="#EAEDF2"/>
|
|
||||||
<style name="def:floating-point" foreground="#DF8E1D"/>
|
|
||||||
<style name="def:function" foreground="#256BF5"/>
|
|
||||||
<style name="def:identifier" foreground="#000000"/>
|
|
||||||
<style name="def:keyword" foreground="#8839EF"/>
|
|
||||||
<style name="def:note" foreground="#9DA1B1"/>
|
|
||||||
<style name="def:number" foreground="#FE640B"/>
|
|
||||||
<style name="def:operator" foreground="#8839EF"/>
|
|
||||||
<style name="def:preprocessor" foreground="#256BF5"/>
|
|
||||||
<style name="def:reserved" foreground="#8839EF"/>
|
|
||||||
<style name="def:shebang" foreground="#9DA1B1"/>
|
|
||||||
<style name="def:special-char" foreground="#256BF5"/>
|
|
||||||
<style name="def:special-constant" foreground="#DF8E1D"/>
|
|
||||||
<style name="def:statement" foreground="#8839EF"/>
|
|
||||||
<style name="def:string" foreground="#4AA537"/>
|
|
||||||
<style name="def:type" foreground="#256BF5" italic="true"/>
|
|
||||||
<style name="diff:added-line" foreground="#282D32" background="#ACF2BD"/>
|
|
||||||
<style name="diff:changed-line" foreground="#282D32" background="#F1F2C3"/>
|
|
||||||
<style name="diff:location" foreground="#9DA1B1"/>
|
|
||||||
<style name="diff:removed-line" foreground="#282D32" background="#FFEEF0"/>
|
|
||||||
<style name="draw-spaces" foreground="#3b3a32"/>
|
|
||||||
<style name="html:dtd" foreground="#4AA537"/>
|
|
||||||
<style name="html:tag" foreground="#8839EF"/>
|
|
||||||
<style name="js:function" foreground="#256BF5"/>
|
|
||||||
<style name="line-numbers" foreground="#9699AA" background="#EAEDF2"/>
|
|
||||||
<style name="perl:builtin" foreground="#256BF5"/>
|
|
||||||
<style name="perl:include-statement" foreground="#8839EF"/>
|
|
||||||
<style name="perl:special-variable" foreground="#DF8E1D"/>
|
|
||||||
<style name="perl:variable" foreground="#000000"/>
|
|
||||||
<style name="php:string" foreground="#4AA537"/>
|
|
||||||
<style name="python:builtin-constant" foreground="#8839EF"/>
|
|
||||||
<style name="python:builtin-function" foreground="#256BF5"/>
|
|
||||||
<style name="python:module-handler" foreground="#8839EF"/>
|
|
||||||
<style name="python:special-variable" foreground="#8839EF"/>
|
|
||||||
<style name="ruby:attribute-definition" foreground="#8839EF"/>
|
|
||||||
<style name="ruby:builtin" foreground="#000000"/>
|
|
||||||
<style name="ruby:class-variable" foreground="#000000"/>
|
|
||||||
<style name="ruby:constant" foreground="#000000"/>
|
|
||||||
<style name="ruby:global-variable" foreground="#256BF5"/>
|
|
||||||
<style name="ruby:instance-variable" foreground="#000000"/>
|
|
||||||
<style name="ruby:module-handler" foreground="#8839EF"/>
|
|
||||||
<style name="ruby:predefined-variable" foreground="#DF8E1D"/>
|
|
||||||
<style name="ruby:regex" foreground="#f6aa11"/>
|
|
||||||
<style name="ruby:special-variable" foreground="#8839EF"/>
|
|
||||||
<style name="ruby:symbol" foreground="#DF8E1D"/>
|
|
||||||
<style name="rubyonrails:attribute-definition" foreground="#8839EF"/>
|
|
||||||
<style name="rubyonrails:block-parameter" foreground="#fd971f" italic="true"/>
|
|
||||||
<style name="rubyonrails:builtin" foreground="#000000"/>
|
|
||||||
<style name="rubyonrails:class-inherit" foreground="#256BF5" underline="true" italic="true"/>
|
|
||||||
<style name="rubyonrails:class-name" foreground="#256BF5"/>
|
|
||||||
<style name="rubyonrails:class-variable" foreground="#000000"/>
|
|
||||||
<style name="rubyonrails:complex-interpolation" foreground="#DF8E1D"/>
|
|
||||||
<style name="rubyonrails:constant" foreground="#000000"/>
|
|
||||||
<style name="rubyonrails:global-variable" foreground="#256BF5"/>
|
|
||||||
<style name="rubyonrails:instance-variable" foreground="#000000"/>
|
|
||||||
<style name="rubyonrails:module-handler" foreground="#8839EF"/>
|
|
||||||
<style name="rubyonrails:module-name" foreground="#256BF5"/>
|
|
||||||
<style name="rubyonrails:predefined-variable" foreground="#DF8E1D"/>
|
|
||||||
<style name="rubyonrails:rails" foreground="#000000"/>
|
|
||||||
<style name="rubyonrails:regex" foreground="#f6aa11"/>
|
|
||||||
<style name="rubyonrails:simple-interpolation" foreground="#DF8E1D"/>
|
|
||||||
<style name="rubyonrails:special-variable" foreground="#8839EF"/>
|
|
||||||
<style name="rubyonrails:symbol" foreground="#DF8E1D"/>
|
|
||||||
<style name="search-match" background="#E3E6EB" bold="true" underline="true"/>
|
|
||||||
<style name="selection" foreground="#f8f8f2" background="#444444"/>
|
|
||||||
<style name="text" foreground="#f8f8f2" background="#222222"/>
|
|
||||||
<style name="xml:attribute-name" foreground="#256BF5"/>
|
|
||||||
<style name="xml:element-name" foreground="#8839EF"/>
|
|
||||||
<style name="xml:entity" foreground="#c8cecc"/>
|
|
||||||
<style name="xml:namespace" foreground="#8839EF"/>
|
|
||||||
<style name="xml:tag" foreground="#8839EF"/>
|
|
||||||
|
|
||||||
</style-scheme>
|
|
||||||
@@ -1,121 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2014 Leo Iannacone <info@leoiannacone.com>
|
|
||||||
|
|
||||||
This file was generated from a textmate theme named Monokai Extended
|
|
||||||
with tm2gtksw2 tool. (Alexandre da Silva)
|
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the GNU Library General Public
|
|
||||||
License as published by the Free Software Foundation; either
|
|
||||||
version 2 of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
This library is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
Library General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU Library General Public
|
|
||||||
License along with this library; if not, write to the
|
|
||||||
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
||||||
Boston, MA 02111-1307, USA.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- MODIFIED -->
|
|
||||||
|
|
||||||
<style-scheme id="custom" _name="Custom" version="1.0">
|
|
||||||
<author>Leo Iannacone</author>
|
|
||||||
<_description>Based on SublimeText Monokai Extended - Generated with tm2gtksw2</_description>
|
|
||||||
|
|
||||||
<style name="bracket-match" background="{{ colors.secondary_container.default.hex }}" foreground="{{ colors.on_secondary_container.default.hex }}" bold="true"/>
|
|
||||||
<style name="bracket-mismatch" background="#333333" underline="true"/>
|
|
||||||
<style name="c:preprocessor" foreground="#be84ff"/>
|
|
||||||
<style name="css:at-rules" foreground="#f92672"/>
|
|
||||||
<style name="css:color" foreground="#be84ff"/>
|
|
||||||
<style name="css:keyword" foreground="#66d9ef"/>
|
|
||||||
<style name="current-line" background="{{ colors.surface_container_highest.default.hex }}"/>
|
|
||||||
<style name="cursor" foreground="#f8f8f0"/>
|
|
||||||
<style name="def:base-n-integer" foreground="#be84ff"/>
|
|
||||||
<style name="def:boolean" foreground="#be84ff"/>
|
|
||||||
<style name="def:builtin" foreground="#be84ff"/>
|
|
||||||
<style name="def:character" foreground="#be84ff"/>
|
|
||||||
<style name="def:comment" foreground="#75715e"/>
|
|
||||||
<style name="def:complex" foreground="#be84ff"/>
|
|
||||||
<style name="def:decimal" foreground="#be84ff"/>
|
|
||||||
<style name="def:doc-comment" foreground="#75715e"/>
|
|
||||||
<style name="def:doc-comment-element" foreground="#75715e"/>
|
|
||||||
<style name="def:error" foreground="#f8f8f0" background="#f92672"/>
|
|
||||||
<style name="def:floating-point" foreground="#be84ff"/>
|
|
||||||
<style name="def:function" foreground="#a6e22e"/>
|
|
||||||
<style name="def:identifier" foreground="#ffffff"/>
|
|
||||||
<style name="def:keyword" foreground="#f92672"/>
|
|
||||||
<style name="def:note" foreground="#75715e"/>
|
|
||||||
<style name="def:number" foreground="#be84ff"/>
|
|
||||||
<style name="def:operator" foreground="#f92672"/>
|
|
||||||
<style name="def:preprocessor" foreground="#66d9ef"/>
|
|
||||||
<style name="def:reserved" foreground="#f92672"/>
|
|
||||||
<style name="def:shebang" foreground="#75715e"/>
|
|
||||||
<style name="def:special-char" foreground="#66d9ef"/>
|
|
||||||
<style name="def:special-constant" foreground="#be84ff"/>
|
|
||||||
<style name="def:statement" foreground="#f92672"/>
|
|
||||||
<style name="def:string" foreground="#e6db74"/>
|
|
||||||
<style name="def:type" foreground="#66d9ef" italic="true"/>
|
|
||||||
<style name="diff:added-line" foreground="#a6e22e"/>
|
|
||||||
<style name="diff:changed-line" foreground="#e6db74"/>
|
|
||||||
<style name="diff:location" foreground="#75715e"/>
|
|
||||||
<style name="diff:removed-line" foreground="#f92672"/>
|
|
||||||
<style name="draw-spaces" foreground="#3b3a32"/>
|
|
||||||
<style name="html:dtd" foreground="#e6db74"/>
|
|
||||||
<style name="html:tag" foreground="#f92672"/>
|
|
||||||
<style name="js:function" foreground="#66d9ef"/>
|
|
||||||
<style name="line-numbers" foreground="#bebeba" background="#333333"/>
|
|
||||||
<style name="perl:builtin" foreground="#a6e22e"/>
|
|
||||||
<style name="perl:include-statement" foreground="#f92672"/>
|
|
||||||
<style name="perl:special-variable" foreground="#be84ff"/>
|
|
||||||
<style name="perl:variable" foreground="#ffffff"/>
|
|
||||||
<style name="php:string" foreground="#e6db74"/>
|
|
||||||
<style name="python:builtin-constant" foreground="#f92672"/>
|
|
||||||
<style name="python:builtin-function" foreground="#a6e22e"/>
|
|
||||||
<style name="python:module-handler" foreground="#f92672"/>
|
|
||||||
<style name="python:special-variable" foreground="#f92672"/>
|
|
||||||
<style name="ruby:attribute-definition" foreground="#f92672"/>
|
|
||||||
<style name="ruby:builtin" foreground="#ffffff"/>
|
|
||||||
<style name="ruby:class-variable" foreground="#ffffff"/>
|
|
||||||
<style name="ruby:constant" foreground="#ffffff"/>
|
|
||||||
<style name="ruby:global-variable" foreground="#a6e22e"/>
|
|
||||||
<style name="ruby:instance-variable" foreground="#ffffff"/>
|
|
||||||
<style name="ruby:module-handler" foreground="#f92672"/>
|
|
||||||
<style name="ruby:predefined-variable" foreground="#be84ff"/>
|
|
||||||
<style name="ruby:regex" foreground="#f6aa11"/>
|
|
||||||
<style name="ruby:special-variable" foreground="#f92672"/>
|
|
||||||
<style name="ruby:symbol" foreground="#be84ff"/>
|
|
||||||
<style name="rubyonrails:attribute-definition" foreground="#f92672"/>
|
|
||||||
<style name="rubyonrails:block-parameter" foreground="#fd971f" italic="true"/>
|
|
||||||
<style name="rubyonrails:builtin" foreground="#ffffff"/>
|
|
||||||
<style name="rubyonrails:class-inherit" foreground="#a6e22e" underline="true" italic="true"/>
|
|
||||||
<style name="rubyonrails:class-name" foreground="#66d9ef"/>
|
|
||||||
<style name="rubyonrails:class-variable" foreground="#ffffff"/>
|
|
||||||
<style name="rubyonrails:complex-interpolation" foreground="#be84ff"/>
|
|
||||||
<style name="rubyonrails:constant" foreground="#ffffff"/>
|
|
||||||
<style name="rubyonrails:global-variable" foreground="#a6e22e"/>
|
|
||||||
<style name="rubyonrails:instance-variable" foreground="#ffffff"/>
|
|
||||||
<style name="rubyonrails:module-handler" foreground="#f92672"/>
|
|
||||||
<style name="rubyonrails:module-name" foreground="#66d9ef"/>
|
|
||||||
<style name="rubyonrails:predefined-variable" foreground="#be84ff"/>
|
|
||||||
<style name="rubyonrails:rails" foreground="#ffffff"/>
|
|
||||||
<style name="rubyonrails:regex" foreground="#f6aa11"/>
|
|
||||||
<style name="rubyonrails:simple-interpolation" foreground="#be84ff"/>
|
|
||||||
<style name="rubyonrails:special-variable" foreground="#f92672"/>
|
|
||||||
<style name="rubyonrails:symbol" foreground="#be84ff"/>
|
|
||||||
<style name="search-match" background="#333333" bold="true" underline="true"/>
|
|
||||||
<style name="selection" foreground="#f8f8f2" background="#444444"/>
|
|
||||||
<style name="text" foreground="#f8f8f2" background="#222222"/>
|
|
||||||
<style name="xml:attribute-name" foreground="#a6e22e"/>
|
|
||||||
<style name="xml:element-name" foreground="#f92672"/>
|
|
||||||
<style name="xml:entity" foreground="#c8cecc"/>
|
|
||||||
<style name="xml:namespace" foreground="#f92672"/>
|
|
||||||
<style name="xml:tag" foreground="#f92672"/>
|
|
||||||
|
|
||||||
|
|
||||||
</style-scheme>
|
|
||||||
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
{
|
|
||||||
"background": "{{colors.background.default.hex}}",
|
|
||||||
"error": "{{colors.error.default.hex}}",
|
|
||||||
"error_container": "{{colors.error_container.default.hex}}",
|
|
||||||
"inverse_on_surface": "{{colors.inverse_on_surface.default.hex}}",
|
|
||||||
"inverse_primary": "{{colors.inverse_primary.default.hex}}",
|
|
||||||
"inverse_surface": "{{colors.inverse_surface.default.hex}}",
|
|
||||||
"on_background": "{{colors.on_background.default.hex}}",
|
|
||||||
"on_error": "{{colors.on_error.default.hex}}",
|
|
||||||
"on_error_container": "{{colors.on_error_container.default.hex}}",
|
|
||||||
"on_primary": "{{colors.on_primary.default.hex}}",
|
|
||||||
"on_primary_container": "{{colors.on_primary_container.default.hex}}",
|
|
||||||
"on_primary_fixed": "{{colors.on_primary_fixed.default.hex}}",
|
|
||||||
"on_primary_fixed_variant": "{{colors.on_primary_fixed_variant.default.hex}}",
|
|
||||||
"on_secondary": "{{colors.on_secondary.default.hex}}",
|
|
||||||
"on_secondary_container": "{{colors.on_secondary_container.default.hex}}",
|
|
||||||
"on_secondary_fixed": "{{colors.on_secondary_fixed.default.hex}}",
|
|
||||||
"on_secondary_fixed_variant": "{{colors.on_secondary_fixed_variant.default.hex}}",
|
|
||||||
"on_surface": "{{colors.on_surface.default.hex}}",
|
|
||||||
"on_surface_variant": "{{colors.on_surface_variant.default.hex}}",
|
|
||||||
"on_tertiary": "{{colors.on_tertiary.default.hex}}",
|
|
||||||
"on_tertiary_container": "{{colors.on_tertiary_container.default.hex}}",
|
|
||||||
"on_tertiary_fixed": "{{colors.on_tertiary_fixed.default.hex}}",
|
|
||||||
"on_tertiary_fixed_variant": "{{colors.on_tertiary_fixed_variant.default.hex}}",
|
|
||||||
"outline": "{{colors.outline.default.hex}}",
|
|
||||||
"outline_variant": "{{colors.outline_variant.default.hex}}",
|
|
||||||
"primary": "{{colors.primary.default.hex}}",
|
|
||||||
"primary_container": "{{colors.primary_container.default.hex}}",
|
|
||||||
"primary_fixed": "{{colors.primary_fixed.default.hex}}",
|
|
||||||
"primary_fixed_dim": "{{colors.primary_fixed_dim.default.hex}}",
|
|
||||||
"scrim": "{{colors.scrim.default.hex}}",
|
|
||||||
"secondary": "{{colors.secondary.default.hex}}",
|
|
||||||
"secondary_container": "{{colors.secondary_container.default.hex}}",
|
|
||||||
"secondary_fixed": "{{colors.secondary_fixed.default.hex}}",
|
|
||||||
"secondary_fixed_dim": "{{colors.secondary_fixed_dim.default.hex}}",
|
|
||||||
"shadow": "{{colors.shadow.default.hex}}",
|
|
||||||
"surface": "{{colors.surface.default.hex}}",
|
|
||||||
"surface_bright": "{{colors.surface_bright.default.hex}}",
|
|
||||||
"surface_container": "{{colors.surface_container.default.hex}}",
|
|
||||||
"surface_container_high": "{{colors.surface_container_high.default.hex}}",
|
|
||||||
"surface_container_highest": "{{colors.surface_container_highest.default.hex}}",
|
|
||||||
"surface_container_low": "{{colors.surface_container_low.default.hex}}",
|
|
||||||
"surface_container_lowest": "{{colors.surface_container_lowest.default.hex}}",
|
|
||||||
"surface_dim": "{{colors.surface_dim.default.hex}}",
|
|
||||||
"surface_tint": "{{colors.surface_tint.default.hex}}",
|
|
||||||
"surface_variant": "{{colors.surface_variant.default.hex}}",
|
|
||||||
"tertiary": "{{colors.tertiary.default.hex}}",
|
|
||||||
"tertiary_container": "{{colors.tertiary_container.default.hex}}",
|
|
||||||
"tertiary_fixed": "{{colors.tertiary_fixed.default.hex}}",
|
|
||||||
"tertiary_fixed_dim": "{{colors.tertiary_fixed_dim.default.hex}}"
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
[colors]
|
|
||||||
background={{colors.background.default.hex_stripped}}ff
|
|
||||||
text={{colors.on_background.default.hex_stripped}}ff
|
|
||||||
selection={{colors.surface_variant.default.hex_stripped}}ff
|
|
||||||
selection-text={{colors.on_surface_variant.default.hex_stripped}}ff
|
|
||||||
border={{colors.surface_variant.default.hex_stripped}}dd
|
|
||||||
match={{colors.primary.default.hex_stripped}}ff
|
|
||||||
selection-match={{colors.primary.default.hex_stripped}}ff
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
/*
|
|
||||||
* GTK colors generated with Matugen
|
|
||||||
* The source template is here: ~/.config/matugen/templates/gtk-3.0/gtk.css
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Accents */
|
|
||||||
@define-color accent_color {{colors.primary.default.hex}};
|
|
||||||
@define-color accent_fg_color {{colors.on_primary.default.hex}};
|
|
||||||
@define-color accent_bg_color {{colors.primary.default.hex}};
|
|
||||||
@define-color destructive_bg_color {{colors.error_container.default.hex}};
|
|
||||||
@define-color destructive_fg_color {{colors.on_error_container.default.hex}};
|
|
||||||
@define-color destructive_color {{colors.error.default.hex}};
|
|
||||||
@define-color success_bg_color #374B3E;
|
|
||||||
@define-color success_fg_color #D1E9D6;
|
|
||||||
@define-color success_color #B5CCBA;
|
|
||||||
/* Base surfaces */
|
|
||||||
@define-color window_bg_color {{colors.background.default.hex}};
|
|
||||||
@define-color window_fg_color {{colors.on_background.default.hex}};
|
|
||||||
@define-color headerbar_bg_color {{colors.surface_container.default.hex}};
|
|
||||||
@define-color headerbar_backdrop_color {{colors.surface_container.default.hex}};
|
|
||||||
@define-color headerbar_fg_color {{colors.on_surface.default.hex}};
|
|
||||||
@define-color card_bg_color {{colors.surface_container.default.hex}};
|
|
||||||
@define-color card_fg_color {{colors.on_surface.default.hex}};
|
|
||||||
@define-color sidebar_bg_color {{colors.surface_container.default.hex}};
|
|
||||||
@define-color sidebar_fg_color {{colors.on_surface.default.hex}};
|
|
||||||
@define-color secondary_sidebar_bg_color {{colors.surface_container_low.default.hex}};
|
|
||||||
@define-color secondary_sidebar_fg_color {{colors.on_surface.default.hex}};
|
|
||||||
@define-color sidebar_border_color @sidebar_bg_color;
|
|
||||||
@define-color sidebar_backdrop_color @sidebar_bg_color;
|
|
||||||
@define-color view_bg_color {{colors.surface_container_lowest.default.hex}};
|
|
||||||
@define-color view_fg_color {{colors.on_surface.default.hex}};
|
|
||||||
@define-color overview_bg_color {{colors.surface_container_lowest.default.hex}};
|
|
||||||
@define-color overview_fg_color {{colors.on_surface.default.hex}};
|
|
||||||
/* Popups */
|
|
||||||
@define-color popover_bg_color {{colors.surface_container_highest.default.hex}};
|
|
||||||
@define-color popover_fg_color {{colors.on_surface.default.hex}};
|
|
||||||
@define-color dialog_bg_color {{colors.surface_container_high.default.hex}};
|
|
||||||
@define-color dialog_fg_color {{colors.on_surface.default.hex}};
|
|
||||||
@@ -1,541 +0,0 @@
|
|||||||
/*
|
|
||||||
* GTK colors generated with Matugen
|
|
||||||
* The source template is here: ~/.config/matugen/templates/gtk-4.0/gtk.css
|
|
||||||
*/
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
/* Accents */
|
|
||||||
@define-color accent_color {{colors.primary.light.hex}};
|
|
||||||
@define-color accent_hover_color rgba({{colors.primary.light.red}}, {{colors.primary.light.green}}, {{colors.primary.light.blue}}, 0.08);
|
|
||||||
@define-color accent_vibrant_hover_color rgba({{colors.primary.light.red}}, {{colors.primary.light.green}}, {{colors.primary.light.blue}}, 0.18);
|
|
||||||
@define-color accent_active_color rgba({{colors.primary.light.red}}, {{colors.primary.light.green}}, {{colors.primary.light.blue}}, 0.1);
|
|
||||||
@define-color accent_vibrant_active_color rgba({{colors.primary.light.red}}, {{colors.primary.light.green}}, {{colors.primary.light.blue}}, 0.26);
|
|
||||||
@define-color accent_fg_color {{colors.on_primary.light.hex}};
|
|
||||||
@define-color accent_bg_color {{colors.primary.light.hex}};
|
|
||||||
@define-color destructive_bg_color {{colors.error_container.light.hex}};
|
|
||||||
@define-color destructive_fg_color {{colors.on_error_container.light.hex}};
|
|
||||||
@define-color destructive_color {{colors.error.light.hex}};
|
|
||||||
@define-color success_bg_color #B5CCBA;
|
|
||||||
@define-color success_fg_color #213528;
|
|
||||||
@define-color success_color #374B3E;
|
|
||||||
/* Base surfaces */
|
|
||||||
@define-color window_bg_color {{colors.background.light.hex}};
|
|
||||||
@define-color window_fg_color {{colors.on_background.light.hex}};
|
|
||||||
@define-color headerbar_bg_color {{colors.surface_container.light.hex}};
|
|
||||||
@define-color headerbar_backdrop_color {{colors.surface_container.light.hex}};
|
|
||||||
@define-color headerbar_fg_color {{colors.on_surface.light.hex}};
|
|
||||||
@define-color card_bg_color {{colors.surface_container.light.hex}};
|
|
||||||
@define-color card_fg_color {{colors.on_surface.light.hex}};
|
|
||||||
@define-color sidebar_bg_color {{colors.background.light.hex}};
|
|
||||||
@define-color sidebar_fg_color {{colors.on_surface.light.hex}};
|
|
||||||
@define-color sidebar_row_active_bg_color {{colors.secondary_container.light.hex}};
|
|
||||||
@define-color sidebar_row_active_fg_color {{colors.on_secondary_container.light.hex}};
|
|
||||||
@define-color secondary_sidebar_bg_color {{colors.surface_container_low.light.hex}};
|
|
||||||
@define-color secondary_sidebar_backdrop_color {{colors.surface_container_low.light.hex}};
|
|
||||||
@define-color secondary_sidebar_fg_color {{colors.on_surface_variant.light.hex}};
|
|
||||||
@define-color sidebar_border_color @sidebar_bg_color;
|
|
||||||
@define-color sidebar_backdrop_color @sidebar_bg_color;
|
|
||||||
@define-color view_bg_color {{colors.surface_container_lowest.light.hex}};
|
|
||||||
@define-color view_fg_color {{colors.on_surface.light.hex}};
|
|
||||||
@define-color overview_bg_color {{colors.surface_container_lowest.light.hex}};
|
|
||||||
@define-color overview_fg_color {{colors.on_surface.light.hex}};
|
|
||||||
/* Popups */
|
|
||||||
@define-color popover_bg_color {{colors.surface_container_highest.light.hex}};
|
|
||||||
@define-color popover_fg_color {{colors.on_surface.light.hex}};
|
|
||||||
@define-color popover_fg_hover_color rgba({{colors.on_surface.light.red}}, {{colors.on_surface.light.green}}, {{colors.on_surface.light.blue}}, 0.08);
|
|
||||||
@define-color dialog_bg_color {{colors.surface_container_high.light.hex}};
|
|
||||||
@define-color dialog_fg_color {{colors.on_surface.light.hex}};
|
|
||||||
@define-color thumbnail_bg_color {{colors.surface_container_high.light.hex}};
|
|
||||||
@define-color thumbnail_fg_color {{colors.on_surface.light.hex}};
|
|
||||||
|
|
||||||
/* Material */
|
|
||||||
@define-color inverse_on_surface {{colors.inverse_on_surface.light.hex}};
|
|
||||||
@define-color inverse_primary {{colors.inverse_primary.light.hex}};
|
|
||||||
@define-color inverse_surface {{colors.inverse_surface.light.hex}};
|
|
||||||
@define-color surface_container_highest {{colors.surface_container_highest.light.hex}};
|
|
||||||
@define-color surface_container_high {{colors.surface_container_high.light.hex}};
|
|
||||||
@define-color on_surface_variant {{colors.on_surface_variant.light.hex}};
|
|
||||||
@define-color surface_variant {{colors.surface_variant.light.hex}};
|
|
||||||
|
|
||||||
@define-color outline {{colors.outline.light.hex}};
|
|
||||||
|
|
||||||
/* Material state layers */
|
|
||||||
@define-color inverse_on_surface_hover rgba({{colors.inverse_on_surface.light.red}}, {{colors.inverse_on_surface.light.green}}, {{colors.inverse_on_surface.light.blue}}, 0.08);
|
|
||||||
@define-color inverse_on_surface_active rgba({{colors.inverse_on_surface.light.red}}, {{colors.inverse_on_surface.light.green}}, {{colors.inverse_on_surface.light.blue}}, 0.18);
|
|
||||||
@define-color inverse_primary_hover rgba({{colors.inverse_primary.light.red}}, {{colors.inverse_primary.light.green}}, {{colors.inverse_primary.light.blue}}, 0.08);
|
|
||||||
@define-color inverse_primary_active rgba({{colors.inverse_primary.light.red}}, {{colors.inverse_primary.light.green}}, {{colors.inverse_primary.light.blue}}, 0.18);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
/* Accents */
|
|
||||||
@define-color accent_color {{colors.primary.dark.hex}};
|
|
||||||
@define-color accent_hover_color rgba({{colors.primary.dark.red}}, {{colors.primary.dark.green}}, {{colors.primary.dark.blue}}, 0.08);
|
|
||||||
@define-color accent_vibrant_hover_color rgba({{colors.primary.dark.red}}, {{colors.primary.dark.green}}, {{colors.primary.dark.blue}}, 0.18);
|
|
||||||
@define-color accent_active_color rgba({{colors.primary.dark.red}}, {{colors.primary.dark.green}}, {{colors.primary.dark.blue}}, 0.1);
|
|
||||||
@define-color accent_vibrant_active_color rgba({{colors.primary.dark.red}}, {{colors.primary.dark.green}}, {{colors.primary.dark.blue}}, 0.2);
|
|
||||||
@define-color accent_fg_color {{colors.on_primary.dark.hex}};
|
|
||||||
@define-color accent_bg_color {{colors.primary.dark.hex}};
|
|
||||||
@define-color destructive_bg_color {{colors.error_container.dark.hex}};
|
|
||||||
@define-color destructive_fg_color {{colors.on_error_container.dark.hex}};
|
|
||||||
@define-color destructive_color {{colors.error.dark.hex}};
|
|
||||||
@define-color success_bg_color #374B3E;
|
|
||||||
@define-color success_fg_color #D1E9D6;
|
|
||||||
@define-color success_color #B5CCBA;
|
|
||||||
/* Base surfaces */
|
|
||||||
@define-color window_bg_color {{colors.background.dark.hex}};
|
|
||||||
@define-color window_fg_color {{colors.on_background.dark.hex}};
|
|
||||||
@define-color headerbar_bg_color {{colors.surface_container.dark.hex}};
|
|
||||||
@define-color headerbar_backdrop_color {{colors.surface_container.dark.hex}};
|
|
||||||
@define-color headerbar_fg_color {{colors.on_surface.dark.hex}};
|
|
||||||
@define-color card_bg_color {{colors.surface_container.dark.hex}};
|
|
||||||
@define-color card_fg_color {{colors.on_surface.dark.hex}};
|
|
||||||
@define-color sidebar_bg_color {{colors.background.dark.hex}};
|
|
||||||
@define-color sidebar_fg_color {{colors.on_surface.dark.hex}};
|
|
||||||
@define-color sidebar_row_active_bg_color {{colors.secondary_container.dark.hex}};
|
|
||||||
@define-color sidebar_row_active_fg_color {{colors.on_secondary_container.dark.hex}};
|
|
||||||
@define-color secondary_sidebar_bg_color {{colors.surface_container_low.dark.hex}};
|
|
||||||
@define-color secondary_sidebar_backdrop_color {{colors.surface_container_low.dark.hex}};
|
|
||||||
@define-color secondary_sidebar_fg_color {{colors.on_surface_variant.dark.hex}};
|
|
||||||
@define-color sidebar_border_color @sidebar_bg_color;
|
|
||||||
@define-color sidebar_backdrop_color @sidebar_bg_color;
|
|
||||||
@define-color view_bg_color {{colors.surface_container_lowest.dark.hex}};
|
|
||||||
@define-color view_fg_color {{colors.on_surface.dark.hex}};
|
|
||||||
@define-color overview_bg_color {{colors.surface_container_lowest.dark.hex}};
|
|
||||||
@define-color overview_fg_color {{colors.on_surface.dark.hex}};
|
|
||||||
/* Popups */
|
|
||||||
@define-color popover_bg_color {{colors.surface_container_highest.dark.hex}};
|
|
||||||
@define-color popover_fg_color {{colors.on_surface.dark.hex}};
|
|
||||||
@define-color popover_fg_hover_color rgba({{colors.on_surface.dark.red}}, {{colors.on_surface.dark.green}}, {{colors.on_surface.dark.blue}}, 0.08);
|
|
||||||
@define-color dialog_bg_color {{colors.surface_container_high.dark.hex}};
|
|
||||||
@define-color dialog_fg_color {{colors.on_surface.dark.hex}};
|
|
||||||
@define-color thumbnail_bg_color {{colors.surface_container_high.dark.hex}};
|
|
||||||
@define-color thumbnail_fg_color {{colors.on_surface.dark.hex}};
|
|
||||||
|
|
||||||
/* Material */
|
|
||||||
@define-color inverse_on_surface {{colors.inverse_on_surface.dark.hex}};
|
|
||||||
@define-color inverse_primary {{colors.inverse_primary.dark.hex}};
|
|
||||||
@define-color inverse_surface {{colors.inverse_surface.dark.hex}};
|
|
||||||
@define-color surface_container_highest {{colors.surface_container_highest.dark.hex}};
|
|
||||||
@define-color surface_container_high {{colors.surface_container_high.dark.hex}};
|
|
||||||
@define-color on_surface_variant {{colors.on_surface_variant.dark.hex}};
|
|
||||||
@define-color surface_variant {{colors.surface_variant.dark.hex}};
|
|
||||||
|
|
||||||
@define-color outline {{colors.outline.dark.hex}};
|
|
||||||
|
|
||||||
/* Material state layers */
|
|
||||||
@define-color inverse_on_surface_hover rgba({{colors.inverse_on_surface.dark.red}}, {{colors.inverse_on_surface.dark.green}}, {{colors.inverse_on_surface.dark.blue}}, 0.08);
|
|
||||||
@define-color inverse_on_surface_active rgba({{colors.inverse_on_surface.dark.red}}, {{colors.inverse_on_surface.dark.green}}, {{colors.inverse_on_surface.dark.blue}}, 0.18);
|
|
||||||
@define-color inverse_primary_hover rgba({{colors.inverse_primary.dark.red}}, {{colors.inverse_primary.dark.green}}, {{colors.inverse_primary.dark.blue}}, 0.08);
|
|
||||||
@define-color inverse_primary_active rgba({{colors.inverse_primary.dark.red}}, {{colors.inverse_primary.dark.green}}, {{colors.inverse_primary.dark.blue}}, 0.18);
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
caret-color: @accent_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
window {
|
|
||||||
background: @window_bg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button {
|
|
||||||
border-radius: 999px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button,
|
|
||||||
.text-button * {
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
splitbutton {
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
splitbutton button {
|
|
||||||
border-top-left-radius: 999px;
|
|
||||||
border-bottom-left-radius: 999px;
|
|
||||||
border-top-right-radius: 4px;
|
|
||||||
border-bottom-right-radius: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
splitbutton separator {
|
|
||||||
color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
splitbutton menubutton {
|
|
||||||
border-top-left-radius: 4px;
|
|
||||||
border-bottom-left-radius: 4px;
|
|
||||||
border-top-right-radius: 999px;
|
|
||||||
border-bottom-right-radius: 999px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popup-menu-item {
|
|
||||||
background-color: transparent;
|
|
||||||
border-radius: 999px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar #NautilusPathButton *,
|
|
||||||
.nautilus-pathbar .nautilus-path-button * {
|
|
||||||
color: @sidebar_row_active_fg_color;
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar #NautilusPathButton,
|
|
||||||
.nautilus-pathbar .nautilus-path-button {
|
|
||||||
background: @accent_active_color;
|
|
||||||
border-radius: 4px;
|
|
||||||
margin: 0;
|
|
||||||
margin-right: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar #NautilusPathButton:hover,
|
|
||||||
.nautilus-pathbar .nautilus-path-button:hover {
|
|
||||||
background: @accent_vibrant_hover_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar #NautilusPathButton:active,
|
|
||||||
.nautilus-pathbar .nautilus-path-button:active {
|
|
||||||
background: @accent_vibrant_active_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathButton,
|
|
||||||
.nautilus-pathbar {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar box box:first-child #NautilusPathButton,
|
|
||||||
.nautilus-pathbar box box:first-child .nautilus-path-button {
|
|
||||||
border-radius: 24px 4px 4px 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar box box:last-child #NautilusPathButton,
|
|
||||||
.nautilus-pathbar box box:last-child .nautilus-path-button {
|
|
||||||
border-radius: 4px 24px 24px 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar #NautilusPathButton.current-dir.current-dir,
|
|
||||||
.nautilus-pathbar .nautilus-path-button.current-dir.current-dir {
|
|
||||||
border-radius: 999px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar .dim-label,
|
|
||||||
.nautilus-pathbar .dim-label {
|
|
||||||
font-size: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar button .dim-label,
|
|
||||||
.nautilus-pathbar button .dim-label {
|
|
||||||
font-size: 14px;
|
|
||||||
opacity: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#NautilusPathBar button,
|
|
||||||
.nautilus-pathbar button {
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
#NautilusPathBar button:checked,
|
|
||||||
.nautilus-pathbar button:checked {
|
|
||||||
background: @accent_vibrant_hover_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
headerbar button {
|
|
||||||
border-radius: 999px;
|
|
||||||
}
|
|
||||||
|
|
||||||
headerbar >windowhandle box stack > box:nth-child(2) {
|
|
||||||
background: @accent_active_color;
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nautilus-list-view,
|
|
||||||
.nautilus-grid-view {
|
|
||||||
background: @secondary_sidebar_bg_color;
|
|
||||||
border-radius: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigation-sidebar row * {
|
|
||||||
color: @sidebar_fg_color;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigation-sidebar row {
|
|
||||||
border-radius: 999px;
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigation-sidebar row:hover {
|
|
||||||
background: @accent_hover_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigation-sidebar row:active {
|
|
||||||
background: @accent_active_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigation-sidebar row:selected {
|
|
||||||
background: @sidebar_row_active_bg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigation-sidebar row:selected * {
|
|
||||||
color: @sidebar_row_active_fg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
banner widget {
|
|
||||||
border-radius: 16px 0 0 16px;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
background-color: @secondary_sidebar_bg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boxed-list {
|
|
||||||
box-shadow: none;
|
|
||||||
background-color: @window_bg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boxed-list row {
|
|
||||||
background: @card_bg_color;
|
|
||||||
border-radius: 4px;
|
|
||||||
border: none;
|
|
||||||
margin-bottom: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boxed-list row.activatable:hover {
|
|
||||||
background-color: @thumbnail_bg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boxed-list row.activatable:active {
|
|
||||||
background-color: @popover_bg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.horizontal>listview>row {
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boxed-list row:insensitive {
|
|
||||||
background-color: @card_bg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button.toggle {
|
|
||||||
border-radius: 4px;
|
|
||||||
background-color: @surface_container_highest;
|
|
||||||
margin-left: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button.toggle:hover {
|
|
||||||
background-color: @surface_variant;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button.toggle:active {
|
|
||||||
background-color: @surface_container_highest;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button.toggle * {
|
|
||||||
color: @on_surface_variant;
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boxed-list row:first-child {
|
|
||||||
border-radius: 16px 16px 4px 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boxed-list row:last-child {
|
|
||||||
border-radius: 4px 4px 16px 16px;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button.toggle:first-child {
|
|
||||||
border-radius: 16px 4px 4px 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button.toggle:last-child {
|
|
||||||
border-radius: 4px 16px 16px 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boxed-list row:first-child:last-child,
|
|
||||||
.text-button.toggle:first-child:last-child {
|
|
||||||
border-radius: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button.toggle:checked {
|
|
||||||
background-color: @accent_bg_color;
|
|
||||||
border-radius: 999px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-button.toggle:checked * {
|
|
||||||
color: @accent_fg_color;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.back {
|
|
||||||
border-radius: 999px;
|
|
||||||
background-color: @accent_hover_color;
|
|
||||||
padding-left: 4px;
|
|
||||||
padding-right: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.back * {
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.back:hover {
|
|
||||||
background-color: @accent_hover_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.back:active {
|
|
||||||
background-color: @accent_active_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* switch */
|
|
||||||
|
|
||||||
switch {
|
|
||||||
background: @secondary_sidebar_bg_color;
|
|
||||||
border: @outline 2px solid;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch:checked {
|
|
||||||
background: @accent_color;
|
|
||||||
border-color: @accent_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch slider {
|
|
||||||
background: @outline;
|
|
||||||
margin: 3px;
|
|
||||||
min-width: 0;
|
|
||||||
min-height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch:checked slider {
|
|
||||||
background: @accent_fg_color;
|
|
||||||
outline: transparent 2px solid;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* toast */
|
|
||||||
|
|
||||||
toast {
|
|
||||||
border-radius: 999px;
|
|
||||||
padding: 6px 6px 6px 10px;
|
|
||||||
background-color: @inverse_surface;
|
|
||||||
color: @inverse_on_surface;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast .heading {
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast button {
|
|
||||||
background-color: transparent;
|
|
||||||
color: @inverse_primary;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast button:hover {
|
|
||||||
background-color: @inverse_primary_hover;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast button:active {
|
|
||||||
background-color: @inverse_primary_active;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast button:last-child {
|
|
||||||
color: @inverse_on_surface;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast button:last-child:hover {
|
|
||||||
background-color: @inverse_on_surface_hover;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast button:last-child:active {
|
|
||||||
background-color: @inverse_on_surface_active;
|
|
||||||
}
|
|
||||||
|
|
||||||
.collapse-spacing.vertical {
|
|
||||||
padding-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
tabbox {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
tabbox tabboxchild tab,
|
|
||||||
tabbox tabboxchild {
|
|
||||||
background: transparent;
|
|
||||||
padding: 0 8px 3px;
|
|
||||||
border-radius: 999px;
|
|
||||||
}
|
|
||||||
|
|
||||||
tabbox tabboxchild tab {
|
|
||||||
padding: 3px 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
tab:hover {
|
|
||||||
background: @accent_hover_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
tab:active,
|
|
||||||
tab:selected {
|
|
||||||
background: @accent_active_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
tab .tab-title {
|
|
||||||
padding: 0 12px;
|
|
||||||
color: @secondary_sidebar_fg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
tab .tab-title label {
|
|
||||||
border: none;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
tab:selected .tab-title label {
|
|
||||||
padding: 6px 0;
|
|
||||||
color: @accent_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* popup menu */
|
|
||||||
|
|
||||||
popover listview.view row,
|
|
||||||
popover listview.view row:first-child,
|
|
||||||
popover listview.view row:last-child {
|
|
||||||
background: transparent;
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
popover contents,
|
|
||||||
popover arrow {
|
|
||||||
background: @secondary_sidebar_bg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
popover listview.view row:hover {
|
|
||||||
background: @popover_fg_hover_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
popover listview.view row:active {
|
|
||||||
background: @popover_fg_active_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
modelbutton {
|
|
||||||
padding: 2px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
modelbutton * {
|
|
||||||
color: @popover_fg_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
modelbutton:hover {
|
|
||||||
background-color: @popover_fg_hover_color;
|
|
||||||
}
|
|
||||||
|
|
||||||
tooltip {
|
|
||||||
background-color: @inverse_surface;
|
|
||||||
color: @inverse_on_surface;
|
|
||||||
font-size: 11px;
|
|
||||||
padding: 5px 9px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* search */
|
|
||||||
|
|
||||||
.entry-completion.entry-completion.entry-completion contents {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
.image-button.flat arrow {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
hl.config({
|
|
||||||
general = {
|
|
||||||
col = {
|
|
||||||
active_border = "rgba({{colors.outline_variant.default.hex_stripped}}77)",
|
|
||||||
inactive_border = "rgba({{colors.surface_container_low.default.hex_stripped}}33)",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
misc = {
|
|
||||||
background_color = "rgba({{colors.surface.dark.hex_stripped}}FF)",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
hl.window_rule({
|
|
||||||
match = { pin = 1 },
|
|
||||||
border_color = "rgba({{colors.primary.default.hex_stripped}}AA) rgba({{colors.primary.default.hex_stripped}}77)",
|
|
||||||
})
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
# This configuration is generated by matugen
|
|
||||||
# Changing these variables with matugen still enabled will overwrite them.
|
|
||||||
|
|
||||||
$text_color = rgba({{colors.primary_fixed.default.hex_stripped}}FF)
|
|
||||||
$entry_background_color = rgba({{colors.on_primary_fixed.default.hex_stripped}}11)
|
|
||||||
$entry_border_color = rgba({{colors.outline.default.hex_stripped}}55)
|
|
||||||
$entry_color = rgba({{colors.primary_fixed.default.hex_stripped}}FF)
|
|
||||||
$font_family = Google Sans Flex Medium
|
|
||||||
$font_family_clock = Google Sans Flex Medium
|
|
||||||
$font_material_symbols = Material Symbols Rounded
|
|
||||||
|
|
||||||
$background_image = {{image}}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{{colors.source_color.default.hex}}
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}"
|
|
||||||
|
|
||||||
color=$(tr -d '\n' < "$XDG_STATE_HOME/quickshell/user/generated/color.txt")
|
|
||||||
|
|
||||||
current_mode=$(gsettings get org.gnome.desktop.interface color-scheme 2>/dev/null | tr -d "'")
|
|
||||||
if [[ "$current_mode" == "prefer-dark" ]]; then
|
|
||||||
mode_flag="-d"
|
|
||||||
else
|
|
||||||
mode_flag="-l"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Parse --scheme-variant flag
|
|
||||||
scheme_variant_str=""
|
|
||||||
while [[ $# -gt 0 ]]; do
|
|
||||||
case "$1" in
|
|
||||||
--scheme-variant)
|
|
||||||
scheme_variant_str="$2"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
# Map string variant to integer
|
|
||||||
case "$scheme_variant_str" in
|
|
||||||
scheme-content) sv_num=0 ;;
|
|
||||||
scheme-expressive) sv_num=1 ;;
|
|
||||||
scheme-fidelity) sv_num=2 ;;
|
|
||||||
scheme-monochrome) sv_num=3 ;;
|
|
||||||
scheme-neutral) sv_num=4 ;;
|
|
||||||
scheme-tonal-spot) sv_num=5 ;;
|
|
||||||
scheme-vibrant) sv_num=6 ;;
|
|
||||||
scheme-rainbow) sv_num=7 ;;
|
|
||||||
scheme-fruit-salad) sv_num=8 ;;
|
|
||||||
"") sv_num=5 ;;
|
|
||||||
*)
|
|
||||||
echo "Unknown scheme variant: $scheme_variant_str" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
source "$(eval echo $ILLOGICAL_IMPULSE_VIRTUAL_ENV)/bin/activate"
|
|
||||||
kde-material-you-colors "$mode_flag" --color "$color" -sv "$sv_num"
|
|
||||||
deactivate
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{{image}}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
[General]
|
|
||||||
UseTabs=false
|
|
||||||
IndentWidth=4
|
|
||||||
NewlineType=unix
|
|
||||||
NormalizeOrder=false
|
|
||||||
FunctionsSpacing=false
|
|
||||||
ObjectsSpacing=true
|
|
||||||
MaxColumnWidth=110
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
import qs.modules.common
|
|
||||||
import qs.services
|
|
||||||
import QtQuick
|
|
||||||
import Quickshell
|
|
||||||
import Quickshell.Hyprland
|
|
||||||
import Quickshell.Io
|
|
||||||
pragma Singleton
|
|
||||||
pragma ComponentBehavior: Bound
|
|
||||||
|
|
||||||
Singleton {
|
|
||||||
id: root
|
|
||||||
property bool barOpen: true
|
|
||||||
property bool crosshairOpen: false
|
|
||||||
property bool sidebarLeftOpen: false
|
|
||||||
property bool sidebarRightOpen: false
|
|
||||||
property bool mediaControlsOpen: false
|
|
||||||
property bool osdBrightnessOpen: false
|
|
||||||
property bool osdVolumeOpen: false
|
|
||||||
property bool oskOpen: false
|
|
||||||
property bool overlayOpen: false
|
|
||||||
property bool overviewOpen: false
|
|
||||||
property bool regionSelectorOpen: false
|
|
||||||
property bool searchOpen: false
|
|
||||||
property bool screenLocked: false
|
|
||||||
property bool screenLockContainsCharacters: false
|
|
||||||
property bool screenUnlockFailed: false
|
|
||||||
property bool screenTranslatorOpen: false
|
|
||||||
property bool sessionOpen: false
|
|
||||||
property bool superDown: false
|
|
||||||
property bool superReleaseMightTrigger: true
|
|
||||||
property bool wallpaperSelectorOpen: false
|
|
||||||
property bool workspaceShowNumbers: false
|
|
||||||
|
|
||||||
onSidebarRightOpenChanged: {
|
|
||||||
if (GlobalStates.sidebarRightOpen) {
|
|
||||||
Notifications.timeoutAll();
|
|
||||||
Notifications.markAllRead();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
GlobalShortcut {
|
|
||||||
name: "workspaceNumber"
|
|
||||||
description: "Hold to show workspace numbers, release to show icons"
|
|
||||||
|
|
||||||
onPressed: {
|
|
||||||
root.superDown = true
|
|
||||||
}
|
|
||||||
onReleased: {
|
|
||||||
root.superDown = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,172 +0,0 @@
|
|||||||
pragma ComponentBehavior: Bound
|
|
||||||
import QtQuick
|
|
||||||
import QtQuick.Effects
|
|
||||||
import QtQuick.Layouts
|
|
||||||
import Quickshell
|
|
||||||
import Quickshell.Wayland
|
|
||||||
|
|
||||||
Scope {
|
|
||||||
id: root
|
|
||||||
property bool failed
|
|
||||||
property string errorString
|
|
||||||
property real progressHeight: 3
|
|
||||||
|
|
||||||
// Connect to the Quickshell global to listen for the reload signals.
|
|
||||||
Connections {
|
|
||||||
target: Quickshell
|
|
||||||
|
|
||||||
function onReloadCompleted() {
|
|
||||||
root.failed = false;
|
|
||||||
popupLoader.loading = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function onReloadFailed(error: string) {
|
|
||||||
// Close any existing popup before making a new one.
|
|
||||||
popupLoader.active = false;
|
|
||||||
|
|
||||||
root.failed = true;
|
|
||||||
root.errorString = error;
|
|
||||||
popupLoader.loading = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Keep the popup in a loader because it isn't needed most of the time
|
|
||||||
LazyLoader {
|
|
||||||
id: popupLoader
|
|
||||||
|
|
||||||
PanelWindow {
|
|
||||||
id: popup
|
|
||||||
|
|
||||||
exclusiveZone: 0
|
|
||||||
anchors.top: true
|
|
||||||
margins.top: 0
|
|
||||||
|
|
||||||
implicitWidth: rect.width + 8 * 2
|
|
||||||
implicitHeight: rect.height + 8 * 2
|
|
||||||
|
|
||||||
WlrLayershell.namespace: "quickshell:reloadPopup"
|
|
||||||
|
|
||||||
// color blending is a bit odd as detailed in the type reference.
|
|
||||||
color: "transparent"
|
|
||||||
|
|
||||||
RectangularShadow {
|
|
||||||
anchors.fill: rect
|
|
||||||
radius: rect.radius
|
|
||||||
blur: 6.3
|
|
||||||
offset: Qt.vector2d(0.0, 1.0)
|
|
||||||
spread: 1
|
|
||||||
color: "#55000000"
|
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
id: rect
|
|
||||||
anchors.centerIn: parent
|
|
||||||
color: root.failed ? "#ffe99195" : "#ffD1E8D5"
|
|
||||||
|
|
||||||
implicitHeight: layout.implicitHeight + 30
|
|
||||||
implicitWidth: layout.implicitWidth + 30
|
|
||||||
radius: 8
|
|
||||||
|
|
||||||
// Fills the whole area of the rectangle, making any clicks go to it,
|
|
||||||
// which dismiss the popup.
|
|
||||||
MouseArea {
|
|
||||||
id: mouseArea
|
|
||||||
anchors.fill: parent
|
|
||||||
onPressed: {
|
|
||||||
popupLoader.active = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// makes the mouse area track mouse hovering, so the hide animation
|
|
||||||
// can be paused when hovering.
|
|
||||||
hoverEnabled: true
|
|
||||||
}
|
|
||||||
|
|
||||||
ColumnLayout {
|
|
||||||
id: layout
|
|
||||||
spacing: 10
|
|
||||||
anchors {
|
|
||||||
top: parent.top
|
|
||||||
topMargin: 10
|
|
||||||
horizontalCenter: parent.horizontalCenter
|
|
||||||
}
|
|
||||||
|
|
||||||
Text {
|
|
||||||
id: title
|
|
||||||
renderType: Text.NativeRendering
|
|
||||||
font.family: "Google Sans Flex"
|
|
||||||
font.pointSize: 14
|
|
||||||
text: root.failed ? "Quickshell: Reload failed" : "Quickshell reloaded"
|
|
||||||
color: root.failed ? "#ff93000A" : "#ff0C1F13"
|
|
||||||
}
|
|
||||||
|
|
||||||
Text {
|
|
||||||
id: info
|
|
||||||
renderType: Text.NativeRendering
|
|
||||||
font.family: "JetBrains Mono NF"
|
|
||||||
font.pointSize: 11
|
|
||||||
text: root.errorString
|
|
||||||
color: root.failed ? "#ff93000A" : "#ff0C1F13"
|
|
||||||
// When visible is false, it also takes up no space.
|
|
||||||
visible: root.errorString != ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// A progress bar on the bottom of the screen, showing how long until the
|
|
||||||
// popup is removed.
|
|
||||||
Rectangle {
|
|
||||||
id: bar
|
|
||||||
z: 2
|
|
||||||
color: root.failed ? "#ff93000A" : "#ff0C1F13"
|
|
||||||
property real maxWidth: Math.max(title.width, info.width)
|
|
||||||
anchors {
|
|
||||||
left: parent.left
|
|
||||||
leftMargin: (parent.width - maxWidth) / 2
|
|
||||||
bottom: parent.bottom
|
|
||||||
bottomMargin: 10
|
|
||||||
}
|
|
||||||
height: root.progressHeight
|
|
||||||
radius: 9999
|
|
||||||
|
|
||||||
PropertyAnimation {
|
|
||||||
id: anim
|
|
||||||
target: bar
|
|
||||||
property: "width"
|
|
||||||
from: Math.max(title.width, info.width)
|
|
||||||
to: 0
|
|
||||||
duration: root.failed ? 10000 : 1000
|
|
||||||
onFinished: popupLoader.active = false
|
|
||||||
|
|
||||||
// Pause the animation when the mouse is hovering over the popup,
|
|
||||||
// so it stays onscreen while reading. This updates reactively
|
|
||||||
// when the mouse moves on and off the popup.
|
|
||||||
paused: mouseArea.containsMouse
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Its bg
|
|
||||||
Rectangle {
|
|
||||||
id: bar_bg
|
|
||||||
z: 1
|
|
||||||
color: root.failed ? "#30af1b25" : "#4027643e"
|
|
||||||
property real maxWidth: Math.max(title.width, info.width)
|
|
||||||
anchors {
|
|
||||||
left: parent.left
|
|
||||||
right: parent.right
|
|
||||||
leftMargin: (parent.width - maxWidth) / 2
|
|
||||||
rightMargin: anchors.leftMargin
|
|
||||||
bottom: parent.bottom
|
|
||||||
bottomMargin: 10
|
|
||||||
}
|
|
||||||
height: root.progressHeight
|
|
||||||
radius: 9999
|
|
||||||
width: bar.width
|
|
||||||
}
|
|
||||||
|
|
||||||
// We could set `running: true` inside the animation, but the width of the
|
|
||||||
// rectangle might not be calculated yet, due to the layout.
|
|
||||||
// In the `Component.onCompleted` event handler, all of the component's
|
|
||||||
// properties and children have been initialized.
|
|
||||||
Component.onCompleted: anim.start()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
openai-symbolic.svg
|
|
||||||
@@ -1,113 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
version="1.0"
|
|
||||||
width="20"
|
|
||||||
height="19.999941"
|
|
||||||
id="svg2424"
|
|
||||||
sodipodi:docname="archlinux-logo-black-scalable.f931920e6cdb.svg"
|
|
||||||
viewBox="0 0 166.18749 166.187"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview1"
|
|
||||||
pagecolor="#505050"
|
|
||||||
bordercolor="#ffffff"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="1"
|
|
||||||
inkscape:deskcolor="#505050"
|
|
||||||
inkscape:zoom="16.650008"
|
|
||||||
inkscape:cx="13.093087"
|
|
||||||
inkscape:cy="16.366359"
|
|
||||||
inkscape:window-width="1340"
|
|
||||||
inkscape:window-height="768"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="g2424" />
|
|
||||||
<defs
|
|
||||||
id="defs2426">
|
|
||||||
<linearGradient
|
|
||||||
x1="112.49854"
|
|
||||||
y1="6.1372099"
|
|
||||||
x2="112.49853"
|
|
||||||
y2="129.3468"
|
|
||||||
id="path1082_2_"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
gradientTransform="translate(287,-83)">
|
|
||||||
<stop
|
|
||||||
id="stop193"
|
|
||||||
style="stop-color:#ffffff;stop-opacity:0"
|
|
||||||
offset="0" />
|
|
||||||
<stop
|
|
||||||
id="stop195"
|
|
||||||
style="stop-color:#ffffff;stop-opacity:0.27450982"
|
|
||||||
offset="1" />
|
|
||||||
<midPointStop
|
|
||||||
offset="0"
|
|
||||||
style="stop-color:#FFFFFF"
|
|
||||||
id="midPointStop197" />
|
|
||||||
<midPointStop
|
|
||||||
offset="0.5"
|
|
||||||
style="stop-color:#FFFFFF"
|
|
||||||
id="midPointStop199" />
|
|
||||||
<midPointStop
|
|
||||||
offset="1"
|
|
||||||
style="stop-color:#000000"
|
|
||||||
id="midPointStop201" />
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient
|
|
||||||
x1="541.33502"
|
|
||||||
y1="104.50665"
|
|
||||||
x2="606.91248"
|
|
||||||
y2="303.14029"
|
|
||||||
id="linearGradient2544"
|
|
||||||
xlink:href="#path1082_2_"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
gradientTransform="matrix(-0.3937741,0,0,0.393752,357.51969,122.00151)" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient3388">
|
|
||||||
<stop
|
|
||||||
id="stop3390"
|
|
||||||
style="stop-color:#000000;stop-opacity:0"
|
|
||||||
offset="0" />
|
|
||||||
<stop
|
|
||||||
id="stop3392"
|
|
||||||
style="stop-color:#000000;stop-opacity:0.37113401"
|
|
||||||
offset="1" />
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient
|
|
||||||
x1="490.72305"
|
|
||||||
y1="237.72447"
|
|
||||||
x2="490.72305"
|
|
||||||
y2="183.9644"
|
|
||||||
id="linearGradient4416"
|
|
||||||
xlink:href="#linearGradient3388"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
gradientTransform="matrix(0.749107,0,0,0.749107,-35.459862,91.44108)" />
|
|
||||||
</defs>
|
|
||||||
<g
|
|
||||||
transform="translate(-57.527313,-146.42741)"
|
|
||||||
id="layer1">
|
|
||||||
<g
|
|
||||||
transform="matrix(0.8746356,0,0,0.8746356,14.730518,23.408954)"
|
|
||||||
id="g2424"
|
|
||||||
style="fill:#000000">
|
|
||||||
<g
|
|
||||||
transform="matrix(0.6378586,0,0,0.6378586,36.486487,2.17139)"
|
|
||||||
id="g2809"
|
|
||||||
style="fill:#000000;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="m 143.91698,140.65081 c -8.45709,20.73453 -13.55799,34.29734 -22.97385,54.41552 5.7731,6.11948 12.85931,13.24593 24.36729,21.29458 -12.37221,-5.09109 -20.81157,-10.20242 -27.11844,-15.50646 -12.0505,25.14523 -30.930177,60.96349 -69.243121,129.80406 30.112687,-17.38458 53.455511,-28.10236 75.209891,-32.19198 -0.93414,-4.01773 -1.46524,-8.36369 -1.42916,-12.89823 l 0.0357,-0.96469 c 0.47781,-19.2924 10.51371,-34.12825 22.40218,-33.12093 11.88848,1.00732 21.12927,17.4729 20.65146,36.76531 -0.0899,3.63022 -0.49934,7.12245 -1.21479,10.36146 21.51819,4.20934 44.61141,14.89968 74.31666,32.04906 -5.85729,-10.78369 -11.08544,-20.5044 -16.07812,-29.7624 -7.86429,-6.09535 -16.06714,-14.02847 -32.79938,-22.61656 11.50078,2.98839 19.73519,6.43619 26.15375,10.29 -50.76203,-94.51003 -54.87267,-107.06846 -72.2801,-147.91874 z"
|
|
||||||
id="path2518"
|
|
||||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14333" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.1 KiB |
@@ -1,318 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
id="SVGRoot"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 17.921003 17.921002"
|
|
||||||
sodipodi:docname="cachyos-symbolic.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview30"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
inkscape:zoom="32"
|
|
||||||
inkscape:cx="10.671875"
|
|
||||||
inkscape:cy="11.234375"
|
|
||||||
inkscape:window-width="1687"
|
|
||||||
inkscape:window-height="1028"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="SVGRoot" />
|
|
||||||
<defs
|
|
||||||
id="defs6">
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient939"
|
|
||||||
x1="237.19"
|
|
||||||
x2="237.07001"
|
|
||||||
y1="296.20001"
|
|
||||||
y2="304.07999"
|
|
||||||
gradientTransform="matrix(0.04476,0,0,0.044679,-8.5042241,-4.351186)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient937" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient937">
|
|
||||||
<stop
|
|
||||||
stop-color="#001313"
|
|
||||||
offset="0"
|
|
||||||
id="stop1" />
|
|
||||||
<stop
|
|
||||||
stop-color="#001313"
|
|
||||||
stop-opacity="0"
|
|
||||||
offset="1"
|
|
||||||
id="stop2" />
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient5185"
|
|
||||||
x1="994.81"
|
|
||||||
x2="982.34003"
|
|
||||||
y1="1533.3"
|
|
||||||
y2="1556.8"
|
|
||||||
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient4353" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient4353">
|
|
||||||
<stop
|
|
||||||
stop-color="#020202"
|
|
||||||
offset="0"
|
|
||||||
id="stop3" />
|
|
||||||
<stop
|
|
||||||
stop-color="#020202"
|
|
||||||
stop-opacity="0"
|
|
||||||
offset="1"
|
|
||||||
id="stop4" />
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient9102"
|
|
||||||
x1="1022.5"
|
|
||||||
x2="1018.6"
|
|
||||||
y1="1582.4"
|
|
||||||
y2="1575.6"
|
|
||||||
gradientTransform="matrix(0.086381,0,0,0.081808,-79.103924,-124.69099)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient4353" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient11890"
|
|
||||||
x1="940.42999"
|
|
||||||
x2="930.59003"
|
|
||||||
y1="1612.5"
|
|
||||||
y2="1594.5"
|
|
||||||
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient4353" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient11670"
|
|
||||||
x1="965.59998"
|
|
||||||
x2="951.65997"
|
|
||||||
y1="1571.4"
|
|
||||||
y2="1571.3"
|
|
||||||
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient4353" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient13770"
|
|
||||||
x1="946.22998"
|
|
||||||
x2="961.37"
|
|
||||||
y1="1655.9"
|
|
||||||
y2="1655.8"
|
|
||||||
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient4353" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient2816"
|
|
||||||
x1="366.14999"
|
|
||||||
x2="350.92001"
|
|
||||||
y1="427.32001"
|
|
||||||
y2="419.64001"
|
|
||||||
gradientTransform="matrix(0.04476,0,0,0.044679,-10.832924,-4.155886)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient937" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient12421"
|
|
||||||
x1="936.34003"
|
|
||||||
x2="933.38"
|
|
||||||
y1="1628.8"
|
|
||||||
y2="1623"
|
|
||||||
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient4353" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient13391"
|
|
||||||
x1="950.33002"
|
|
||||||
x2="941.96997"
|
|
||||||
y1="1618.6"
|
|
||||||
y2="1645.8"
|
|
||||||
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient4353" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient13599"
|
|
||||||
x1="1008.2"
|
|
||||||
x2="1015.7"
|
|
||||||
y1="1681.3"
|
|
||||||
y2="1668.4"
|
|
||||||
gradientTransform="matrix(0.084141,0,0,0.083989,-77.884838,-124.43841)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient4353" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient18175"
|
|
||||||
x1="1148.3"
|
|
||||||
x2="1145.4"
|
|
||||||
y1="1585.5"
|
|
||||||
y2="1630"
|
|
||||||
gradientTransform="matrix(0.34992,0,0,0.34992,-282.87,-491.67)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient18299" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient18299">
|
|
||||||
<stop
|
|
||||||
stop-color="#008066"
|
|
||||||
stop-opacity="0"
|
|
||||||
offset="0"
|
|
||||||
id="stop5" />
|
|
||||||
<stop
|
|
||||||
stop-color="#0fc"
|
|
||||||
offset="1"
|
|
||||||
id="stop6" />
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient18632"
|
|
||||||
x1="1148.3"
|
|
||||||
x2="1145.4"
|
|
||||||
y1="1585.5"
|
|
||||||
y2="1630"
|
|
||||||
gradientTransform="matrix(0.26565,0,0,0.26565,-211.15,-375.49)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient18299" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient18659"
|
|
||||||
x1="1148.3"
|
|
||||||
x2="1145.4"
|
|
||||||
y1="1585.5"
|
|
||||||
y2="1630"
|
|
||||||
gradientTransform="matrix(0.13679,0,0,0.13679,-53.624,-195.03)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient18299" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient3254"
|
|
||||||
x1="348.04999"
|
|
||||||
x2="361.20999"
|
|
||||||
y1="194.78"
|
|
||||||
y2="187.24001"
|
|
||||||
gradientTransform="matrix(0.04476,0,0,0.044679,-10.832924,-4.155886)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
xlink:href="#linearGradient937" />
|
|
||||||
</defs>
|
|
||||||
<circle
|
|
||||||
cx="87.449997"
|
|
||||||
cy="87.449997"
|
|
||||||
r="87.449997"
|
|
||||||
opacity="0"
|
|
||||||
stroke-width="0.27971"
|
|
||||||
id="circle6" />
|
|
||||||
<path
|
|
||||||
d="m 4.0610759,2.168314 6.5887001,3.6879 2.1127,-3.6528 z"
|
|
||||||
fill="#00aa88"
|
|
||||||
id="path7"
|
|
||||||
style="fill:#000000" />
|
|
||||||
<path
|
|
||||||
d="m 6.1499759,12.423014 -1.9125,3.7456 h 8.5747001 l 2.1664,-3.7456 z"
|
|
||||||
fill="#00aa88"
|
|
||||||
id="path8"
|
|
||||||
style="fill:#7a7a7a;fill-opacity:0.68506807" />
|
|
||||||
<path
|
|
||||||
d="m 4.0610759,2.168314 6.5887001,3.6879 H 6.1237759 l -1.8859,3.2605 1.9121,3.306 -1.9125,3.7456 -4.13689997,-7.1525 3.96049997,-6.8475"
|
|
||||||
fill="#00ccff"
|
|
||||||
id="path9"
|
|
||||||
style="fill:#7a7a7a;fill-opacity:0.69262218" />
|
|
||||||
<path
|
|
||||||
d="m 6.0909759,5.821714 6.7111001,-3.7832 -2.169,3.5579 z"
|
|
||||||
fill="url(#linearGradient9102)"
|
|
||||||
id="path12"
|
|
||||||
style="fill:url(#linearGradient9102)" />
|
|
||||||
<path
|
|
||||||
d="m 6.1236759,5.856214 6.6388001,-3.6528 -2.1127,3.6528 z"
|
|
||||||
fill="#00aa88"
|
|
||||||
id="path13"
|
|
||||||
style="fill:#000000" />
|
|
||||||
<path
|
|
||||||
d="m 0.10057593,9.015814 6.02309997,-3.1596 -1.8859,3.2605 z"
|
|
||||||
fill="#00aa88"
|
|
||||||
id="path14"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 6.1236759,5.856214 -2.0626,-3.6879 0.17673,6.9484 z"
|
|
||||||
fill="#00aa88"
|
|
||||||
id="path16"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 4.2378759,9.116714 -3.1586,1.5811 3.1583,5.4705 z"
|
|
||||||
fill="#00aa88"
|
|
||||||
id="path19"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 1.0792259,10.698014 5.0708,1.7248 -1.9121,-3.306 z"
|
|
||||||
fill="#00aa88"
|
|
||||||
id="path23"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<g
|
|
||||||
transform="matrix(0.14699,0,0,0.14672,-0.75949407,-0.14715599)"
|
|
||||||
id="g26"
|
|
||||||
style="fill:#1a1a1a">
|
|
||||||
<circle
|
|
||||||
cx="117.95"
|
|
||||||
cy="75.441002"
|
|
||||||
r="9.6893997"
|
|
||||||
fill="#00ccff"
|
|
||||||
id="circle25"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<circle
|
|
||||||
cx="118.08"
|
|
||||||
cy="75.341003"
|
|
||||||
r="9.6893997"
|
|
||||||
fill="url(#linearGradient18175)"
|
|
||||||
id="circle26"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
transform="matrix(0.14699,0,0,0.14672,-0.11248407,-0.47061599)"
|
|
||||||
id="g28"
|
|
||||||
style="fill:#1a1a1a">
|
|
||||||
<circle
|
|
||||||
cx="93.138"
|
|
||||||
cy="55.044998"
|
|
||||||
r="7.3558998"
|
|
||||||
fill="#00ccff"
|
|
||||||
id="circle27"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<circle
|
|
||||||
cx="93.238998"
|
|
||||||
cy="54.969002"
|
|
||||||
r="7.3558998"
|
|
||||||
fill="url(#linearGradient18632)"
|
|
||||||
id="circle28"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
transform="matrix(0.14699,0,0,0.14672,-0.08243407,-0.04714599)"
|
|
||||||
id="g30"
|
|
||||||
style="fill:#000000">
|
|
||||||
<circle
|
|
||||||
cx="103.06"
|
|
||||||
cy="26.657"
|
|
||||||
r="3.7876999"
|
|
||||||
fill="#00ccff"
|
|
||||||
id="circle29"
|
|
||||||
style="fill:#000000" />
|
|
||||||
<circle
|
|
||||||
cx="103.11"
|
|
||||||
cy="26.618"
|
|
||||||
r="3.7876999"
|
|
||||||
fill="url(#linearGradient18659)"
|
|
||||||
id="circle30"
|
|
||||||
style="fill:#000000" />
|
|
||||||
</g>
|
|
||||||
<path
|
|
||||||
d="m 6.1236759,5.856214 -2.0626,-3.6879 0.52544,-0.0074 1.9387,3.4465 z"
|
|
||||||
fill="url(#linearGradient3254)"
|
|
||||||
id="path30"
|
|
||||||
style="fill:url(#linearGradient3254)" />
|
|
||||||
<path
|
|
||||||
d="M 12.808567,16.168211 6.1524738,12.428132 4.2457352,16.165572 Z"
|
|
||||||
fill="#00ccff"
|
|
||||||
id="path17"
|
|
||||||
style="fill:#1a1a1a;fill-opacity:1"
|
|
||||||
sodipodi:nodetypes="cccc" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 9.0 KiB |
@@ -1,10 +0,0 @@
|
|||||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0_26_18)">
|
|
||||||
<path d="M3 7.06015V4.74436C4.12 4.69624 4.90412 4.62466 5.35237 4.52962C6.06664 4.37804 6.64769 4.07549 7.09553 3.62195C7.40205 3.31158 7.63448 2.89754 7.7928 2.37985C7.8839 2.06947 7.92946 1.8387 7.92946 1.68752H10.9001V19H7.25588V7.06015H3ZM12.4228 5.65444V4.52962L15.0783 1H16.1879V4.64211H17V5.65444H16.1879V7.05594H15.0084V5.65444H12.4228ZM14.9823 2.53985L13.4031 4.64511H15.0102V2.53985H14.9823Z" fill="black"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_26_18">
|
|
||||||
<rect width="20" height="20" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 660 B |
@@ -1,65 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
fill="#000000"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
viewBox="0 0 380.95238 380.95238"
|
|
||||||
version="1.1"
|
|
||||||
id="svg1"
|
|
||||||
sodipodi:docname="crosshair-symbolic.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
||||||
<defs
|
|
||||||
id="defs1" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview1"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
inkscape:zoom="35"
|
|
||||||
inkscape:cx="10.371429"
|
|
||||||
inkscape:cy="7.9571429"
|
|
||||||
inkscape:window-width="1430"
|
|
||||||
inkscape:window-height="1028"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg1" />
|
|
||||||
<title
|
|
||||||
id="title1">ionicons-v5_logos</title>
|
|
||||||
<metadata
|
|
||||||
id="metadata1">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:title>ionicons-v5_logos</dc:title>
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<rect
|
|
||||||
style="fill:#000000;stroke-width:23.0377"
|
|
||||||
id="rect1"
|
|
||||||
width="380.95239"
|
|
||||||
height="57.142857"
|
|
||||||
x="-3.5527137e-15"
|
|
||||||
y="161.90475" />
|
|
||||||
<rect
|
|
||||||
style="fill:#000000;stroke-width:23.0451;stroke-dasharray:none"
|
|
||||||
id="rect1-5"
|
|
||||||
width="57.142857"
|
|
||||||
height="380.95239"
|
|
||||||
x="161.90475"
|
|
||||||
y="0" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,91 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
viewBox="-30.5 0 317.00242 317.00243"
|
|
||||||
version="1.1"
|
|
||||||
preserveAspectRatio="xMidYMid"
|
|
||||||
id="svg12"
|
|
||||||
sodipodi:docname="debian-symbolic.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs12" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview12"
|
|
||||||
pagecolor="#505050"
|
|
||||||
bordercolor="#ffffff"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="1"
|
|
||||||
inkscape:deskcolor="#505050"
|
|
||||||
inkscape:zoom="17.5"
|
|
||||||
inkscape:cx="13.742857"
|
|
||||||
inkscape:cy="12.628571"
|
|
||||||
inkscape:window-width="1295"
|
|
||||||
inkscape:window-height="867"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg12" />
|
|
||||||
<g
|
|
||||||
fill="#A80030"
|
|
||||||
id="g12"
|
|
||||||
style="fill:#1a1a1a"
|
|
||||||
transform="translate(0.05835351,0.0538775)">
|
|
||||||
<path
|
|
||||||
d="m 152.79662,167.42537 c -5.25095,0.0731 0.9935,2.70583 7.84865,3.76069 1.8935,-1.47856 3.61167,-2.97466 5.14283,-4.42984 -4.26913,1.04609 -8.61424,1.06947 -12.99148,0.66915"
|
|
||||||
id="path1"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 180.9799,160.40073 c 3.12661,-4.31588 5.40581,-9.04086 6.20938,-13.92654 -0.70129,3.4831 -2.59187,6.4899 -4.3714,9.66326 -9.81521,6.18016 -0.92337,-3.67011 -0.006,-7.41328 -10.55448,13.2837 -1.44934,7.96554 -1.83213,11.67656"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 191.38244,133.33075 c 0.63409,-9.45579 -1.86135,-6.46652 -2.69999,-2.85777 0.9789,0.50844 1.75324,6.66522 2.69999,2.85777"
|
|
||||||
id="path3"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 132.88569,4.0879643 c 2.80225,0.5025946 6.05451,0.8883068 5.59867,1.5574589 3.06524,-0.6720742 3.76069,-1.2915513 -5.59867,-1.5574589"
|
|
||||||
id="path4"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 138.48436,5.6454232 -1.98116,0.4090887 1.84382,-0.1636355 0.13734,-0.2454532"
|
|
||||||
id="path5"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 225.86569,136.91612 c 0.31266,8.49151 -2.48375,12.61162 -5.00549,19.90509 l -4.53796,2.26752 c -3.71394,7.21165 0.35941,4.57887 -2.29967,10.31487 -5.79737,5.15452 -17.59373,16.12979 -21.36903,17.13205 -2.75551,-0.0614 1.86719,-3.25225 2.47206,-4.50289 -7.76099,5.32984 -6.22691,8.0006 -18.09633,11.23824 l -0.34772,-0.77142 c -29.27322,13.77168 -69.93663,-13.52038 -69.40189,-50.75913 -0.31266,2.36394 -0.88831,1.77369 -1.537,2.7292 -1.51071,-19.15996 8.848,-38.40465 26.31901,-46.262078 17.08821,-8.459369 37.12187,-4.987959 49.36238,6.419768 -6.72366,-8.807092 -20.1067,-18.14308 -35.96765,-17.269383 -15.53661,0.245453 -30.07094,10.1191 -34.92156,20.837223 -7.9597,5.01133 -8.88307,19.31775 -12.351558,21.93592 -4.666532,34.29623 8.777878,49.11401 31.520278,66.54411 3.57953,2.41362 1.00811,2.77888 1.49318,4.61685 -7.55646,-3.53861 -14.4759,-8.88014 -20.16515,-15.41972 3.01849,4.41816 6.27659,8.71359 10.48728,12.08857 -7.12399,-2.41362 -16.64115,-17.26354 -19.42003,-17.8684 12.28143,21.98851 49.827,38.56245 69.48663,30.33976 -9.09638,0.33604 -20.65313,0.18702 -30.8745,-3.59121 -4.29251,-2.20908 -10.13079,-6.78503 -9.08761,-7.64119 26.83037,10.02267 54.54612,7.59151 77.7619,-11.0191 5.90549,-4.59932 12.3574,-12.4246 14.22168,-12.53272 -2.8081,4.22238 0.47921,2.03083 -1.67727,5.75938 5.88504,-9.49085 -2.5568,-3.86296 6.08374,-16.38984 l 3.19089,4.39478 c -1.18636,-7.87788 9.78306,-17.44471 8.66975,-29.90438 2.5159,-3.81037 2.80811,4.09965 0.13734,12.86584 3.70517,-9.72462 0.97597,-11.28793 1.92856,-19.31191 1.02857,2.69707 2.37856,5.56361 3.07109,8.4097 -2.41362,-9.39735 2.47791,-15.82589 3.68764,-21.28722 -1.1922,-0.52889 -3.72563,4.15517 -4.3042,-6.94574 0.0847,-4.8214 1.34123,-2.52759 1.82629,-3.71394 -0.94675,-0.54351 -3.4305,-4.23991 -4.9412,-11.328836 1.09577,-1.665575 2.9279,4.318806 4.41815,4.564256 -0.95843,-5.636653 -2.6094,-9.935006 -2.67661,-14.259657 -4.35387,-9.0993 -1.53992,1.212656 -5.07269,-3.906796 -4.63439,-14.45544 3.84543,-3.354527 4.41815,-9.923322 7.02464,10.177541 11.03079,25.950835 12.86876,32.484565 -1.40259,-7.965545 -3.67011,-15.68271 -6.4373,-23.148578 2.13311,0.897073 -3.43634,-16.389844 2.77304,-4.941206 -6.63308,-24.40506 -28.38783,-47.208829 -48.40103,-57.909419 2.44869,2.241221 5.54023,5.055166 4.42984,5.496398 -9.95254,-5.925941 -8.20223,-6.387627 -9.62819,-8.891834 -8.10872,-3.299008 -8.64054,0.265908 -14.01129,0.0058 -15.28238,-8.105755 -18.22782,-7.243747 -32.2917,-12.32229 l 0.63993,2.9892691 c -10.12494,-3.3720592 -11.79636,1.279863 -22.73948,0.011688 -0.66623,-0.520127 3.50647,-1.8818077 6.93989,-2.3814803 -9.7889,1.2915513 -9.33014,-1.9285607 -18.90866,0.3564916 2.36103,-1.656809 4.85647,-2.7525822 7.37529,-4.1610159 -7.98308,0.4850622 -19.05769,4.6460781 -15.63888,0.8620082 C 96.316085,8.9298206 73.190888,17.085295 60.214012,29.25276 L 59.804924,26.526476 C 53.858528,33.665073 33.874548,47.845838 32.282025,57.091242 l -1.589602,0.371102 C 27.59796,62.7016 25.596347,68.63923 23.141816,74.030433 19.09476,80.926499 17.21003,76.683665 17.785676,77.764828 9.8259803,93.903375 5.8724309,107.46466 2.4565407,118.58603 4.8906182,122.224 2.514982,140.48688 3.4354314,155.10304 -0.56194899,227.28965 54.098137,297.37822 113.84553,313.5606 c 8.75742,3.13245 21.78105,3.01264 32.85859,3.33407 -13.07039,-3.73732 -14.75934,-1.98116 -27.49076,-6.41977 -9.18404,-4.32465 -11.19734,-9.26293 -17.70185,-14.90836 l 2.57434,4.54965 c -12.757724,-4.51458 -7.419118,-5.58698 -17.798281,-8.8743 l 2.74966,-3.59121 c -4.134717,-0.31266 -10.951887,-6.96912 -12.816162,-10.65384 l -4.523352,0.17825 C 66.26268,270.46895 63.366917,265.63586 63.577306,261.8927 l -1.461031,2.60356 c -1.656809,-2.84317 -19.995669,-25.15019 -10.481436,-19.95768 -1.767847,-1.6159 -4.117185,-2.62986 -6.665222,-7.2584 l 1.937326,-2.21493 c -4.57887,-5.89087 -8.427226,-13.44148 -8.135019,-15.95737 2.442843,3.299 4.137639,3.91556 5.814902,4.47952 -11.562598,-28.68881 -12.211295,-1.58084 -20.968714,-29.20309 l 1.852587,-0.14902 c -1.420122,-2.13895 -2.28213,-4.46199 -3.424657,-6.7412 l 0.80649,-8.03567 c -8.324954,-9.62527 -2.328884,-40.9264 -1.127916,-58.09351 0.832787,-6.9808 6.948662,-14.41161 11.600585,-26.064789 l -2.8344,-0.487985 c 5.417502,-9.449947 30.932945,-37.951737 42.749763,-36.484862 5.724319,-7.191194 -1.136683,-0.0263 -2.255832,-1.837977 12.573631,-13.011941 16.527181,-9.192806 25.012848,-11.533378 9.1519,-5.432112 -7.854502,2.118495 -3.51524,-2.071741 15.82004,-4.041212 11.21195,-9.186962 31.85047,-11.23825 2.17694,1.238955 -5.05224,1.913951 -6.86684,3.521085 13.18142,-6.448991 41.71243,-4.982116 60.24414,3.579525 21.50346,10.04897 45.66306,39.75465 46.61565,67.704172 l 1.08409,0.2922 c -0.54935,11.10968 1.70064,23.95799 -2.19739,35.76019 l 2.65323,-5.58698"
|
|
||||||
id="path6"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 95.483297,174.6341 -0.736359,3.68179 c 3.450955,4.68699 6.188932,9.76553 10.595392,13.4298 -3.17043,-6.18893 -5.525615,-8.74573 -9.859033,-17.11159"
|
|
||||||
id="path7"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 103.64169,174.31267 c -1.82629,-2.01915 -2.90745,-4.4503 -4.117181,-6.87269 1.157141,4.25744 3.526931,7.91586 5.733081,11.63565 l -1.6159,-4.76296"
|
|
||||||
id="path8"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 248.00323,142.93557 -0.77142,1.9344 c -1.41428,10.04605 -4.46784,19.98691 -9.14898,29.20309 5.17205,-9.72462 8.51781,-20.36093 9.9204,-31.13749"
|
|
||||||
id="path9"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="M 133.92302,1.5691471 C 137.47332,0.26882968 142.65122,0.85616408 146.41775,0 141.50869,0.4120107 136.623,0.65746388 131.79868,1.279863 l 2.12434,0.2892841"
|
|
||||||
id="path10"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="m 9.2824769,67.847351 c 0.8181771,7.573984 -5.6980203,10.513578 1.4434981,5.519774 3.827901,-8.623004 -1.4960952,-2.38148 -1.4434981,-5.519774"
|
|
||||||
id="path11"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
<path
|
|
||||||
d="M 0.89031567,102.9004 C 2.5354364,97.85108 2.8334867,94.81798 3.46173,91.895919 -1.084998,97.707899 1.3695338,98.946854 0.89031567,102.9004"
|
|
||||||
id="path12"
|
|
||||||
style="fill:#1a1a1a" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 8.3 KiB |