Skip to content

Commit

Permalink
Split mpdevil.py into separate modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Popkornium18 committed Jan 30, 2022
1 parent 6c2c325 commit 6576cc9
Show file tree
Hide file tree
Showing 39 changed files with 4,958 additions and 3,888 deletions.
10 changes: 0 additions & 10 deletions bin/meson.build

This file was deleted.

25 changes: 25 additions & 0 deletions bin/mpdevil
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# mpdevil - MPD Client.
# Copyright (C) 2020-2022 Martin Wagner <[email protected]>
#
# 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/>.

import sys
from mpdevil.gui.mpdevil import mpdevil

if __name__ == "__main__":
app = mpdevil()
app.run(sys.argv)
Loading

0 comments on commit 6576cc9

Please sign in to comment.