fix package_data

This commit is contained in:
piotr 2022-09-10 03:42:32 +02:00
parent 494e94984a
commit 8f4527efde
5 changed files with 4 additions and 56 deletions

View File

@ -126,7 +126,7 @@ def main():
bcg = os.path.join(os.getenv("HOME"), ".azotebg")
if not os.path.isfile(bcg):
print("Copying default background")
copy(os.path.join(dir_name, "skel", ".azotebg"), bcg)
copy(os.path.join(dir_name, "skel", "stuff", ".azotebg"), bcg)
print("\n\nThat's all. You may run sway now.\n")

View File

@ -1,17 +0,0 @@
window {
background-color: rgba (0, 0, 0, 0.0);
}
#box-outer {
/* Define attributes of the box surrounding icons here */
background-color: rgba (255, 255, 255, 0.0)
}
#box-inner {
background-color: rgba (0, 0, 0, 0.4);
/*border-radius: 0px;
border-style: solid;
border-width: 1px;
border-color: rgba (204, 204, 204, 0.5);*/
padding: 20px
}

View File

@ -1,34 +0,0 @@
<span face="monospace" foreground="#eeeeee" size="medium">Terminal emulator Mod+t
Web browser Mod+w
Text editor Mod+e
File manager Mod+f
Dock show/hide Mod+d
Notification center Mod+c
Application launcher Alt+F1|Ctrl+Space
Kill task Alt+q
Exit menu Mod+x
Reload sway Mod+Shift+C
Switch workspace Mod+number
Move to workspace Mod+Shift+number
Move focus Mod+arrow
Move container Mod+Shift+arrow
Previous workspace Mod+Alt+left
Next workspace Mod+Alt+rigth
Toggle split Mod+Tab
Toggle layout Alt+Tab
Toggle floating Mod+Shift+Space
Fullscreen Mod+Shift+F
Resize container Alt+arrow
Change inner gaps Mod+plus/minus
Change outer gaps Mod+Shift+plus/minus
Move to scratchpad Mod+Shift+Z
Show scratchpad Mod+Z
Screenshot display Ctrl+PrtScr
Screenshot region Shift+Ctrl+PrtScr
Screenshot window Mod+Shift+Ctrl+PrtScr
Show/hide help Alt+h
Move help to front/back Alt+Shift+H</span>

View File

@ -9,21 +9,20 @@ def read(f_name):
setup(
name='nwg-shell',
version='0.3.2',
version='0.3.3',
description='GTK3-based shell for sway Wayland compositor',
packages=find_packages(),
include_package_data=True,
package_data={
"": ["skel/bin/*",
"skel/config/gtk-3.0/*",
"": ["skel/stuff/*",
"skel/config/nwg-bar/*",
"skel/config/nwg-dock/*",
"skel/config/nwg-drawer/*",
"skel/config/nwg-panel/*",
"skel/data/nwg-look/*",
"skel/config/nwg-wrapper/*",
"skel/config/sway/*",
"skel/config/swaync/*",
"skel/config/foot/*",
"skel/*"]
},
url='https://github.com/nwg-piotr/nwg-shell',