Skip to content

Commit

Permalink
Updated images in all configs
Browse files Browse the repository at this point in the history
  • Loading branch information
F4NT0 committed Aug 5, 2023
1 parent 2884c9a commit 93a1854
Show file tree
Hide file tree
Showing 24 changed files with 4,055 additions and 245 deletions.
4 changes: 4 additions & 0 deletions .config/kitty/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Kitty Console Configuration

<p align="center">
<img src="images/kitty.png">
</p>

## Installation

- You can install kitty on NixOS using the following command:
Expand Down
Binary file added .config/kitty/images/kitty.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions .config/neofetch/README.md
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.
131 changes: 131 additions & 0 deletions .config/neofetch/config.conf
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"
Binary file added .config/neofetch/images/neofetch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions .config/oh-my-posh/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Oh-my-posh configuration

<p align="center">
<img src="images/ohmyposh.png">
</p>

## Bashrc configuration

- First before go to oh-my-posh you need to have the following file into your home (~) folder:
Expand Down
Binary file added .config/oh-my-posh/images/ohmyposh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions .config/qutebrowser/README.md
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
Loading

0 comments on commit 93a1854

Please sign in to comment.