Skip to content

Commit

Permalink
Merge pull request #1171 from Ulauncher/feat/change-appid
Browse files Browse the repository at this point in the history
chore: change app id to the domain we actually use and reame desktop …
  • Loading branch information
friday committed Dec 28, 2022
2 parents f13fcb3 + 9a792f4 commit bb5859a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bin/ulauncher-toggle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ done
shift $((OPTIND-1)) # remove parsed options and args from $@ list

gdbus call --session \
--dest net.launchpad.ulauncher \
--object-path /net/launchpad/ulauncher \
--dest io.ulauncher.Ulauncher \
--object-path /io/ulauncher/Ulauncher \
--method org.gtk.Application.Activate \
"$QUERY"
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/build-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ build-deb () {
setup.cfg \
setup.py \
ulauncher \
ulauncher.desktop \
io.ulauncher.Ulauncher.desktop \
ulauncher.service \
$tmpdir \
--exclude-from=.gitignore
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ build-rpm () {
setup.cfg \
setup.py \
ulauncher \
ulauncher.desktop \
io.ulauncher.Ulauncher.desktop \
$tmpdir \
--exclude-from=.gitignore

Expand Down
2 changes: 1 addition & 1 deletion scripts/build-targz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ build-targz () {
setup.cfg \
setup.py \
ulauncher \
ulauncher.desktop \
io.ulauncher.Ulauncher.desktop \
ulauncher.service \
$tmpdir \
--exclude-from=.gitignore
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def run(self):
packages=find_packages(exclude=["tests", "conftest.py"]),
# These will be placed in /usr
data_files=[
("share/applications", ["ulauncher.desktop"]),
("share/applications", ["io.ulauncher.Ulauncher.desktop"]),
("lib/systemd/user", ["ulauncher.service"]),
("share/doc/ulauncher", ["README.md"]),
("share/licenses/ulauncher", ["LICENSE"]),
Expand Down
2 changes: 1 addition & 1 deletion ulauncher/ui/UlauncherApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class UlauncherApp(Gtk.Application):
def __init__(self, *args, **kwargs):
super().__init__(
*args,
application_id="net.launchpad.ulauncher",
application_id="io.ulauncher.Ulauncher",
flags=Gio.ApplicationFlags.HANDLES_COMMAND_LINE,
**kwargs
)
Expand Down

0 comments on commit bb5859a

Please sign in to comment.