Skip to content

Commit

Permalink
Merge pull request #4 from hertg/dev
Browse files Browse the repository at this point in the history
Update readme, fix background blur edges
  • Loading branch information
hertg authored Jul 12, 2022
2 parents 6ecea63 + 4222327 commit 35efbcb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
19 changes: 11 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ You can customize the theme to your own preferences.
Click here for a fully functional [live demo](https://hertg.github.io/lightdm-neon/) of the theme.

## Installation
> :bulb: You still need to [enable the theme](#enable-the-theme) after installation.
### Manual
```sh
git clone https://github.com/hertg/lightdm-neon.git
Expand All @@ -50,6 +51,14 @@ paru -S lightdm-theme-neon-git
```
> :bulb: [paru](https://github.com/Morganamilo/paru) is an AUR helper written in Rust
## Enable the theme
Make sure to set the `theme` in your greeter configuration.
```yaml
# /etc/lightdm/web-greeter.yml
greeter:
theme: neon
```
## Compatibility
This theme is developed for [web-greeter](https://github.com/JezerM/web-greeter) / [nody-greeter](https://github.com/JezerM/nody-greeter). The no longer maintained [Antergos/web-greeter](https://github.com/Antergos/web-greeter) is not supported.
Expand All @@ -63,15 +72,9 @@ This theme is developed for [web-greeter](https://github.com/JezerM/web-greeter)
make build
```

### Installation

```sh
sudo make install
```

### Uninstall
### Run in dev mode
```sh
sudo make uninstall
make dev
```

## Contributing
Expand Down
4 changes: 4 additions & 0 deletions src/components/Background.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
<style>
#background {
@apply h-screen w-screen bg-cover bg-center absolute;
height: calc(100% + 50px);
width: calc(100% + 50px);
left: -25px;
top: -25px;
background-image: var(--bg-image);
}
Expand Down

0 comments on commit 35efbcb

Please sign in to comment.