From 5a695c7065427775f724cd706cade6ab4cc7a63f Mon Sep 17 00:00:00 2001 From: Patrick Ziegler Date: Fri, 21 Feb 2020 15:39:39 +0100 Subject: [PATCH] doc: Update links to https (#2012) --- README.md | 14 +++++++------- doc/README.md | 2 +- doc/conf.py | 2 +- doc/dev/packaging.rst | 2 +- src/modules/fs.cpp | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index be2ab5d2..3345425d 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,10 @@ A fast and easy-to-use tool for creating status bars. for their desktop environment, without the need of having a black belt in shell scripting. Here are a few screenshots showing you what it can look like: -[![sample screenshot](http://i.imgur.com/xvlw9iHt.png)](http://i.imgur.com/xvlw9iH.png) -[![sample screenshot](http://i.imgur.com/cYQOuRrt.png)](http://i.imgur.com/cYQOuRr.png) -[![sample screenshot](http://i.imgur.com/A6spiZZt.png)](http://i.imgur.com/A6spiZZ.png) -[![sample screenshot](http://i.imgur.com/TY5a5r9t.png)](http://i.imgur.com/TY5a5r9.png) +[![sample screenshot](https://i.imgur.com/xvlw9iHt.png)](https://i.imgur.com/xvlw9iH.png) +[![sample screenshot](https://i.imgur.com/cYQOuRrt.png)](https://i.imgur.com/cYQOuRr.png) +[![sample screenshot](https://i.imgur.com/A6spiZZt.png)](https://i.imgur.com/A6spiZZ.png) +[![sample screenshot](https://i.imgur.com/TY5a5r9t.png)](https://i.imgur.com/TY5a5r9.png) You can find polybar configs for these example images (and other configs) [here](https://github.com/jaagr/dots/tree/master/.local/etc/themer/themes). @@ -57,7 +57,7 @@ Some of the services included so far: - Systray icons - Window title - Playback controls and status display for [MPD](https://www.musicpd.org/) using [libmpdclient](https://www.musicpd.org/libs/libmpdclient/) -- [ALSA](http://www.alsa-project.org/main/index.php/Main_Page) volume controls +- [ALSA](https://www.alsa-project.org/main/index.php/Main_Page) volume controls - Workspace and desktop panel for [bspwm](https://github.com/baskerville/bspwm) and [i3](https://github.com/i3/i3) - Workspace module for [EWMH compliant](https://specifications.freedesktop.org/wm-spec/wm-spec-1.3.html#idm140130320786080) window managers - Keyboard layout and indicator status @@ -110,7 +110,7 @@ If you are using **Fedora**, you can install [polybar](https://src.fedoraproject ### Dependencies -A compiler with C++14 support ([clang-3.4+](http://llvm.org/releases/download.html), [gcc-5.1+](https://gcc.gnu.org/releases.html)), [cmake 3.1+](https://cmake.org/download/), [git](https://git-scm.com/downloads) +A compiler with C++14 support ([clang-3.4+](https://llvm.org/releases/download.html), [gcc-5.1+](https://gcc.gnu.org/releases.html)), [cmake 3.1+](https://cmake.org/download/), [git](https://git-scm.com/downloads) - `cairo` - `libxcb` - `python` @@ -190,7 +190,7 @@ Want to get in touch? ## Contributors ### Owner -* Michael Carlberg [**@jaagr**](http://github.com/jaagr/) +* Michael Carlberg [**@jaagr**](https://github.com/jaagr/) ### Maintainers * [**@NBonaparte**](https://github.com/NBonaparte) diff --git a/doc/README.md b/doc/README.md index 38fd0b93..46c0b329 100644 --- a/doc/README.md +++ b/doc/README.md @@ -7,7 +7,7 @@ The html documentation and man pages are built automatically when you build with target `doc`). ## Preview Locally -The documentation uses [Sphinx](http://www.sphinx-doc.org/en/stable/) to generate the documentation, so you will need to +The documentation uses [Sphinx](https://www.sphinx-doc.org/en/stable/) to generate the documentation, so you will need to have that installed. If you build polybar normally while having Sphinx installed during configuration, the documentation will be enabled and diff --git a/doc/conf.py b/doc/conf.py index 7041c9d0..6035f206 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -4,7 +4,7 @@ # # This file does only contain a selection of the most common options. For a # full list see the documentation: -# http://www.sphinx-doc.org/en/master/config +# https://www.sphinx-doc.org/en/master/config # -- Path setup -------------------------------------------------------------- diff --git a/doc/dev/packaging.rst b/doc/dev/packaging.rst index cfb5c647..c0436b11 100644 --- a/doc/dev/packaging.rst +++ b/doc/dev/packaging.rst @@ -25,7 +25,7 @@ polybar in some cases. Some of these cases are: :) The list above is not exhaustive, if you are unsure, feel free to ask in a new -GitHub issue or on `Gitter `_. Please also ask if you +GitHub issue or on `Gitter `_. Please also ask if you run into any polybar related issues while packaging. Packaging diff --git a/src/modules/fs.cpp b/src/modules/fs.cpp index 293def01..ad0f8820 100644 --- a/src/modules/fs.cpp +++ b/src/modules/fs.cpp @@ -96,7 +96,7 @@ namespace modules { mount->type = details->at(MOUNTINFO_TYPE); mount->fsname = details->at(MOUNTINFO_FSNAME); - // see: http://en.cppreference.com/w/cpp/filesystem/space + // see: https://en.cppreference.com/w/cpp/filesystem/space mount->bytes_total = static_cast(buffer.f_frsize) * static_cast(buffer.f_blocks); mount->bytes_free = static_cast(buffer.f_frsize) * static_cast(buffer.f_bfree); mount->bytes_used = mount->bytes_total - mount->bytes_free;