forked from DEM0NAssissan7/desktop-icons-neo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
local_install.sh
executable file
·25 lines (23 loc) · 939 Bytes
/
local_install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
# LICENSE INFORMATION
#
# Desktop Icons: Neo - A desktop icons extension for GNOME with numerous features,
# customizations, and optimizations.
#
# Copyright 2021 Abdurahman Elmawi ([email protected])
#
# This project is based on Desktop Icons NG (https://gitlab.com/rastersoft/desktop-icons-ng),
# a desktop icons extension for GNOME licensed under the GPL v3.
#
# This project is free and open source software as described in the GPL v3.
#
# This project (Desktop Icons: Neo) is licensed under the GPL v3. To view the details of this license,
# visit https://www.gnu.org/licenses/gpl-3.0.html for the necessary information
# regarding this project's license.
#
rm -rf ~/.local/share/gnome-shell/extensions/desktopicons-neo@darkdemon/*
rm -rf .build
mkdir .build
meson --prefix=$HOME/.local/ --localedir=share/gnome-shell/extensions/desktopicons-neo@darkdemon/locale .build
ninja -C .build install
rm -rf .build