diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2024-05-23 19:13:30 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2024-05-23 19:13:30 +0900 |
| commit | 8a36a291b396f843b91da1970f1d162c23a05c13 (patch) | |
| tree | e9ee4b966c7067ee90e2903691a303960ea7b546 | |
| parent | 8217dd247d10064a32ec83eeadf3dc2176d31980 (diff) | |
uploaded fastfetch config. Updated default font size kitty, added fastfetch on copy.sh to backup
| -rw-r--r-- | config/fastfetch/config.jsonc | 147 | ||||
| -rw-r--r-- | config/kitty/kitty.conf | 10 | ||||
| -rwxr-xr-x | copy.sh | 2 |
3 files changed, 155 insertions, 4 deletions
diff --git a/config/fastfetch/config.jsonc b/config/fastfetch/config.jsonc new file mode 100644 index 00000000..c6eb694b --- /dev/null +++ b/config/fastfetch/config.jsonc @@ -0,0 +1,147 @@ +// Load with --load-config examples/2.jsonc +// Note that you must replace the image path to an existing image to display it. + +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "padding": { + "top": 3 + } + }, + "display": { + "separator": " " + }, + "modules": [ + { + "type": "custom", + "format": "\u001b[90m┌────────────────────────────────────────────────────────────┐" + }, + { + "type": "title", + "keyWidth": 10, + "format": " {6}{7}{8}" + }, + { + "type": "custom", + "format": "\u001b[90m└────────────────────────────────────────────────────────────┘" + }, + { + "type": "custom", + "format": "\u001b[90m \u001b[31m \u001b[32m \u001b[33m \u001b[34m \u001b[35m \u001b[36m \u001b[37m \u001b[38m \u001b[39m \u001b[38m \u001b[37m \u001b[36m \u001b[35m \u001b[34m \u001b[33m \u001b[32m \u001b[31m \u001b[90m " + }, + { + "type": "custom", + "format": "\u001b[90m┌────────────────────────────────────────────────────────────┐" + }, + { + "type": "os", + "key": " DISTRO", + "keyColor": "yellow" + }, + { + "type": "kernel", + "key": "│ ├", + "keyColor": "yellow" + }, + { + "type": "packages", + "key": "│ ├", + "keyColor": "yellow" + }, + { + "type": "shell", + "key": "│ └", + "keyColor": "yellow" + }, + { + "type": "wm", + "key": " DE/WM", + "keyColor": "blue" + }, + { + "type": "wmtheme", + "key": "│ ├", + "keyColor": "blue" + }, + { + "type": "icons", + "key": "│ ├", + "keyColor": "blue" + }, + { + "type": "terminal", + "key": "│ ├", + "keyColor": "blue" + }, + { + "type": "wallpaper", + "key": "│ └", + "keyColor": "blue" + }, + { + "type": "host", + "key": " SYSTEM", + "keyColor": "green" + }, + { + "type": "cpu", + "key": "│ ├", + "keyColor": "green" + }, + { + "type": "gpu", + "key": "│ ├", + "keyColor": "green" + }, + { + "type": "display", + "key": "│ ├", + "keyColor": "green", + "compactType": "original-with-refresh-rate" + }, + { + "type": "memory", + "key": "│ ├", + "keyColor": "green" + }, + { + "type": "swap", + "key": "│ ├", + "keyColor": "green" + }, + { + "type": "uptime", + "key": "│ ├", + "keyColor": "green" + }, + { + "type": "display", + "key": "│ └", + "keyColor": "green" + }, + { + "type": "sound", + "key": " AUDIO", + "keyColor": "cyan" + }, + { + "type": "player", + "key": "│ ├", + "keyColor": "cyan" + }, + { + "type": "media", + "key": "│ └", + "keyColor": "cyan" + }, + { + "type": "custom", + "format": "\u001b[90m└────────────────────────────────────────────────────────────┘" + }, + { + "type": "custom", + "format": "\u001b[90m \u001b[31m \u001b[32m \u001b[33m \u001b[34m \u001b[35m \u001b[36m \u001b[37m \u001b[38m \u001b[39m \u001b[38m \u001b[37m \u001b[36m \u001b[35m \u001b[34m \u001b[33m \u001b[32m \u001b[31m \u001b[90m " + }, + "break", + ] +} diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf index f178d462..aebd1fb4 100644 --- a/config/kitty/kitty.conf +++ b/config/kitty/kitty.conf @@ -1,14 +1,18 @@ font_family Fira Code SemiBold -font_size 13.0 +font_size 15.0 bold_font auto italic_font auto bold_italic_font auto background_opacity 0.7 - confirm_os_window_close 0 +scrollback_lines 2000 +wheel_scroll_min_lines 1 + enable_audio_bell no selection_foreground #000000 -selection_background #F5FBFF
\ No newline at end of file +selection_background #F5FBFF + +window_padding_width 4
\ No newline at end of file @@ -209,7 +209,7 @@ get_backup_dirname() { echo "back-up_${timestamp}" } -for DIR in ags btop cava hypr kitty Kvantum qt5ct qt6ct rofi swappy swaync wallust waybar wlogout; do +for DIR in ags btop cava fastfetch hypr kitty Kvantum qt5ct qt6ct rofi swappy swaync wallust waybar wlogout; do DIRPATH=~/.config/"$DIR" if [ -d "$DIRPATH" ]; then echo -e "${NOTE} - Config for $DIR found, attempting to back up." |
