Skip to content

Commit

Permalink
Merge pull request #48 from budlabs/dev
Browse files Browse the repository at this point in the history
release 2019.01.30
  • Loading branch information
budRich authored Jan 30, 2019
2 parents 95cfd31 + 3b7ef90 commit 86e5456
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 35 deletions.
4 changes: 2 additions & 2 deletions ass/i3fyra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```text
i3fyra --show|-s CONTAINER
i3fyra --float|-a [--target|-t CRITERION]
i3fyra --hide|-z CONTAINER(s)
i3fyra --hide|-z CONTAINER
i3fyra --layout|-l LAYOUT
i3fyra --move|-m DIRECTION|CONTAINER [--speed|-p INT] [--target|-t CRITERION]
i3fyra --help|-h
Expand Down Expand Up @@ -78,7 +78,7 @@ Example:
target the first found window with the instance name
*sublime_text*. See i3list(1), for all available options.

`--hide`|`-z`
`--hide`|`-z` CONTAINER
Hide target containers if visible.

`--layout`|`-l` LAYOUT
Expand Down
6 changes: 3 additions & 3 deletions ass/i3fyra/i3fyra.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH I3FYRA 1 2019\-01\-10 Linx "User Manuals"
.TH I3FYRA 1 2019\-01\-30 Linx "User Manuals"
.SH NAME
.PP
\fB\fCi3fyra\fR \- An advanced, simple grid\-based tiling
Expand All @@ -11,7 +11,7 @@ layout
.nf
i3fyra \-\-show|\-s CONTAINER
i3fyra \-\-float|\-a [\-\-target|\-t CRITERION]
i3fyra \-\-hide|\-z CONTAINER(s)
i3fyra \-\-hide|\-z CONTAINER
i3fyra \-\-layout|\-l LAYOUT
i3fyra \-\-move|\-m DIRECTION|CONTAINER [\-\-speed|\-p INT] [\-\-target|\-t CRITERION]
i3fyra \-\-help|\-h
Expand Down Expand Up @@ -116,7 +116,7 @@ instance name \fIsublime\_text\fP\&. See i3list(1), for
all available options.

.PP
\fB\fC\-\-hide\fR|\fB\fC\-z\fR
\fB\fC\-\-hide\fR|\fB\fC\-z\fR CONTAINER
.br
Hide target containers if visible.

Expand Down
14 changes: 7 additions & 7 deletions ass/i3fyra/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
___printversion(){

cat << 'EOB' >&2
i3fyra - version: 0.549
updated: 2019-01-10 by budRich
i3fyra - version: 0.55
updated: 2019-01-30 by budRich
EOB
}

Expand All @@ -25,7 +25,7 @@ SYNOPSIS
--------
i3fyra --show|-s CONTAINER
i3fyra --float|-a [--target|-t CRITERION]
i3fyra --hide|-z CONTAINER(s)
i3fyra --hide|-z CONTAINER
i3fyra --layout|-l LAYOUT
i3fyra --move|-m DIRECTION|CONTAINER [--speed|-p INT] [--target|-t CRITERION]
i3fyra --help|-h
Expand Down Expand Up @@ -61,7 +61,7 @@ instance name sublime_text. See i3list(1), for all
available options.
--hide|-z
--hide|-z CONTAINER
Hide target containers if visible.
Expand Down Expand Up @@ -115,8 +115,8 @@ done

declare -A __o
eval set -- "$(getopt --name "i3fyra" \
--options "s:at:zl:m:p:hv" \
--longoptions "show:,float,target:,hide,layout:,move:,speed:,help,version," \
--options "s:at:z:l:m:p:hv" \
--longoptions "show:,float,target:,hide:,layout:,move:,speed:,help,version," \
-- "$@"
)"

Expand All @@ -125,7 +125,7 @@ while true; do
--show | -s ) __o[show]="${2:-}" ; shift ;;
--float | -a ) __o[float]=1 ;;
--target | -t ) __o[target]="${2:-}" ; shift ;;
--hide | -z ) __o[hide]=1 ;;
--hide | -z ) __o[hide]="${2:-}" ; shift ;;
--layout | -l ) __o[layout]="${2:-}" ; shift ;;
--move | -m ) __o[move]="${2:-}" ; shift ;;
--speed | -p ) __o[speed]="${2:-}" ; shift ;;
Expand Down
6 changes: 3 additions & 3 deletions ass/i3fyra/manifest.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
description: >
An advanced, simple grid-based tiling layout
updated: 2019-01-10
version: 0.549
updated: 2019-01-30
version: 0.55
author: budRich
repo: https://github.com/budlabs/i3ass
created: 2017-01-14
Expand All @@ -15,7 +15,7 @@ environ:
synopsis: |
--show|-s CONTAINER
--float|-a [--target|-t CRITERION]
--hide|-z CONTAINER(s)
--hide|-z CONTAINER
--layout|-l LAYOUT
--move|-m DIRECTION|CONTAINER [--speed|-p INT] [--target|-t CRITERION]
--help|-h
Expand Down
4 changes: 2 additions & 2 deletions ass/i3fyra/manpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SYNOPSIS
```text
i3fyra --show|-s CONTAINER
i3fyra --float|-a [--target|-t CRITERION]
i3fyra --hide|-z CONTAINER(s)
i3fyra --hide|-z CONTAINER
i3fyra --layout|-l LAYOUT
i3fyra --move|-m DIRECTION|CONTAINER [--speed|-p INT] [--target|-t CRITERION]
i3fyra --help|-h
Expand Down Expand Up @@ -88,7 +88,7 @@ this will target the first found window with the
instance name *sublime_text*. See i3list(1), for
all available options.

