-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
4,055 additions
and
245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Neofetch | ||
|
||
<p align="center"> | ||
<img src="images/neofetch.png"> | ||
</p> | ||
|
||
Neofetch show the informations from the system, highly configurable | ||
|
||
## Installation | ||
|
||
- In NixOS you can install on the system with this command: | ||
|
||
```shell | ||
nix-env -iAv nixos.neofetch | ||
``` | ||
|
||
- You can install too adding the neofetch with the programs in the `etc/nixos/configuration.nix` | ||
|
||
```shell | ||
environment.systemPackages = with pkgs; [ | ||
neofetch | ||
]; | ||
``` | ||
|
||
## Configuration | ||
|
||
- My configuration is in the `config.conf` in this directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
|
||
# ---------------------------------------------------------------------------- | ||
# | ||
# ███╗ ██╗███████╗ ██████╗ ███████╗███████╗████████╗ ██████╗██╗ ██╗ | ||
# ████╗ ██║██╔════╝██╔═══██╗██╔════╝██╔════╝╚══██╔══╝██╔════╝██║ ██║ | ||
# ██╔██╗ ██║█████╗ ██║ ██║█████╗ █████╗ ██║ ██║ ███████║ | ||
# ██║╚██╗██║██╔══╝ ██║ ██║██╔══╝ ██╔══╝ ██║ ██║ ██╔══██║ | ||
# ██║ ╚████║███████╗╚██████╔╝██║ ███████╗ ██║ ╚██████╗██║ ██║ | ||
# ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═╝ ╚══════╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ | ||
# ---------------------------------------------------------------------------- | ||
|
||
print_info() { | ||
info title | ||
info underline | ||
|
||
prin "$(color 12)╭──────────── $(color 10)Software$(color 12) ────────────" | ||
info "$(color 12)│ $(color 13)OS" distro | ||
info "$(color 12)│ $(color 13)Kernel" kernel | ||
info "$(color 12)│ $(color 13)Packages" packages | ||
info "$(color 12)│ $(color 13)Shell" shell | ||
info "$(color 12)│ $(color 13)DE" de | ||
info "$(color 12)│ $(color 13)Terminal" term | ||
info "$(color 12)│ $(color 13)Local IP" local_ip | ||
prin "$(color 12)├──────────── $(color 10)Hardware$(color 12) ────────────" | ||
info "$(color 12)│ $(color 13)Host" model | ||
info "$(color 12)│ $(color 13)CPU" cpu | ||
info "$(color 12)│ $(color 13)GPU" gpu | ||
info "$(color 12)│ $(color 13)Memory" memory | ||
info "$(color 12)│ $(color 13)Disk" disk | ||
prin "$(color 12)├───────────── $(color 10)Uptime$(color 12) ─────────────" | ||
info "$(color 12)│" uptime | ||
prin "$(color 12)╰──────────────────────────────────" | ||
|
||
#info cols | ||
|
||
# Defaults | ||
|
||
# info "OS" distro | ||
# info "Host" model | ||
# info "Kernel" kernel | ||
# info "Uptime" uptime | ||
# info "Packages" packages | ||
# info "Shell" shell | ||
# info "Resolution" resolution | ||
# info "DE" de | ||
# info "WM" wm | ||
# info "WM Theme" wm_theme | ||
# info "Theme" theme | ||
# info "Icons" icons | ||
# info "Terminal" term | ||
# info "Terminal Font" term_font | ||
# info "CPU" cpu | ||
# info "GPU" gpu | ||
# info "Memory" memory | ||
|
||
# info "GPU Driver" gpu_driver # Linux/macOS only | ||
# info "CPU Usage" cpu_usage | ||
# info "Disk" disk | ||
# info "Battery" battery | ||
# info "Font" font | ||
# info "Song" song | ||
# [[ "$player" ]] && prin "Music Player" "$player" | ||
# info "Local IP" local_ip | ||
# info "Public IP" public_ip | ||
# info "Users" users | ||
# info "Locale" locale # This only works on glibc systems. | ||
|
||
# info cols | ||
|
||
} | ||
|
||
# To know what these functions mean, go to the Customization Wiki on top | ||
|
||
title_fqdn="off" | ||
kernel_shorthand="on" | ||
distro_shorthand="on" | ||
os_arch="off" | ||
uptime_shorthand="off" | ||
memory_percent="off" | ||
memory_unit="mib" | ||
package_managers="on" | ||
shell_path="off" | ||
shell_version="on" | ||
cpu_brand="on" | ||
cpu_speed="on" | ||
cpu_cores="logical" | ||
cpu_temp="off" | ||
gpu_type="all" | ||
refresh_rate="on" | ||
gtk_shorthand="on" | ||
gtk2="on" | ||
gtk3="on" | ||
public_ip_host="http://ident.me" | ||
public_ip_timeout=2 | ||
de_version="on" | ||
disk_subtitle="dir" | ||
disk_percent="on" | ||
music_player="auto" | ||
song_format="%artist% - %title%" | ||
mpc_args=() | ||
colors=(distro) | ||
underline_enabled="on" | ||
underline_char="¨" | ||
separator="›" | ||
color_blocks="on" | ||
block_width=3 | ||
block_height=1 | ||
col_offset="auto" | ||
bar_char_elapsed="-" | ||
bar_char_total="=" | ||
bar_border="on" | ||
bar_length=15 | ||
bar_color_elapsed="distro" | ||
bar_color_total="distro" | ||
cpu_display="off" | ||
memory_display="off" | ||
battery_display="off" | ||
disk_display="off" | ||
image_source="auto" | ||
ascii_distro="auto" | ||
ascii_bold="off" | ||
image_loop="off" | ||
thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch" | ||
crop_mode="normal" | ||
crop_offset="center" | ||
image_size="auto" | ||
gap=3 | ||
yoffset=0 | ||
xoffset=0 | ||
background_color= | ||
stdout="off" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Minimalist Browser Qutebrowser | ||
|
||
<p align="center"> | ||
<img src="images/qutebrowser.png"> | ||
</p> | ||
|
||
## Install | ||
|
||
- In NixOS just add the Qutebrowser into the `configuration.nix`: | ||
|
||
```shell | ||
environment.systemPackages = with pkgs; [ | ||
qutebrowser | ||
]; | ||
``` | ||
|
||
## Configuration | ||
|
||
- `config.py` have all the configs available to use in qutebrowser | ||
- `github-colors.css` have the theme used into qutebrowser | ||
|
||
## Keyboard Shortcuts | ||
|
||
TBD | ||
|
||
## Commands | ||
|
||
TBD |
Oops, something went wrong.