mirror of
https://github.com/lbonn/rofi
synced 2024-11-10 06:14:14 +00:00
Update links to irc.libera.chat
This commit is contained in:
parent
dc28a97437
commit
2b86ece655
5 changed files with 9 additions and 4 deletions
|
@ -1025,7 +1025,7 @@ Background color
|
||||||
\fBborder\-color\fP: color
|
\fBborder\-color\fP: color
|
||||||
Color of the border
|
Color of the border
|
||||||
.IP \(bu 2
|
.IP \(bu 2
|
||||||
\fBcursor\fP: cursor
|
\fBcursor\fP: cursor
|
||||||
Type of mouse cursor that is set when the mouse pointer is hovered over the widget.
|
Type of mouse cursor that is set when the mouse pointer is hovered over the widget.
|
||||||
|
|
||||||
.RE
|
.RE
|
||||||
|
|
|
@ -1681,7 +1681,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
.SH SUPPORT
|
.SH SUPPORT
|
||||||
.PP
|
.PP
|
||||||
\fBrofi\fP support can be obtained here
|
\fBrofi\fP support can be obtained here
|
||||||
\[la]irc://irc.freenode.net/#rofi\[ra] (#rofi on irc.freenode.net), or via the
|
\[la]irc://irc.libera.chat:6697/#rofi\[ra] (#rofi on irc.libera.chat), or via the
|
||||||
forum
|
forum
|
||||||
\[la]https://reddit.com/r/qtools//\[ra]
|
\[la]https://reddit.com/r/qtools//\[ra]
|
||||||
|
|
||||||
|
|
|
@ -996,7 +996,7 @@ been released.
|
||||||
|
|
||||||
## SUPPORT
|
## SUPPORT
|
||||||
|
|
||||||
**rofi** support can be obtained [here](irc://irc.freenode.net/#rofi) (#rofi on irc.freenode.net), or via the
|
**rofi** support can be obtained [here](irc://irc.libera.chat:6697/#rofi) (#rofi on irc.libera.chat), or via the
|
||||||
[forum](https://reddit.com/r/qtools//)
|
[forum](https://reddit.com/r/qtools//)
|
||||||
|
|
||||||
## DEBUGGING
|
## DEBUGGING
|
||||||
|
|
|
@ -348,7 +348,7 @@ static void help ( G_GNUC_UNUSED int argc, char **argv )
|
||||||
#endif
|
#endif
|
||||||
printf ( " Bugreports: %s"PACKAGE_BUGREPORT "%s\n", is_term ? color_bold : "", is_term ? color_reset : "" );
|
printf ( " Bugreports: %s"PACKAGE_BUGREPORT "%s\n", is_term ? color_bold : "", is_term ? color_reset : "" );
|
||||||
printf ( " Support: %s"PACKAGE_URL "%s\n", is_term ? color_bold : "", is_term ? color_reset : "" );
|
printf ( " Support: %s"PACKAGE_URL "%s\n", is_term ? color_bold : "", is_term ? color_reset : "" );
|
||||||
printf ( " %s#rofi @ freenode.net%s\n", is_term ? color_bold : "", is_term ? color_reset : "" );
|
printf ( " %s#rofi @ libera.chat%s\n", is_term ? color_bold : "", is_term ? color_reset : "" );
|
||||||
if ( find_arg ( "-no-config" ) < 0 ) {
|
if ( find_arg ( "-no-config" ) < 0 ) {
|
||||||
if ( config_path_new ) {
|
if ( config_path_new ) {
|
||||||
printf ( " Configuration file: %s%s%s\n", is_term ? color_bold : "", config_path_new, is_term ? color_reset : "" );
|
printf ( " Configuration file: %s%s%s\n", is_term ? color_bold : "", config_path_new, is_term ? color_reset : "" );
|
||||||
|
|
|
@ -30,6 +30,7 @@ entry {
|
||||||
placeholder-color: darkgrey;
|
placeholder-color: darkgrey;
|
||||||
/** inherit font setting from parent */
|
/** inherit font setting from parent */
|
||||||
font: inherit;
|
font: inherit;
|
||||||
|
cursor: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -69,6 +70,7 @@ button {
|
||||||
border-color: darkgrey;
|
border-color: darkgrey;
|
||||||
/** inherit font setting from parent */
|
/** inherit font setting from parent */
|
||||||
font: inherit;
|
font: inherit;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -156,6 +158,7 @@ element {
|
||||||
border-color: darkgrey;
|
border-color: darkgrey;
|
||||||
background-color: grey;
|
background-color: grey;
|
||||||
/** 4 px padding on the inside of border */
|
/** 4 px padding on the inside of border */
|
||||||
|
cursor: pointer;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -170,10 +173,12 @@ element selected {
|
||||||
element-icon {
|
element-icon {
|
||||||
/** change size to 128 pixels. */
|
/** change size to 128 pixels. */
|
||||||
size: 128px;
|
size: 128px;
|
||||||
|
cursor: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Entry text */
|
/** Entry text */
|
||||||
element-text {
|
element-text {
|
||||||
/* align font in (horizontally) center */
|
/* align font in (horizontally) center */
|
||||||
horizontal-align: 0.5;
|
horizontal-align: 0.5;
|
||||||
|
cursor: inherit;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue