Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #39 from nwg-piotr/grid
Browse files Browse the repository at this point in the history
sgtk-grid command added: application grid
  • Loading branch information
nwg-piotr authored Feb 7, 2020
2 parents 1033cb3 + dd6fafc commit a9beb08
Show file tree
Hide file tree
Showing 3 changed files with 578 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def read(f_name):

setup(
name='sgtk-menu',
version='1.1.3',
version='1.2.0',
description='GTK menu for sway, i3 and some other WMs',
packages=find_packages(),
include_package_data=True,
Expand All @@ -26,6 +26,7 @@ def read(f_name):
'sgtk-menu = sgtk_menu.menu:main',
'sgtk-bar = sgtk_menu.bar:main',
'sgtk-dmenu = sgtk_menu.dmenu:main',
'sgtk-grid = sgtk_menu.grid:main',
]
},
)
26 changes: 26 additions & 0 deletions sgtk_menu/config/grid.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#searchbox {
background: none;
border-color: #999;
color: #ccc
}
#button {
background: none;
border-style: none;
box-shadow: none;
color: #999;
}
#button:hover {
background-color: rgba(255, 255, 255, 0.07);
color: #eee
}
#button:focus {
border-style: solid;
border-width: 1px;
border-color: rgba(255, 255, 255, 0.2)
}
#separator {
background-color: rgba(200, 200, 200, 0.7);
}
#prompt {
color: #999
}
Loading

0 comments on commit a9beb08

Please sign in to comment.