`--hide`|`-z`
`--hide`|`-z` CONTAINER
Hide target containers if visible.

`--layout`|`-l` LAYOUT
Expand Down
14 changes: 7 additions & 7 deletions ass/i3fyra/program.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
___printversion(){

cat << 'EOB' >&2
i3fyra - version: 0.549
updated: 2019-01-10 by budRich
i3fyra - version: 0.55
updated: 2019-01-30 by budRich
EOB
}

Expand Down Expand Up @@ -65,7 +65,7 @@ SYNOPSIS
--------
i3fyra --show|-s CONTAINER
i3fyra --float|-a [--target|-t CRITERION]
i3fyra --hide|-z CONTAINER(s)
i3fyra --hide|-z CONTAINER
i3fyra --layout|-l LAYOUT
i3fyra --move|-m DIRECTION|CONTAINER [--speed|-p INT] [--target|-t CRITERION]
i3fyra --help|-h
Expand Down Expand Up @@ -101,7 +101,7 @@ instance name sublime_text. See i3list(1), for all
available options.
--hide|-z
--hide|-z CONTAINER
Hide target containers if visible.
Expand Down Expand Up @@ -830,8 +830,8 @@ swapmeet(){
}
declare -A __o
eval set -- "$(getopt --name "i3fyra" \
--options "s:at:zl:m:p:hv" \
--longoptions "show:,float,target:,hide,layout:,move:,speed:,help,version," \
--options "s:at:z:l:m:p:hv" \
--longoptions "show:,float,target:,hide:,layout:,move:,speed:,help,version," \
-- "$@"
)"

Expand All @@ -840,7 +840,7 @@ while true; do
--show | -s ) __o[show]="${2:-}" ; shift ;;
--float | -a ) __o[float]=1 ;;
--target | -t ) __o[target]="${2:-}" ; shift ;;
--hide | -z ) __o[hide]=1 ;;
--hide | -z ) __o[hide]="${2:-}" ; shift ;;
--layout | -l ) __o[layout]="${2:-}" ; shift ;;
--move | -m ) __o[move]="${2:-}" ; shift ;;
--speed | -p ) __o[speed]="${2:-}" ; shift ;;
Expand Down
2 changes: 1 addition & 1 deletion ass/i3list/i3list.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH I3LIST 1 2019\-01\-09 Linx "User Manuals"
.TH I3LIST 1 2019\-01\-30 Linx "User Manuals"
.SH NAME
.PP
\fB\fCi3list\fR \- list information about the current i3
Expand Down
4 changes: 2 additions & 2 deletions ass/i3list/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
___printversion(){

cat << 'EOB' >&2
i3list - version: 0.031
updated: 2019-01-09 by budRich
i3list - version: 0.032
updated: 2019-01-30 by budRich
EOB
}

Expand Down
4 changes: 2 additions & 2 deletions ass/i3list/lib/printlist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ function descriptions() {
function setwindow(floats,type) {
if (floats ~ /on$/)
window[type]["AWF"]=1
window[type][type"WF"]=1
else
window[type]["AWF"]=0
window[type][type"WF"]=0
setworkspace(curwsid,type)
window[type][type"WI"]=curwid
Expand Down
4 changes: 2 additions & 2 deletions ass/i3list/manifest.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
description: >
list information about the current i3 session.
updated: 2019-01-09
version: 0.031
updated: 2019-01-30
version: 0.032
author: budRich
repo: https://github.com/budlabs/i3ass
created: 2017-10-06
Expand Down
8 changes: 4 additions & 4 deletions ass/i3list/program.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
___printversion(){

cat << 'EOB' >&2
i3list - version: 0.031
updated: 2019-01-09 by budRich
i3list - version: 0.032
updated: 2019-01-30 by budRich
EOB
}

Expand Down Expand Up @@ -202,9 +202,9 @@ function descriptions() {
function setwindow(floats,type) {
if (floats ~ /on$/)
window[type]["AWF"]=1
window[type][type"WF"]=1
else
window[type]["AWF"]=0
window[type][type"WF"]=0
setworkspace(curwsid,type)
window[type][type"WI"]=curwid
Expand Down

0 comments on commit 86e5456

Please sign in to comment.