-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,17 +37,33 @@ from the repository. The installer will create a link to the repo in | |
> | ||
> After logging back in, you can then enable PaperWM via the `Extensions` application, or by running the following command from the command-line: | ||
> | ||
> ```bash | ||
> /usr/bin/gnome-extensions enable [email protected] | ||
> ``` | ||
> `/usr/bin/gnome-extensions enable [email protected]` | ||
> | ||
> if you have run into issues, delete any older `paperwm@...` symlinks from `~/.local/share/gnome-shell/extensions` and re-run the `install.sh` script. | ||
#### Uninstall PaperWM (if installed via source) | ||
|
||
To uninstall simply run `./uninstall.sh`. | ||
|
||
Running the extension will automatically install a user config file as described in [User configuration & development](#user-configuration--development). | ||
|
||
|
||
### Try without installing | ||
|
||
This repo provides a lightweight VM based on [NixOS](https://nixos.org) to try PaperWM and aid with development. You can launch it if [Nix](https://nixos.org/nix) is installed on your system using this command: | ||
|
||
```sh | ||
nix run .\#vm | ||
``` | ||
|
||
Alternatively, the VM can also be launched with GPU acceleration, by installing [NixGL](https://github.com/nix-community/nixgl) first: | ||
|
||
```sh | ||
nixGLIntel nix run .\#vm -- -device virtio-gpu-gl -display gtk,gl=on | ||
# or nixGLNvidia depending on your host GPU | ||
``` | ||
|
||
## Contributing | ||
Users are encouraged to submit [issues](https://github.com/paperwm/PaperWM/issues/new/choose) and [Pull Requests](https://github.com/paperwm/PaperWM/pulls)! | ||
|
||
|