Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
ximper-shell-notification-center
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
ximper-shell-notification-center
Commits
127cfbff
Commit
127cfbff
authored
Jan 18, 2026
by
Erik Reider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed completions not including --skip-system-css and --custom-system-css
parent
68ddfeb3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
swaync
completions/bash/swaync
+6
-0
swaync.fish
completions/fish/swaync.fish
+2
-0
_swaync
completions/zsh/_swaync
+2
-0
No files found.
completions/bash/swaync
View file @
127cfbff
...
@@ -14,6 +14,8 @@ _swaync() {
...
@@ -14,6 +14,8 @@ _swaync() {
--version
--version
--style
--style
--config
--config
--skip-system-css
--custom-system-css
)
)
case $prev in
case $prev in
-s | --style)
-s | --style)
...
@@ -24,6 +26,10 @@ _swaync() {
...
@@ -24,6 +26,10 @@ _swaync() {
_filedir
_filedir
return
return
;;
;;
custom-system-css)
_filedir
return
;;
esac
esac
if [[ $cur == --* ]]; then
if [[ $cur == --* ]]; then
...
...
completions/fish/swaync.fish
View file @
127cfbff
...
@@ -3,3 +3,5 @@ complete -c swaync -s h -l help --description "Show help options"
...
@@ -3,3 +3,5 @@ complete -c swaync -s h -l help --description "Show help options"
complete -c swaync -s v -l version --description "Prints version"
complete -c swaync -s v -l version --description "Prints version"
complete -c swaync -s s -l style --description "Use a custom Stylesheet file" -r
complete -c swaync -s s -l style --description "Use a custom Stylesheet file" -r
complete -c swaync -s c -l config --description "Use a custom config file" -r
complete -c swaync -s c -l config --description "Use a custom config file" -r
complete -c swaync -l skip-system-css --description "Skip trying to parse the packaged Stylesheet file. Useful for CSS debugging"
complete -c swaync -l custom-system-css --description "Pick a custom CSS file to use as the \"system\" CSS. Useful for CSS debugging" -r
completions/zsh/_swaync
View file @
127cfbff
...
@@ -5,3 +5,5 @@ _arguments -s \
...
@@ -5,3 +5,5 @@ _arguments -s \
'(-v --version)'{-v,--version}'[Prints version]' \
'(-v --version)'{-v,--version}'[Prints version]' \
'(-s --style)'{-s,--style}'[Use a custom Stylesheet file]:files:_files' \
'(-s --style)'{-s,--style}'[Use a custom Stylesheet file]:files:_files' \
'(-c --config)'{-c,--config}'[Use a custom config file]:files:_files' \
'(-c --config)'{-c,--config}'[Use a custom config file]:files:_files' \
'( --skip-system-css)'--skip-system-css'[Skip trying to parse the packaged Stylesheet file. Useful for CSS debugging]' \
'( --custom-system-css)'--custom-system-css'[Pick a custom CSS file to use as the "system" CSS. Useful for CSS debugging]:files:_files' \
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment