Changes in: hypr,starship,
This commit is contained in:
parent
ef1117f321
commit
f6794004a4
4 changed files with 104 additions and 53 deletions
98
fastfetch/config_1.jsonc
Normal file
98
fastfetch/config_1.jsonc
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
// Inspired by Catnap
|
||||||
|
{
|
||||||
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||||
|
"logo": {
|
||||||
|
"type": "small",
|
||||||
|
"padding": {
|
||||||
|
"top": 2,
|
||||||
|
"right": 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"separator": " ",
|
||||||
|
"key": {
|
||||||
|
"width": 16
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
{
|
||||||
|
"key": "╭───────────╮",
|
||||||
|
"type": "custom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// draw borders first to make colors of left and right border consistant
|
||||||
|
"key": "│ │\u001b[11D{#31} user",
|
||||||
|
"type": "title",
|
||||||
|
"format": "{1}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "├───────────┤",
|
||||||
|
"type": "custom"
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// "key": "│ │\u001b[11D{#32} hname",
|
||||||
|
// "type": "title",
|
||||||
|
// "format": "{2}"
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// "key": "│ │\u001b[11D{#33} uptime",
|
||||||
|
// "type": "uptime"
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#34} distro",
|
||||||
|
"type": "os"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#35} kernel",
|
||||||
|
"type": "kernel"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#36} desktop",
|
||||||
|
"type": "de"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#31} term",
|
||||||
|
"type": "terminal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#31} wm",
|
||||||
|
"type": "wm"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#32} shell",
|
||||||
|
"type": "shell"
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// "key": "│ │\u001b[11D{#33} cpu",
|
||||||
|
// "type": "cpu",
|
||||||
|
// "showPeCoreCount": true
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#34} disk",
|
||||||
|
"type": "disk",
|
||||||
|
"folders": "/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#35} memory",
|
||||||
|
"type": "memory"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#36} network",
|
||||||
|
"type": "localip",
|
||||||
|
"format": "{1} ({4})"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "├───────────┤",
|
||||||
|
"type": "custom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "│ │\u001b[11D{#39} colors",
|
||||||
|
"type": "colors",
|
||||||
|
"symbol": "circle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "╰───────────╯",
|
||||||
|
"type": "custom"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -223,19 +223,19 @@ bind = Ctrl_Shift, Tab, exec, $terminal $taskManager
|
||||||
#ColorPicker
|
#ColorPicker
|
||||||
bind = $mainMod, C, exec, $colorpicker -a
|
bind = $mainMod, C, exec, $colorpicker -a
|
||||||
|
|
||||||
#Clipboard for Copy / Paste
|
bind = $mainMod, I, exec, bash -c "~/SideProjects/Scripts/selectWallpaper.sh"#Clipboard for Copy / Paste
|
||||||
bind = $mainMod, M, exec, ~/.config/rofi/clipboard/launcher.sh
|
bind = $mainMod, M, exec, ~/.config/rofi/clipboard/launcher.sh
|
||||||
#Audio Control
|
#Audio Control
|
||||||
#binde = , XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 2%+
|
binde = , XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 2%+
|
||||||
#bindl = , XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%-
|
bindl = , XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%-
|
||||||
|
|
||||||
#Volume Control
|
#Volume Control
|
||||||
# binde = , XF86AudioRaiseVolume, exec, ~/.local/bin/volume.sh up
|
# binde = , XF86AudioRaiseVolume, exec, ~/.local/bin/volume.sh up
|
||||||
# binde = , XF86AudioLowerVolume, exec, ~/.local/bin/volume.sh down
|
# binde = , XF86AudioLowerVolume, exec, ~/.local/bin/volume.sh down
|
||||||
# binde = , XF86AudioMute, exec, ~/.local/bin/volume.sh mute
|
# binde = , XF86AudioMute, exec, ~/.local/bin/volume.sh mute
|
||||||
binde = , XF86AudioRaiseVolume, exec, ~/.local/bin/volume.sh --inc
|
# binde = , XF86AudioRaiseVolume, exec, ~/.local/bin/volume.sh --inc
|
||||||
binde = , XF86AudioLowerVolume, exec, ~/.local/bin/volume.sh --dec
|
# binde = , XF86AudioLowerVolume, exec, ~/.local/bin/volume.sh --dec
|
||||||
binde = , XF86AudioMute, exec, ~/.local/bin/volume.sh --toggle
|
# binde = , XF86AudioMute, exec, ~/.local/bin/volume.sh --toggle
|
||||||
|
|
||||||
#Player Control
|
#Player Control
|
||||||
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||||
|
|
BIN
rofi/powermenu/background.png
Normal file
BIN
rofi/powermenu/background.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 43 KiB |
|
@ -89,53 +89,6 @@ symbol = " "
|
||||||
[ocaml]
|
[ocaml]
|
||||||
symbol = " "
|
symbol = " "
|
||||||
|
|
||||||
[os.symbols]
|
|
||||||
Alpaquita = " "
|
|
||||||
Alpine = " "
|
|
||||||
AlmaLinux = " "
|
|
||||||
Amazon = " "
|
|
||||||
Android = " "
|
|
||||||
Arch = " "
|
|
||||||
Artix = " "
|
|
||||||
CachyOS = " "
|
|
||||||
CentOS = " "
|
|
||||||
Debian = " "
|
|
||||||
DragonFly = " "
|
|
||||||
Emscripten = " "
|
|
||||||
EndeavourOS = " "
|
|
||||||
Fedora = " "
|
|
||||||
FreeBSD = " "
|
|
||||||
Garuda = " "
|
|
||||||
Gentoo = " "
|
|
||||||
HardenedBSD = " "
|
|
||||||
Illumos = " "
|
|
||||||
Kali = " "
|
|
||||||
Linux = " "
|
|
||||||
Mabox = " "
|
|
||||||
Macos = " "
|
|
||||||
Manjaro = " "
|
|
||||||
Mariner = " "
|
|
||||||
MidnightBSD = " "
|
|
||||||
Mint = " "
|
|
||||||
NetBSD = " "
|
|
||||||
NixOS = " "
|
|
||||||
Nobara = " "
|
|
||||||
OpenBSD = " "
|
|
||||||
openSUSE = " "
|
|
||||||
OracleLinux = " "
|
|
||||||
Pop = " "
|
|
||||||
Raspbian = " "
|
|
||||||
Redhat = " "
|
|
||||||
RedHatEnterprise = " "
|
|
||||||
RockyLinux = " "
|
|
||||||
Redox = " "
|
|
||||||
Solus = " "
|
|
||||||
SUSE = " "
|
|
||||||
Ubuntu = " "
|
|
||||||
Unknown = " "
|
|
||||||
Void = " "
|
|
||||||
Windows = " "
|
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
symbol = " "
|
symbol = " "
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue