From d1bbbcbb1537c590745dcc8db9763978e5fb0b99 Mon Sep 17 00:00:00 2001 From: ayushDumasia <220170107033@gmail.com> Date: Mon, 21 Oct 2024 22:35:37 +0530 Subject: [PATCH] Add rofi --- hypr/.config/hypr/hyprpaper.conf | 4 +- rofi/bluetooth/bluetooth.sh | 317 +++++++++++++++++++++++++++++++ rofi/clipboard/launcher.sh | 11 ++ rofi/clipboard/style.rasi | 180 ++++++++++++++++++ rofi/launcher/launcher.sh | 9 + rofi/launcher/style.rasi | 183 ++++++++++++++++++ rofi/powermenu/background.png | Bin 0 -> 44102 bytes rofi/powermenu/confirmation.rasi | 104 ++++++++++ rofi/powermenu/powermenu.sh | 102 ++++++++++ rofi/powermenu/style.rasi | 130 +++++++++++++ rofi/wifi/enable.rasi | 110 +++++++++++ rofi/wifi/list.rasi | 126 ++++++++++++ rofi/wifi/password.rasi | 90 +++++++++ rofi/wifi/ssid.rasi | 90 +++++++++ rofi/wifi/wifi.sh | 83 ++++++++ vim/.config/nvim/usage_data.json | 2 +- 16 files changed, 1538 insertions(+), 3 deletions(-) create mode 100755 rofi/bluetooth/bluetooth.sh create mode 100755 rofi/clipboard/launcher.sh create mode 100644 rofi/clipboard/style.rasi create mode 100755 rofi/launcher/launcher.sh create mode 100644 rofi/launcher/style.rasi create mode 100644 rofi/powermenu/background.png create mode 100644 rofi/powermenu/confirmation.rasi create mode 100755 rofi/powermenu/powermenu.sh create mode 100644 rofi/powermenu/style.rasi create mode 100644 rofi/wifi/enable.rasi create mode 100644 rofi/wifi/list.rasi create mode 100644 rofi/wifi/password.rasi create mode 100644 rofi/wifi/ssid.rasi create mode 100755 rofi/wifi/wifi.sh diff --git a/hypr/.config/hypr/hyprpaper.conf b/hypr/.config/hypr/hyprpaper.conf index ad84b9e..22adfa2 100644 --- a/hypr/.config/hypr/hyprpaper.conf +++ b/hypr/.config/hypr/hyprpaper.conf @@ -1,4 +1,4 @@ -preload = /home/archer/Downloads/wallpaper/illustratCity-Skyline.png -wallpaper = eDP-1, /home/archer/Downloads/wallpaper/illustratCity-Skyline.png +preload = /home/archer/Downloads/wallpaper/purple_girl.png +wallpaper = eDP-1, /home/archer/Downloads/wallpaper/purple_girl.png splash = off ipc = off diff --git a/rofi/bluetooth/bluetooth.sh b/rofi/bluetooth/bluetooth.sh new file mode 100755 index 0000000..c7916f2 --- /dev/null +++ b/rofi/bluetooth/bluetooth.sh @@ -0,0 +1,317 @@ +#!/usr/bin/env bash +# __ _ _ _ _ _ _ +# _ __ ___ / _(_) | |__ | |_ _ ___| |_ ___ ___ | |_| |__ +# | '__/ _ \| |_| |_____| '_ \| | | | |/ _ \ __/ _ \ / _ \| __| '_ \ +# | | | (_) | _| |_____| |_) | | |_| | __/ || (_) | (_) | |_| | | | +# |_| \___/|_| |_| |_.__/|_|\__,_|\___|\__\___/ \___/ \__|_| |_| +# +# Author: Nick Clyde (clydedroid) +# +# A script that generates a rofi menu that uses bluetoothctl to +# connect to bluetooth devices and display status info. +# +# Inspired by networkmanager-dmenu (https://github.com/firecat53/networkmanager-dmenu) +# Thanks to x70b1 (https://github.com/polybar/polybar-scripts/tree/master/polybar-scripts/system-bluetooth-bluetoothctl) +# +# Depends on: +# Arch repositories: rofi, bluez-utils (contains bluetoothctl) + +# Constants +divider="---------" +goback="Back" + +# Checks if bluetooth controller is powered on +power_on() { + if bluetoothctl show | grep -q "Powered: yes"; then + return 0 + else + return 1 + fi +} + +# Toggles power state +toggle_power() { + if power_on; then + bluetoothctl power off + show_menu + else + if rfkill list bluetooth | grep -q 'blocked: yes'; then + rfkill unblock bluetooth && sleep 3 + fi + bluetoothctl power on + show_menu + fi +} + +# Checks if controller is scanning for new devices +scan_on() { + if bluetoothctl show | grep -q "Discovering: yes"; then + echo "Scan: on" + return 0 + else + echo "Scan: off" + return 1 + fi +} + +# Toggles scanning state +toggle_scan() { + if scan_on; then + kill $(pgrep -f "bluetoothctl scan on") + bluetoothctl scan off + show_menu + else + bluetoothctl scan on & + echo "Scanning..." + sleep 5 + show_menu + fi +} + +# Checks if controller is able to pair to devices +pairable_on() { + if bluetoothctl show | grep -q "Pairable: yes"; then + echo "Pairable: on" + return 0 + else + echo "Pairable: off" + return 1 + fi +} + +# Toggles pairable state +toggle_pairable() { + if pairable_on; then + bluetoothctl pairable off + show_menu + else + bluetoothctl pairable on + show_menu + fi +} + +# Checks if controller is discoverable by other devices +discoverable_on() { + if bluetoothctl show | grep -q "Discoverable: yes"; then + echo "Discoverable: on" + return 0 + else + echo "Discoverable: off" + return 1 + fi +} + +# Toggles discoverable state +toggle_discoverable() { + if discoverable_on; then + bluetoothctl discoverable off + show_menu + else + bluetoothctl discoverable on + show_menu + fi +} + +# Checks if a device is connected +device_connected() { + device_info=$(bluetoothctl info "$1") + if echo "$device_info" | grep -q "Connected: yes"; then + return 0 + else + return 1 + fi +} + +# Toggles device connection +toggle_connection() { + if device_connected "$1"; then + bluetoothctl disconnect "$1" + device_menu "$device" + else + bluetoothctl connect "$1" + device_menu "$device" + fi +} + +# Checks if a device is paired +device_paired() { + device_info=$(bluetoothctl info "$1") + if echo "$device_info" | grep -q "Paired: yes"; then + echo "Paired: yes" + return 0 + else + echo "Paired: no" + return 1 + fi +} + +# Toggles device paired state +toggle_paired() { + if device_paired "$1"; then + bluetoothctl remove "$1" + device_menu "$device" + else + bluetoothctl pair "$1" + device_menu "$device" + fi +} + +# Checks if a device is trusted +device_trusted() { + device_info=$(bluetoothctl info "$1") + if echo "$device_info" | grep -q "Trusted: yes"; then + echo "Trusted: yes" + return 0 + else + echo "Trusted: no" + return 1 + fi +} + +# Toggles device connection +toggle_trust() { + if device_trusted "$1"; then + bluetoothctl untrust "$1" + device_menu "$device" + else + bluetoothctl trust "$1" + device_menu "$device" + fi +} + +# Prints a short string with the current bluetooth status +# Useful for status bars like polybar, etc. +print_status() { + if power_on; then + printf '' + + paired_devices_cmd="devices Paired" + # Check if an outdated version of bluetoothctl is used to preserve backwards compatibility + if (( $(echo "$(bluetoothctl version | cut -d ' ' -f 2) < 5.65" | bc -l) )); then + paired_devices_cmd="paired-devices" + fi + + mapfile -t paired_devices < <(bluetoothctl $paired_devices_cmd | grep Device | cut -d ' ' -f 2) + counter=0 + + for device in "${paired_devices[@]}"; do + if device_connected "$device"; then + device_alias=$(bluetoothctl info "$device" | grep "Alias" | cut -d ' ' -f 2-) + + if [ $counter -gt 0 ]; then + printf ", %s" "$device_alias" + else + printf " %s" "$device_alias" + fi + + ((counter++)) + fi + done + printf "\n" + else + echo "" + fi +} + +# A submenu for a specific device that allows connecting, pairing, and trusting +device_menu() { + device=$1 + + # Get device name and mac address + device_name=$(echo "$device" | cut -d ' ' -f 3-) + mac=$(echo "$device" | cut -d ' ' -f 2) + + # Build options + if device_connected "$mac"; then + connected="Connected: yes" + else + connected="Connected: no" + fi + paired=$(device_paired "$mac") + trusted=$(device_trusted "$mac") + options="$connected\n$paired\n$trusted\n$divider\n$goback\nExit" + + # Open rofi menu, read chosen option + chosen="$(echo -e "$options" | $rofi_command "$device_name")" + + # Match chosen option to command + case "$chosen" in + "" | "$divider") + echo "No option chosen." + ;; + "$connected") + toggle_connection "$mac" + ;; + "$paired") + toggle_paired "$mac" + ;; + "$trusted") + toggle_trust "$mac" + ;; + "$goback") + show_menu + ;; + esac +} + +# Opens a rofi menu with current bluetooth status and options to connect +show_menu() { + # Get menu options + if power_on; then + power="Power: on" + + # Human-readable names of devices, one per line + # If scan is off, will only list paired devices + devices=$(bluetoothctl devices | grep Device | cut -d ' ' -f 3-) + + # Get controller flags + scan=$(scan_on) + pairable=$(pairable_on) + discoverable=$(discoverable_on) + + # Options passed to rofi + options="$devices\n$divider\n$power\n$scan\n$pairable\n$discoverable\nExit" + else + power="Power: off" + options="$power\nExit" + fi + + # Open rofi menu, read chosen option + chosen="$(echo -e "$options" | $rofi_command "Bluetooth")" + + # Match chosen option to command + case "$chosen" in + "" | "$divider") + echo "No option chosen." + ;; + "$power") + toggle_power + ;; + "$scan") + toggle_scan + ;; + "$discoverable") + toggle_discoverable + ;; + "$pairable") + toggle_pairable + ;; + *) + device=$(bluetoothctl devices | grep "$chosen") + # Open a submenu if a device is selected + if [[ $device ]]; then device_menu "$device"; fi + ;; + esac +} + +# Rofi command to pipe into, can add any options here +rofi_command="rofi -dmenu $* -p" + +case "$1" in + --status) + print_status + ;; + *) + show_menu + ;; +esac diff --git a/rofi/clipboard/launcher.sh b/rofi/clipboard/launcher.sh new file mode 100755 index 0000000..9d396c6 --- /dev/null +++ b/rofi/clipboard/launcher.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +## Directory and theme setup +dir="$HOME/.config/rofi/clipboard/" +theme='style' + +echo ${dir} + +## Clipboard Search with Rofi and custom theme +cliphist list | awk '{$1=""; print $0}' | rofi -dmenu -i -p "Search" -theme ${dir}/${theme}.rasi | wl-copy + diff --git a/rofi/clipboard/style.rasi b/rofi/clipboard/style.rasi new file mode 100644 index 0000000..881de0c --- /dev/null +++ b/rofi/clipboard/style.rasi @@ -0,0 +1,180 @@ +/*****----- Configuration -----*****/ +configuration { + modi: "drun,window"; + show-icons: true; + display-drun: ""; + display-run: ""; + display-filebrowser: ""; + display-window: ""; + drun-display-format: "{name}"; + window-format: "{w} {c}"; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrains Mono Nerd Font 10"; + background: #11111b; + background-alt: #313244; + foreground: #eff1f5; + selected: #cba6f7; + active: #6E77FF; + urgent: #8E3596; +} + +/*****----- Main Window -----*****/ +window { + /* properties for window widget */ + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + width: 500px; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + border-radius: 8px; + cursor: "default"; + background-color: @background; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 0px; + background-color: transparent; + orientation: vertical; + children: [ "inputbar", "listbox" ]; +} + +listbox { + spacing: 0px; + padding: 0px; + background-color: transparent; + orientation: vertical; + children: [ "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 8px; + padding: 32px 32px 0px 32px; + background-color: transparent; + text-color: @foreground; + orientation: horizontal; + children: [ "textbox-prompt-colon", "entry", "dummy", "mode-switcher" ]; +} +textbox-prompt-colon { + enabled: true; + expand: false; + str: ""; + padding: 12px 20px 12px 15px; + border-radius: 10%; + background-color: #a6e3a1; + text-color: @background; +} +entry { + enabled: true; + expand: false; + width: 200px; + padding: 12px 16px 0px 16px; + border-radius: 10px; + background-color: @background-alt; + text-color: inherit; + cursor: text; + placeholder: "Search"; + placeholder-color: inherit; +} +dummy { + expand: true; + background-color: transparent; +} + +/*****----- Mode Switcher -----*****/ +mode-switcher{ + enabled: true; + spacing: 8px; + background-color: transparent; + text-color: @foreground; +} +button { + padding: 12px 22px 0px 16px; + border-radius: 100%; + background-color: @background-alt; + text-color: inherit; + cursor: pointer; +} +button selected { + background-color: @selected; + text-color: @background; +} + +/*****----- Listview -----*****/ +listview { + padding : 8px; + enabled: true; + columns: 1; + lines: 8; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 8px; + margin: 32px 24px; + border-radius: 8px; + background-color: #1e1e2e; + text-color: @foreground; + cursor: "default"; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 0px; + padding: 8px; + border-radius: 8px; + background-color: transparent; + text-color: @foreground; + cursor: pointer; +} +element selected.normal { + background-color: @selected; + text-color: @background; +} +element-icon { + size: 0px; +} +element-text { + padding: 0px 0px; + background-color: transparent; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0; +} + +/*****----- Message -----*****/ +message { + background-color: transparent; +} +textbox { + padding: 0px; + border-radius: 0px; + background-color: @background-alt; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 0px; + border-radius: 0px; + background-color: @background; + text-color: @foreground; +} + diff --git a/rofi/launcher/launcher.sh b/rofi/launcher/launcher.sh new file mode 100755 index 0000000..d87f615 --- /dev/null +++ b/rofi/launcher/launcher.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +dir="$HOME/.config/rofi/launcher/" +theme='style' + +## Run +rofi \ + -show drun \ + -theme ${dir}/${theme}.rasi diff --git a/rofi/launcher/style.rasi b/rofi/launcher/style.rasi new file mode 100644 index 0000000..0b248a7 --- /dev/null +++ b/rofi/launcher/style.rasi @@ -0,0 +1,183 @@ +/*****----- Configuration -----*****/ +configuration { + modi: "drun,window"; + show-icons: true; + display-drun: ""; + display-run: ""; + display-filebrowser: ""; + display-window: ""; + drun-display-format: "{name}"; + window-format: "{w} {c}"; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrains Mono Nerd Font 10"; + background: #11111b; + background-alt: #313244; + foreground: #eff1f5; + selected: #cba6f7; + active: #6E77FF; + urgent: #8E3596; +} + +/*****----- Main Window -----*****/ +window { + /* properties for window widget */ + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + width: 500px; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + border-radius: 8px; + cursor: "default"; + background-color: @background; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 0px; + background-color: transparent; + orientation: vertical; + children: [ "inputbar", "listbox" ]; +} + +listbox { + spacing: 0px; + padding: 0px; + background-color: transparent; + orientation: vertical; + children: [ "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 8px; + padding: 32px 32px 80px 32px; + background-color: transparent; + background-image: url("~/Downloads/wallpaper/Window.png",width); + text-color: @foreground; + orientation: horizontal; + children: [ "textbox-prompt-colon", "entry", "dummy", "mode-switcher" ]; +} +textbox-prompt-colon { + enabled: true; + expand: false; + str: ""; + padding: 12px 20px 12px 15px; + border-radius: 100%; + background-color: #a6e3a1; + text-color: @background; +} +entry { + enabled: true; + expand: false; + width: 200px; + padding: 12px 16px 8px 16px; + border-radius: 100%; + background-color: @background-alt; + text-color: inherit; + cursor: text; + placeholder: "Search"; + placeholder-color: inherit; +} +dummy { + expand: true; + background-color: transparent; +} + +/*****----- Mode Switcher -----*****/ +mode-switcher{ + enabled: true; + spacing: 8px; + background-color: transparent; + text-color: @foreground; +} +button { + padding: 12px 22px 12px 16px; + border-radius: 100%; + background-color: @background-alt; + text-color: inherit; + cursor: pointer; +} +button selected { + background-color: @selected; + text-color: @background; +} + +/*****----- Listview -----*****/ +listview { + padding : 8px; + enabled: true; + columns: 1; + lines: 5; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 8px; + margin: 32px 24px; + border-radius: 8px; + background-color: #1e1e2e; + text-color: @foreground; + cursor: "default"; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 0px; + padding: 8px; + border-radius: 8px; + background-color: transparent; + text-color: @foreground; + cursor: pointer; +} +element selected.normal { + background-color: @selected; + text-color: @background; +} +element-icon { + background-color: transparent; + text-color: inherit; + size: 32px; + cursor: inherit; +} +element-text { + padding: 0px 16px; + background-color: transparent; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0; +} + +/*****----- Message -----*****/ +message { + background-color: transparent; +} +textbox { + padding: 0px; + border-radius: 0px; + background-color: @background-alt; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.5; +} +error-message { + padding: 0px; + border-radius: 0px; + background-color: @background; + text-color: @foreground; +} diff --git a/rofi/powermenu/background.png b/rofi/powermenu/background.png new file mode 100644 index 0000000000000000000000000000000000000000..60a13c55fec659413a361ac15cb2dae153b80765 GIT binary patch literal 44102 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 |=Rn6~-03SRUEX!KGL)nvmQQfr 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 Y{VhWj2lI3TH%jLJt<=F$XL$yes\n$no" | confirm_cmd +} + +# Pass variables to rofi dmenu +run_rofi() { + echo -e "$shutdown\n$reboot\n$lock\n$suspend\n$hibernate\n$logout" | rofi_cmd +} + +# Execute Command +run_cmd() { + selected="$(confirm_exit)" + echo "$selected" + if [[ "$selected" =~ "$yes" ]]; then + if [[ $1 == '--shutdown' ]]; then + systemctl poweroff + elif [[ $1 == '--reboot' ]]; then + systemctl reboot + elif [[ $1 == '--hibernate' ]]; then + systemctl hibernate + elif [[ $1 == '--suspend' ]]; then + mpc -q pause + amixer set Master mute + systemctl suspend + elif [[ $1 == '--logout' ]]; then + if [[ "$DESKTOP_SESSION" == 'openbox' ]]; then + openbox --exit + elif [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then + bspc quit + elif [[ "$DESKTOP_SESSION" == 'i3' ]]; then + i3-msg exit + elif [[ "$DESKTOP_SESSION" == 'plasma' ]]; then + qdbus org.kde.ksmserver /KSMServer logout 0 0 0 + fi + fi + else + exit 0 + fi +} + +# Actions +chosen="$(run_rofi)" +case ${chosen} in + $shutdown) + run_cmd --shutdown + ;; + $reboot) + run_cmd --reboot + ;; + $hibernate) + run_cmd --hibernate + ;; + $lock) + if [[ -x '/usr/bin/betterlockscreen' ]]; then + betterlockscreen -l + elif [[ -x '/usr/bin/i3lock' ]]; then + i3lock + fi + ;; + $suspend) + run_cmd --suspend + ;; + $logout) + run_cmd --logout + ;; +esac diff --git a/rofi/powermenu/style.rasi b/rofi/powermenu/style.rasi new file mode 100644 index 0000000..3404c3f --- /dev/null +++ b/rofi/powermenu/style.rasi @@ -0,0 +1,130 @@ +/*****----- Configuration -----*****/ +configuration { + show-icons: false; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrainsMono Nerd Font Mono Bold 12"; + background: #11111b; + background-alt: #f2cdcd; + foreground: #FFFFFF; + selected: #cba6f7; + active: #716251; + urgent: #934A1C; +} + +/* +USE_BUTTONS=YES +*/ + +/*****----- Main Window -----*****/ +window { + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + width: 600px; + x-offset: 0px; + y-offset: 0px; + + padding: 0px; + border: 0px solid; + border-radius: 8px; + border-color: @selected; + cursor: "default"; + background-color: @background; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 0px; + margin: 0px; + padding: 0px; + border: 0px solid; + border-radius: 0px; + border-color: @selected; + background-color: transparent; + children: [ "inputbar", "message", "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 0px; + padding: 102px 32px 80px 32px; + border-radius: 0%; + background-color: transparent; + background-image: url("~/Downloads/wallpaper/Anime.png",width); + children: ["dummy", "prompt"]; +} + +prompt { + enabled: true; + padding: 8px; + border-radius: 8px; + background-color: #a6e3a1; + text-color: #313244; +} + +dummy { + background-color: transparent; +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 6; + lines: 1; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 16px; + padding: 32px; + margin: 0px; + background-color: transparent; + cursor: "default"; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + padding: 17px; + border-radius: 16px; + background-color: #585b70; + text-color: #eff1f5; + cursor: pointer; +} +element-text { + font: "Font Awesome 5 Free Bold 24"; + background-color: transparent; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.5; +} +element selected.normal { + background-color: #cba6f7; + text-color: #313244; +} + +/*****----- Message -----*****/ +message { + enabled: true; + margin: 20px 150px 0px 150px; + padding: 10px 20px; + border-radius: 100%; + background-color: #f5c2e7; +} +textbox { + background-color: transparent; + text-color: #313244; + vertical-align: 0.5; + horizontal-align: 0.5; +} diff --git a/rofi/wifi/enable.rasi b/rofi/wifi/enable.rasi new file mode 100644 index 0000000..6553888 --- /dev/null +++ b/rofi/wifi/enable.rasi @@ -0,0 +1,110 @@ +/*****----- Configuration -----*****/ +configuration { + show-icons: false; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrains Mono Nerd Font 12"; + background: #11111b; + background-alt: #313244; + foreground: #eff1f5; + selected: #cba6f7; + active: #6E77FF; + urgent: #8E3596; +} + +/*****----- Main Window -----*****/ +window { + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + width: 320px; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + border-radius: 8px; + cursor: "default"; + background-color: @background; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 0px; + background-color: transparent; + orientation: horizontal; + children: [ "inputbar", "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 0px; + padding: 28px 0px 28px 24px; + background-color: transparent; + text-color: @foreground; + orientation: horizontal; + children: [ "textbox-prompt-colon" ]; +} + +textbox-prompt-colon { + enabled: true; + expand: false; + str: ""; + padding: 12px 24px 12px 14px; + border-radius: 100%; + background-color: #a6e3a1; + text-color: @background; +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 1; + lines: 1; + cycle: true; + dynamic: false; + scrollbar: false; + layout: vertical; + reverse: false; + + spacing: 0px; + margin: 28px 24px; + border-radius: 8px; + background-color: #1e1e2e; + text-color: @foreground; + cursor: "default"; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 0px; + padding: 12px 8px; + border-radius: 8px; + background-color: transparent; + text-color: @foreground; + cursor: pointer; +} +element selected.normal { + background-color: @selected; + text-color: @background; +} +element-icon { + background-color: transparent; + text-color: inherit; + size: 0px; + cursor: inherit; +} +element-text { + padding: 0px 16px; + background-color: transparent; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0; +} diff --git a/rofi/wifi/list.rasi b/rofi/wifi/list.rasi new file mode 100644 index 0000000..f63dcd4 --- /dev/null +++ b/rofi/wifi/list.rasi @@ -0,0 +1,126 @@ +/*****----- Configuration -----*****/ +configuration { + show-icons: false; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrains Mono Nerd Font 12"; + background: #11111b; + background-alt: #313244; + foreground: #eff1f5; + selected: #cba6f7; + active: #6E77FF; + urgent: #8E3596; +} + +/*****----- Main Window -----*****/ +window { + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + width: 500px; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + border-radius: 8px; + cursor: "default"; + background-color: @background; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 0px; + background-color: transparent; + orientation: vertical; + children: [ "inputbar", "listview" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 0px; + padding: 28px 24px 0px 24px; + background-color: transparent; + text-color: @foreground; + orientation: horizontal; + children: [ "textbox-prompt-colon", "dummy", "entry" ]; +} + +dummy { + background-color: transparent; +} + +entry { + enabled: true; + expand: false; + width: 250px; + padding: 12px 16px 8px 16px; + border-radius: 8px; + background-color: @background-alt; + text-color: inherit; + cursor: text; + placeholder: "Search"; + placeholder-color: inherit; +} + +textbox-prompt-colon { + enabled: true; + expand: false; + str: ""; + padding: 12px 24px 12px 14px; + border-radius: 100%; + background-color: #a6e3a1; + text-color: @background; +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 1; + lines: 5; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: true; + fixed-columns: true; + + spacing: 0px; + margin: 32px 24px; + border-radius: 8px; + background-color: #1e1e2e; + text-color: @foreground; + cursor: "default"; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 0px; + padding: 12px 8px; + border-radius: 8px; + background-color: transparent; + text-color: @foreground; + cursor: pointer; +} +element.selected { + background-color: @selected; + text-color: @background; +} +element-icon { + size: 0px; +} +element-text { + padding: 0px 16px; + background-color: transparent; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0; +} diff --git a/rofi/wifi/password.rasi b/rofi/wifi/password.rasi new file mode 100644 index 0000000..5b4d276 --- /dev/null +++ b/rofi/wifi/password.rasi @@ -0,0 +1,90 @@ +/*****----- Configuration -----*****/ +configuration { + show-icons: false; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrains Mono Nerd Font 12"; + background: #11111b; + background-alt: #313244; + foreground: #eff1f5; + selected: #cba6f7; + active: #6E77FF; + urgent: #8E3596; +} + +/*****----- Main Window -----*****/ +window { + width: 700px; + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + border-radius: 8px; + padding: 24px; + cursor: "default"; + background-color: @background; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 0px; + background-color: transparent; + orientation: vertical; + children: [ "inputbar" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 16px; + padding: 0px; + background-color: transparent; + text-color: @foreground; + orientation: horizontal; + children: [ "textbox-prompt-colon", "prompt", "dummy", "entry" ]; +} + +entry { + enabled: true; + expand: false; + width: 300px; + padding: 12px 16px 8px 16px; + border-radius: 8px; + background-color: @background-alt; + text-color: inherit; + cursor: text; + placeholder: "Enter Password"; + placeholder-color: inherit; +} + +textbox-prompt-colon { + enabled: true; + expand: false; + str: ""; + padding: 12px 24px 12px 14px; + border-radius: 100%; + background-color: #a6e3a1; + text-color: @background; +} + +prompt { + enabled: true; + margin: 0px; + padding: 0px; + border-radius: 8px; + background-color: @background; + text-color: #a6e3a1; + vertical-align: 0.5; +} + +dummy { + background-color: transparent; +} diff --git a/rofi/wifi/ssid.rasi b/rofi/wifi/ssid.rasi new file mode 100644 index 0000000..69ee04a --- /dev/null +++ b/rofi/wifi/ssid.rasi @@ -0,0 +1,90 @@ +/*****----- Configuration -----*****/ +configuration { + show-icons: false; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrains Mono Nerd Font 12"; + background: #11111b; + background-alt: #313244; + foreground: #eff1f5; + selected: #cba6f7; + active: #6E77FF; + urgent: #8E3596; +} + +/*****----- Main Window -----*****/ +window { + width: 659px; + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + x-offset: 0px; + y-offset: 0px; + + /* properties for all widgets */ + enabled: true; + border-radius: 8px; + padding: 24px; + cursor: "default"; + background-color: @background; +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 0px; + background-color: transparent; + orientation: vertical; + children: [ "inputbar" ]; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 16px; + padding: 0px; + background-color: transparent; + text-color: @foreground; + orientation: horizontal; + children: [ "textbox-prompt-colon", "prompt", "dummy", "entry" ]; +} + +entry { + enabled: true; + expand: false; + width: 300px; + padding: 12px 16px 8px 16px; + border-radius: 8px; + background-color: @background-alt; + text-color: inherit; + cursor: text; + placeholder: "Enter SSID"; + placeholder-color: inherit; +} + +textbox-prompt-colon { + enabled: true; + expand: false; + str: ""; + padding: 12px 24px 12px 14px; + border-radius: 100%; + background-color: #a6e3a1; + text-color: @background; +} + +prompt { + enabled: true; + margin: 0px; + padding: 0px; + border-radius: 8px; + background-color: @background; + text-color: #a6e3a1; + vertical-align: 0.5; +} + +dummy { + background-color: transparent; +} diff --git a/rofi/wifi/wifi.sh b/rofi/wifi/wifi.sh new file mode 100755 index 0000000..2ba7125 --- /dev/null +++ b/rofi/wifi/wifi.sh @@ -0,0 +1,83 @@ +#!/usr/bin/env bash + +# Check if wifi is on +check_wifi_on=$( nmcli --field WIFI g | sed 1d | sed 's/ //g' ) + +# Get the SSID of the connected wifi network +connected_wifi=$( nmcli -t -f active,ssid device wifi | grep -i 'yes' | sed 's/yes://g' ) + +# Get the list of all avalaible wifi network +wifi_list=$( nmcli --fields "SECURITY,SSID" device wifi list | sed 1d | sed -E "s/WPA*.?//g"| sed "s/802.1X//g" | sed "s/^--/ /g" | sed "s/ //g" | sed "/--/d" | sed "s/ */ /g" | sed 's/[[:space:]]*$//' ) + +# Generate the string to pass on +if [ -z "$connected_wifi" ] ; then + string_to_pass="" +else + string_to_pass=" Connected to ${connected_wifi}\n" +fi + + +# Rofi skeleton for enable +enable_menu() { + rofi -markup-rows -dmenu -theme "$HOME/.config/rofi/wifi/enable.rasi" +} + +# Rofi skeleton for list +list_menu() { + rofi -markup-rows -dmenu -theme "$HOME/.config/rofi/wifi/list.rasi" +} + + +# Rofi menu for wifi enable +enable_wifi() { + echo -e "󰤨 Enable Wifi" | enable_menu +} + +# Rofi menu for the wifi list +list_wifi() { + echo -e "󰤭 Disable Wifi\n${string_to_pass} Manual Setup\n${wifi_list}" | list_menu +} + +# Rofi menu for the details of the active connection +show_details() { + rofi -e "${details}" +} + +# Rofi menu for the ssid +take_ssid() { + ssid=$( echo "" | rofi -dmenu -p "${choice}" -theme "$HOME/.config/rofi/wifi/ssid.rasi" ) +} + +# Rofi menu for the password +take_password() { + password=$( echo "" | rofi -dmenu -p "${choice}" -theme "$HOME/.config/rofi/wifi/password.rasi" ) +} + +# Show the menu accordingly +if [ "$check_wifi_on" == "enabled" ] ; then + choice=$(list_wifi) +else + choice=$(enable_wifi) +fi + + +# Remove the junk from the string +choice="${choice:4}" + +# Perform tasks based on the choice +if [ "$choice" == "Enable Wifi" ] ; then + nmcli radio wifi on +elif [ "$choice" == "Disable Wifi" ] ; then + nmcli radio wifi off +elif [ "$choice" == "Manual Setup" ] ; then + take_ssid + if [[ "$ssid" != "" ]] ; then + take_password + nmcli device wifi connect "$ssid" hidden yes password "$password" + fi +elif [[ $choice =~ "Connected to" ]] ; then + kitty -e sh -c "nmcli dev wifi show-password; read -p 'Press Return to close...'" +elif [[ $choice != "" ]] ; then + take_password + nmcli device wifi connect "$choice" password "$password" +fi diff --git a/vim/.config/nvim/usage_data.json b/vim/.config/nvim/usage_data.json index a837e87..89f0316 100644 --- a/vim/.config/nvim/usage_data.json +++ b/vim/.config/nvim/usage_data.json @@ -1 +1 @@ -{"data":{"":{"visit_log":[{"entry":1728284505,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284516,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284519,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284564,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284956,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284961,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285061,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285062,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285064,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285065,"keystrokes":1,"exit":1728285101,"elapsed_time_sec":36},{"entry":1728285101,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285514,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285516,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285560,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285561,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285598,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285612,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285614,"keystrokes":0,"exit":1728285622,"elapsed_time_sec":8},{"entry":1728285623,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285625,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285660,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728286465,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728286720,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287022,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287042,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287048,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287208,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287211,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287213,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287242,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287245,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295664,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295670,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295671,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295789,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295797,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295804,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295809,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295868,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728296002,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728299819,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728299858,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728300383,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728300438,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728301829,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303574,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303576,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303618,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303627,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303634,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303745,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303760,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303766,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303770,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303773,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303778,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303782,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303783,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303973,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303975,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303984,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303985,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728304291,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728304295,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728312117,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728312728,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728312730,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728316268,"keystrokes":2,"exit":1728316298,"elapsed_time_sec":30},{"entry":1728316298,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728316300,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728316880,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728317470,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728359641,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728359696,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728360808,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728360830,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728361782,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728361877,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728361920,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728361929,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728362354,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728362700,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728371062,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728389919,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390510,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390674,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390678,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390705,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390706,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390756,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390867,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390874,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390875,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391388,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391392,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391397,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391410,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391466,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391484,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392918,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392919,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392930,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392934,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392935,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728393291,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728394011,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728394104,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728396918,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397122,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397318,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397741,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397932,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397999,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398248,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398253,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398381,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398382,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398418,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398435,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398455,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398601,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398614,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398620,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398625,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398643,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728447290,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473324,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473384,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473388,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473391,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473392,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473395,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728474568,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728477180,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728477190,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728486845,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562134,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562240,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562282,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562356,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562357,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562879,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562879,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728565368,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728565371,"keystrokes":55,"exit":1728565385,"elapsed_time_sec":14},{"entry":1728565385,"keystrokes":19,"exit":1728565391,"elapsed_time_sec":6},{"entry":1728565393,"keystrokes":20,"exit":1728565406,"elapsed_time_sec":13},{"entry":1728578977,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728640382,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728640384,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728642744,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728642747,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728642751,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880230,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880235,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880238,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880251,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880267,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728910091,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728967960,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728967961,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728968535,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729004138,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729007062,"keystrokes":0,"exit":1729007089,"elapsed_time_sec":27},{"entry":1729007121,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081359,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081361,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081419,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081439,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081510,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081542,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081546,"keystrokes":2,"exit":1729081561,"elapsed_time_sec":15},{"entry":1729081561,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081570,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081577,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081578,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081590,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081612,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081618,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081619,"keystrokes":0,"exit":1729081638,"elapsed_time_sec":19},{"entry":1729081652,"keystrokes":2,"exit":1729081665,"elapsed_time_sec":13},{"entry":1729081666,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081668,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081669,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081677,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081679,"keystrokes":3,"exit":1729081685,"elapsed_time_sec":6},{"entry":1729081685,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081913,"keystrokes":22,"exit":1729081920,"elapsed_time_sec":7},{"entry":1729082163,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729082322,"keystrokes":32,"exit":1729082332,"elapsed_time_sec":10},{"entry":1729082333,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729082356,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729082357,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729082383,"keystrokes":13,"exit":1729082404,"elapsed_time_sec":21},{"entry":1729082428,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729250716,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729250719,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729250720,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729251996,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729252007,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729252029,"keystrokes":21,"exit":1729252035,"elapsed_time_sec":6},{"entry":1729344350,"keystrokes":300,"exit":1729344408,"elapsed_time_sec":58},{"entry":1729344408,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729344411,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729344412,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729344467,"keystrokes":6,"exit":1729344525,"elapsed_time_sec":58},{"entry":1729484606,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729484622,"keystrokes":0,"elapsed_time_sec":0},{"entry":1729486623,"elapsed_time_sec":0,"keystrokes":0}],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/waybar\/config.jsonc":{"visit_log":[{"entry":1728285625,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287222,"keystrokes":1,"exit":1728287242,"elapsed_time_sec":20},{"entry":1728287245,"keystrokes":38,"exit":1728287266,"elapsed_time_sec":21},{"entry":1728287519,"keystrokes":39,"exit":1728287545,"elapsed_time_sec":26},{"entry":1728300386,"keystrokes":28,"exit":1728300438,"elapsed_time_sec":52},{"entry":1728301113,"keystrokes":56,"exit":1728301201,"elapsed_time_sec":88},{"entry":1728301768,"keystrokes":34,"exit":1728301782,"elapsed_time_sec":14},{"entry":1728301830,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303628,"keystrokes":5,"exit":1728303634,"elapsed_time_sec":6},{"entry":1728316881,"keystrokes":114,"exit":1728317321,"elapsed_time_sec":440},{"entry":1728359645,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390708,"keystrokes":62,"exit":1728390756,"elapsed_time_sec":48},{"entry":1728393292,"keystrokes":65,"exit":1728393315,"elapsed_time_sec":23},{"entry":1728394105,"keystrokes":223,"exit":1728396918,"elapsed_time_sec":2813},{"entry":1728396918,"keystrokes":136,"exit":1728397122,"elapsed_time_sec":204},{"entry":1728397319,"keystrokes":178,"exit":1728397458,"elapsed_time_sec":139},{"entry":1728397933,"keystrokes":22,"exit":1728397997,"elapsed_time_sec":64},{"entry":1728398254,"keystrokes":34,"exit":1728398367,"elapsed_time_sec":113},{"entry":1728398369,"keystrokes":10,"exit":1728398377,"elapsed_time_sec":8},{"entry":1728398419,"keystrokes":59,"exit":1728398435,"elapsed_time_sec":16},{"entry":1728398455,"keystrokes":143,"exit":1728398507,"elapsed_time_sec":52},{"entry":1728447292,"keystrokes":131,"exit":1728447335,"elapsed_time_sec":43},{"entry":1728474570,"keystrokes":716,"exit":1728475221,"elapsed_time_sec":651},{"entry":1728640384,"keystrokes":46,"exit":1728640435,"elapsed_time_sec":51}],"git_project_name":"","filetype":"jsonc"},"\/home\/archer\/.config\/rofi\/new-wifi.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/etc\/sddm.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.config\/gitui\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/clipman\/clipman.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/scripts\/check-updates.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/hypr\/mocha.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/ayush\/Documents\/t3_tutorial\/first\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/Downloads\/hyprdots\/.config\/rofi\/config\/confirm.rasi":{"visit_log":[],"git_project_name":"hyprdots","filetype":""},"\/home\/archer\/.config\/fastfetch\/icons\/pikachu.txt":{"visit_log":[],"git_project_name":"","filetype":"text"},"\/usr\/local\/bin\/nitch":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.bashrc":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/fastfetch\/config.jsonc":{"visit_log":[],"git_project_name":"","filetype":"jsonc"},"\/home\/archer\/.local\/bin\/volumectl\/volume-up.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/hyprdots\/pacman-packages.txt":{"visit_log":[],"git_project_name":"hyprdots","filetype":"text"},"\/home\/archer\/Downloads\/chatgpt.py":{"visit_log":[],"git_project_name":"","filetype":"python"},"\/usr\/share\/applications\/code-oss.desktop":{"visit_log":[],"git_project_name":"","filetype":"desktop"},"\/home\/archer\/Downloads\/ChatModel\/zshrc":{"visit_log":[],"git_project_name":"","filetype":"zsh"},"\/home\/archer\/Projects\/pulumi\/quickstart\/index.ts":{"visit_log":[],"git_project_name":"","filetype":"typescript"},"\/home\/archer\/.local\/bin\/brightnessctl\/brightness-down.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.local\/bin\/volumectl\/volume-down.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/colors.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/alpha.lua":{"visit_log":[{"entry":1729082357,"keystrokes":1,"exit":1729082363,"elapsed_time_sec":6}],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/Projects\/hyprdots\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"hyprdots","filetype":"neo-tree"},"\/home\/archer\/setup.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/networkmenu.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.zshrc":{"visit_log":[{"entry":1728967977,"keystrokes":107,"exit":1728967996,"elapsed_time_sec":19},{"entry":1729078039,"keystrokes":74,"exit":1729078048,"elapsed_time_sec":9},{"entry":1729081282,"keystrokes":185,"exit":1729081315,"elapsed_time_sec":33},{"entry":1729081330,"keystrokes":53,"exit":1729081343,"elapsed_time_sec":13},{"entry":1729344777,"keystrokes":148,"exit":1729344812,"elapsed_time_sec":35}],"git_project_name":"Obsidian Vault","filetype":"zsh"},"\/home\/archer\/Projects\/LetsGO\/go.mod":{"visit_log":[],"git_project_name":"","filetype":"gomod"},"\/home\/ayush\/dotfiles\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"dotfiles","filetype":"neo-tree"},"\/home\/archer\/Downloads\/dotfiles\/waybar\/colors-waybar.css":{"visit_log":[],"git_project_name":"dotfiles","filetype":"css"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-3.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/yazi\/.config\/yazi\/yazi\/catppuccin\/yazi.tera":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.ssh\/known_hosts.old":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/bin\/element-wayland.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Downloads\/dotfiles\/readme.md":{"visit_log":[{"entry":1728284564,"keystrokes":153,"exit":1728284595,"elapsed_time_sec":31}],"git_project_name":"dotfiles","filetype":"markdown"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/auto-session.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/treesj.lua":{"visit_log":[],"git_project_name":"","filetype":"lua"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/colorschemes.lua":{"visit_log":[],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t5":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/hypr\/mocha.config":{"visit_log":[],"git_project_name":"","filetype":""},"\/dev\/cpu_dma_latency":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/hyprdots\/.config\/rofi\/config\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"hyprdots","filetype":"neo-tree"},"\/home\/archer\/.config\/dunst\/dunstrc":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.ssh\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/wlogout\/style.css":{"visit_log":[],"git_project_name":"","filetype":"css"},"\/home\/archer\/hyprdots\/total.txt":{"visit_log":[],"git_project_name":"hyprdots","filetype":"text"},"\/home\/archer\/hyprdots\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"hyprdots","filetype":"neo-tree"},"\/usr\/share\/iso-codes\/json\/iso_3166-1.json":{"visit_log":[],"git_project_name":"","filetype":"json"},"\/home\/ayush\/dotfiles\/nvim\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"dotfiles","filetype":"neo-tree"},"\/home\/archer\/.config\/rofi\/wifi\/password.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/.ssh\/new.pub":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/power.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/mocha.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Projects\/hyprdots\/README.md":{"visit_log":[],"git_project_name":"hyprdots","filetype":"markdown"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/mason-lsconfig.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.config\/rofi\/powermenu\/type-2\/powermenu.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/comment.lua":{"visit_log":[],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/Downloads\/Chatbot\/standalone-frontend\/images\/chatbox-icon.svg":{"visit_log":[],"git_project_name":"","filetype":"svg"},"\/home\/archer\/.config\/rofi\/powermenu\/confirmation.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/launcher\/launcher.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"term:\/\/~\/Downloads\/Chatbot\/\/65801:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"git_project_name":"","filetype":"toggleterm"},"\/home\/archer\/Projects\/bun.lockb":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/Downloads\/linux\/rofi\/powermenu\/confirmation.rasi":{"visit_log":[],"git_project_name":"linux","filetype":""},"\/usr\/share\/grub\/themes\/catppuccin-mocha-grub-theme\/theme.txt":{"visit_log":[],"git_project_name":"","filetype":"text"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/copilot.lua":{"visit_log":[],"git_project_name":"","filetype":"lua"},"\/home\/archer\/Downloads\/Chatbot\/venv\/lib\/python3.12\/site-packages\/pip\/__init__.py":{"visit_log":[],"git_project_name":"","filetype":"python"},"\/home\/archer\/Downloads\/Chatbot\/data.pth":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/dotfiles\/README.md":{"visit_log":[],"git_project_name":"dotfiles","filetype":"markdown"},"\/home\/archer\/.config\/yazi\/yazi.toml":{"visit_log":[{"entry":1728362356,"elapsed_time_sec":0,"keystrokes":0}],"git_project_name":"","filetype":"toml"},"\/home\/archer\/.config\/rofi\/bluetooth.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/neo-tree.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/etc\/theme.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.config\/rofi\/wifi\/enable.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/hypr\/current_wallpaper_index":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/hypr\/arc\/docs\/getting-started-open-source.md":{"visit_log":[],"git_project_name":"","filetype":"markdown"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/alpha.lua":{"visit_log":[],"git_project_name":"","filetype":"lua"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/none-ls.lua":{"visit_log":[{"entry":1729081590,"keystrokes":42,"exit":1729081612,"elapsed_time_sec":22},{"entry":1729082368,"keystrokes":12,"exit":1729082383,"elapsed_time_sec":15},{"entry":1729082404,"keystrokes":38,"exit":1729082419,"elapsed_time_sec":15}],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/bufferline.lua":{"visit_log":[],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/.config\/rofi\/applets\/bin\/apps.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t4":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/colors\/black.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"oil:\/\/\/home\/ayush\/.themes\/Dracula\/":{"visit_log":[],"git_project_name":"","filetype":"oil"},"\/usr\/bin\/bash":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/activate.fish":{"visit_log":[],"git_project_name":"","filetype":"fish"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/hooks\/commit-msg.sample":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Projects\/hyprdots\/.config\/QtProject.conf":{"visit_log":[],"git_project_name":"hyprdots","filetype":"conf"},"\/home\/archer\/Projects\/LetsGO\/index.go":{"visit_log":[{"entry":1728642751,"keystrokes":1,"exit":1728642783,"elapsed_time_sec":32}],"git_project_name":"","filetype":"go"},"oil:\/\/\/home\/archer\/.config\/tmux\/":{"visit_log":[],"git_project_name":"","filetype":"oil"},"\/home\/archer\/Downloads\/dotfiles\/README.md":{"visit_log":[],"git_project_name":"dotfiles","filetype":"markdown"},"\/home\/archer\/.config\/bat\/themes\/Catppuccin Mocha.tmTheme":{"visit_log":[],"git_project_name":"","filetype":"xml"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/scrollbar.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.config\/X11\/xinitrc.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/ayush\/Documents\/t3_tutorial\/first\/src\/pages\/_app.tsx":{"visit_log":[],"git_project_name":"","filetype":"typescriptreact"},"\/home\/archer\/.config\/yazi\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/gtk-3.0\/settings.ini":{"visit_log":[],"git_project_name":"","filetype":"dosini"},"\/home\/archer\/Projects\/EdChat\/client\/src\/assets\/data.js":{"visit_log":[],"git_project_name":"EdChat","filetype":"javascript"},"\/home\/archer\/Downloads\/ChatModel\/chatgpt.py":{"visit_log":[],"git_project_name":"","filetype":"python"},"\/tmp\/nvim.archer\/Hcu3qX\/3":{"visit_log":[],"git_project_name":"hyprdots","filetype":"git"},"\/home\/archer\/.config\/rofi\/themes\/onedark.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/.config\/hypr\/hyprland.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/etc\/cron.d\/0hourly":{"visit_log":[],"git_project_name":"","filetype":"crontab"},"\/usr\/local\/bin\/dunstctl":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.local\/bin\/volume.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/HEAD":{"visit_log":[],"git_project_name":"GIT_THINGS","filetype":"git"},"\/home\/archer\/search.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Projects\/hyprdots\/.zshrc":{"visit_log":[],"git_project_name":"hyprdots","filetype":"zsh"},"\/tmp\/crontab.GvjatC":{"visit_log":[],"git_project_name":"","filetype":"crontab"},"\/home\/archer\/Downloads\/Chatbot\/README.md":{"visit_log":[],"git_project_name":"","filetype":"markdown"},"\/home\/archer\/.config\/waybar\/scripts\/network.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/ayush\/dotfiles\/kitty\/kitty.conf.bak":{"visit_log":[],"git_project_name":"dotfiles","filetype":"conf"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/alpha.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/HEAD":{"visit_log":[],"git_project_name":"","filetype":"git"},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/pip":{"visit_log":[],"git_project_name":"","filetype":"python"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/auto-pairs.lua":{"visit_log":[],"git_project_name":"hyprdots","filetype":"lua"},"\/dev\/rfkill":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/rofi\/.config\/rofi\/colors\/adapta.rasi":{"visit_log":[],"git_project_name":"hyprdots","filetype":""},"\/home\/archer\/Downloads\/dotfiles\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"dotfiles","filetype":"neo-tree"},"\/home\/archer\/Projects\/EdChat\/README.md":{"visit_log":[],"git_project_name":"EdChat","filetype":"markdown"},"\/home\/archer\/.config\/rofi\/colors\/catppuccin.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/dotfiles\/fish\/themes\/Rosé Pine Dawn.theme":{"visit_log":[],"git_project_name":"dotfiles","filetype":"php"},"\/home\/archer\/.config\/spotify-tui\/.spotify_token_cache.json":{"visit_log":[],"git_project_name":"","filetype":"json"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/telescope.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/Projects\/hyprdots\/.config\/greenclip.toml":{"visit_log":[],"git_project_name":"hyprdots","filetype":"toml"},"\/home\/archer\/.config\/rofi\/catppuccin.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/golang.lua":{"visit_log":[{"entry":1729081920,"keystrokes":3,"exit":1729081933,"elapsed_time_sec":13},{"entry":1729081934,"keystrokes":16,"exit":1729081951,"elapsed_time_sec":17},{"entry":1729081959,"keystrokes":47,"exit":1729081979,"elapsed_time_sec":20}],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/Projects\/LetsGO\/maps\/go.mod":{"visit_log":[],"git_project_name":"LetsGO","filetype":"gomod"},"\/home\/archer\/Projects\/LetsGO\/maps\/main2.go":{"visit_log":[{"entry":1729344413,"keystrokes":324,"exit":1729344467,"elapsed_time_sec":54},{"entry":1729344475,"keystrokes":103,"exit":1729344510,"elapsed_time_sec":35}],"git_project_name":"LetsGO","filetype":"go"},"\/home\/archer\/.config\/rofi\/powermenu\/type-3\/powermenu.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/hypridle\/hypridle.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.config\/rofi\/applets\/shared\/colors.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/dotfiles\/nvim\/init.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.config\/hypr\/hyprland.conf":{"visit_log":[{"entry":1728303577,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728317471,"keystrokes":252,"exit":1728317511,"elapsed_time_sec":40},{"entry":1728371063,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728389921,"keystrokes":77,"exit":1728389980,"elapsed_time_sec":59},{"entry":1728562135,"keystrokes":110,"exit":1728562235,"elapsed_time_sec":100},{"entry":1728562242,"keystrokes":211,"exit":1728562282,"elapsed_time_sec":40},{"entry":1728562357,"keystrokes":54,"exit":1728562456,"elapsed_time_sec":99},{"entry":1728562880,"keystrokes":406,"exit":1728563255,"elapsed_time_sec":375},{"entry":1728968536,"keystrokes":37,"exit":1728968549,"elapsed_time_sec":13},{"entry":1729081440,"keystrokes":198,"exit":1729081506,"elapsed_time_sec":66}],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.config\/spotify-tui\/client.yml":{"visit_log":[],"git_project_name":"","filetype":"yaml"},"\/home\/archer\/.config\/rofi\/forest.rofi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Projects\/GIT_THINGS\/README.md":{"visit_log":[],"git_project_name":"GIT_THINGS","filetype":"markdown"},"\/home\/archer\/hyprdots\/waybar\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"hyprdots","filetype":"neo-tree"},"\/home\/archer\/Projects\/EdChat\/index.html":{"visit_log":[],"git_project_name":"","filetype":"html"},"\/home\/archer\/.config\/gtk-4.0\/settings.ini":{"visit_log":[],"git_project_name":"","filetype":"dosini"},"\/home\/archer\/bin\/freetube-wayland.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Downloads\/Chatbot\/__pycache__\/chat.cpython-310.pyc":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Obsidian Vault\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"Obsidian Vault","filetype":"neo-tree"},"\/home\/archer\/Downloads\/Downloads\/Catppuccin-Dark\/gtk-4.0\/gtk-dark.css":{"visit_log":[],"git_project_name":"","filetype":"css"},"\/home\/ayush\/.config\/hypr\/hyprlock.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/toggle-term.lua":{"visit_log":[],"git_project_name":"","filetype":"lua"},"\/home\/archer\/Projects\/EdChat\/client\/index.html":{"visit_log":[],"git_project_name":"EdChat","filetype":"html"},"\/home\/archer\/.config\/waybar\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/rofi\/images\/b.png":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/minimap.lua":{"visit_log":[{"entry":1729081615,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081641,"keystrokes":1,"exit":1729081647,"elapsed_time_sec":6}],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/Projects\/EdChat\/client\/src\/Pages\/pieChart.jsx":{"visit_log":[],"git_project_name":"EdChat","filetype":"javascriptreact"},"term:\/\/~\/Projects\/EdChat\/\/35654:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"git_project_name":"EdChat","filetype":"toggleterm"},"\/home\/archer\/Projects\/hyprdots\/.config\/vlc\/vlc-qt-interface.conf":{"visit_log":[],"git_project_name":"hyprdots","filetype":"conf"},"\/home\/archer\/Downloads\/ChatModel\/data\/data.txt":{"visit_log":[],"git_project_name":"","filetype":"text"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/refs\/heads\/master":{"visit_log":[],"git_project_name":"","filetype":"git"},"\/home\/archer\/.config\/hypr\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/swaync\/style.css":{"visit_log":[],"git_project_name":"","filetype":"css"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/cursorline.lua":{"visit_log":[],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/.config\/rofi\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/waybar\/mocha.css":{"visit_log":[{"entry":1728303747,"keystrokes":1,"exit":1728303760,"elapsed_time_sec":13},{"entry":1728316301,"keystrokes":20,"exit":1728316880,"elapsed_time_sec":579},{"entry":1728361922,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391399,"keystrokes":50,"exit":1728391410,"elapsed_time_sec":11},{"entry":1728391467,"keystrokes":1,"exit":1728391484,"elapsed_time_sec":17}],"git_project_name":"","filetype":"css"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/nvim-lspconfig.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/Projects\/deno\/index.ts":{"visit_log":[],"git_project_name":"","filetype":"typescript"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t7":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/fastfetch\/icons\/uwu.txt":{"visit_log":[],"git_project_name":"","filetype":"text"},"\/home\/ayush\/Documents\/DSA\/containsDuplicate.cpp":{"visit_log":[],"git_project_name":"","filetype":"cpp"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"hyprdots","filetype":"neo-tree"},"\/home\/archer\/.config\/rofi\/powermenu\/background.png":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/surfraw\/conf":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/QtProject.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/init.lua":{"visit_log":[{"entry":1728398602,"keystrokes":29,"exit":1728398614,"elapsed_time_sec":12}],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/Downloads\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/config.jsonc":{"visit_log":[{"entry":1728285662,"keystrokes":60,"exit":1728286465,"elapsed_time_sec":803},{"entry":1728286721,"keystrokes":1,"exit":1728287015,"elapsed_time_sec":294},{"entry":1728299824,"keystrokes":29,"exit":1728299858,"elapsed_time_sec":34},{"entry":1728359698,"keystrokes":127,"exit":1728360808,"elapsed_time_sec":1110}],"git_project_name":"hyprdots","filetype":"jsonc"},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/scripts\/change-wallpaper.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/etc\/bluetooth\/main.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/Projects\/EdChat\/server\/src\/models\/user.model.js":{"visit_log":[],"git_project_name":"EdChat","filetype":"javascript"},"term:\/\/~\/Downloads\/Chatbot\/\/3422:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"git_project_name":"","filetype":"toggleterm"},"\/home\/ayush\/Documents\/DSA\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/kitty\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/hypr\/hyprpaper.conf":{"visit_log":[{"entry":1728394012,"keystrokes":138,"exit":1728394060,"elapsed_time_sec":48}],"git_project_name":"","filetype":"conf"},"\/home\/archer\/Downloads\/dotfiles\/kitty\/kitty.conf":{"visit_log":[],"git_project_name":"dotfiles","filetype":"conf"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/launcher.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/refs\/heads\/master":{"visit_log":[],"git_project_name":"","filetype":"git"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/git-stuff.lua":{"visit_log":[],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/.config\/mpd\/mpd.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t2":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/themes\/oxide.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/starship\/.config\/starship\/starship\/starship.toml":{"visit_log":[{"entry":1728473325,"keystrokes":61,"exit":1728473333,"elapsed_time_sec":8}],"git_project_name":"hyprdots","filetype":"toml"},"\/home\/archer\/.config\/rofi\/applets\/type-4\/style-2.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/swaync\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/temp.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/hypr\/themes\/mocha.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.config\/rofi\/forest.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/activate":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.config\/X11\/Xresources":{"visit_log":[],"git_project_name":"","filetype":"xdefaults"},"\/home\/archer\/Downloads\/AI-docs.txt":{"visit_log":[],"git_project_name":"","filetype":"text"},"\/home\/archer\/Projects\/EdChat\/server\/src\/utils\/ApiResponse.utils.js":{"visit_log":[],"git_project_name":"EdChat","filetype":"javascript"},"\/home\/archer\/Projects\/EdChat\/server\/config.js":{"visit_log":[],"git_project_name":"","filetype":"javascript"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/auto-pairs.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.config\/waybar\/scripts\/check-updates.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/ayush\/.config\/i3\/config":{"visit_log":[],"git_project_name":"","filetype":"i3config"},"\/usr\/share\/nvim\/runtime\/doc\/help.txt":{"visit_log":[],"git_project_name":"","filetype":"help"},"\/home\/ayush\/Documents\/My Things\/Development\/HeistHub\/backend\/src\/controllers\/jobPositions.controller.js":{"visit_log":[],"git_project_name":"Development","filetype":"javascript"},"\/home\/archer\/Projects\/hyprdots_legacy\/.config\/bat\/config":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/mocha.css":{"visit_log":[{"entry":1728361935,"keystrokes":23,"exit":1728361947,"elapsed_time_sec":12}],"git_project_name":"hyprdots","filetype":"css"},"\/home\/ayush\/dotfiles\/kitty\/kitty.conf":{"visit_log":[],"git_project_name":"dotfiles","filetype":"conf"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/comment.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.mozilla\/firefox\/iu7spruw.default-release\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/dconf\/user":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/tagbar.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/Projects\/hyprdots\/.config\/hypr\/hyprland.conf":{"visit_log":[],"git_project_name":"hyprdots","filetype":"conf"},"\/home\/archer\/Downloads\/ChatModel\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/rofi\/network.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/temp.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.ssh\/config":{"visit_log":[],"git_project_name":"","filetype":"sshconfig"},"\/home\/archer\/.config\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/Obsidian Vault\/auto-push.sh":{"visit_log":[],"git_project_name":"Obsidian Vault","filetype":"sh"},"\/home\/archer\/.config\/gitui\/theme.con":{"visit_log":[],"git_project_name":"","filetype":"cterm"},"oil:\/\/\/etc\/cron.daily\/":{"visit_log":[],"git_project_name":"","filetype":"oil"},"\/home\/ayush\/.config\/hypr\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"term:\/\/~\/Documents\/t3_tutorial\/first\/\/6371:\/bin\/zsh;#toggleterm#1":{"visit_log":[],"git_project_name":"","filetype":"toggleterm"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lazy-lock.json":{"visit_log":[],"git_project_name":"hyprdots","filetype":"json"},"\/home\/archer\/.config\/rofi\/applets\/bin\/powermenu.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/ayush\/dotfiles\/nvim\/lazy-lock.json":{"visit_log":[],"git_project_name":"dotfiles","filetype":"json"},"\/home\/archer\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/Projects\/LetsGO\/maps\/neo-tree filesystem [1]":{"visit_log":[{"entry":1729344510,"keystrokes":5,"exit":1729344519,"elapsed_time_sec":9}],"git_project_name":"LetsGO","filetype":"neo-tree"},"\/home\/archer\/Downloads\/Chatbot\/app.py":{"visit_log":[],"git_project_name":"","filetype":"python"},"\/tmp\/nvim.ayush\/AXansa\/2":{"visit_log":[],"git_project_name":"AyushDumasia","filetype":"git"},"\/home\/archer\/.config\/rofi\/applets\/bin\/battery.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/hyprdots\/hypr\/.config\/hypr\/hyprpaper.conf":{"visit_log":[],"git_project_name":"hyprdots","filetype":"conf"},"\/home\/archer\/.config\/rofi\/launchers\/type-6\/launcher.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/ayush\/dotfiles\/fastfetch\/config.jsonc":{"visit_log":[],"git_project_name":"dotfiles","filetype":"jsonc"},"\/home\/archer\/.config\/rofi\/wifi\/ssid.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/treesj.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.local\/bin\/battery-charging.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/ayush\/.zshrc":{"visit_log":[],"git_project_name":"","filetype":"zsh"},"\/home\/archer\/hyprdots\/zsh\/.zshrc":{"visit_log":[],"git_project_name":"hyprdots","filetype":"zsh"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/colorizer.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.config\/atuin\/config.toml":{"visit_log":[],"git_project_name":"","filetype":"toml"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/a.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/visudo":{"visit_log":[],"git_project_name":"","filetype":""},"\/usr\/share\/plank\/themes\/Transparent\/dock.theme":{"visit_log":[],"git_project_name":"","filetype":"php"},"\/home\/archer\/.config\/hypr\/startup.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"term:\/\/~\/Projects\/LetsGO\/maps\/\/4344:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"git_project_name":"LetsGO","filetype":"toggleterm"},"\/home\/archer\/hyprdots\/hyprland\/.config\/hypr\/exports.conf":{"visit_log":[],"git_project_name":"hyprdots","filetype":"conf"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/completions.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.config\/wlogout\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/copilot.lua":{"visit_log":[],"git_project_name":"hyprdots","filetype":"lua"},"\/home\/archer\/Downloads\/Chatbot\/nltk_utils.py":{"visit_log":[],"git_project_name":"","filetype":"python"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t6":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Projects\/EdChat\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"EdChat","filetype":"neo-tree"},"\/home\/ayush\/.ssh\/id_ed25519.pub":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/mainPackages.txt":{"visit_log":[],"git_project_name":"hyprdots","filetype":"text"},"\/home\/archer\/.config\/waybar\/scripts\/toggle-brightness.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"oil:\/\/\/home\/archer\/.config\/rofi\/bluetooth\/":{"visit_log":[],"git_project_name":"","filetype":"oil"},"\/home\/archer\/.config\/rofi\/applets\/shared\/fonts.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-3\/style-5.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/launcher\/style.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/ChatModel\/data.txt":{"visit_log":[],"git_project_name":"","filetype":"text"},"\/home\/archer\/.config\/rofi\/wifi\/list.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/smooth-scroll.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.config\/yazi\/config.yml":{"visit_log":[],"git_project_name":"","filetype":"yaml"},"\/home\/archer\/Downloads\/Downloads\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/.ssh\/known_hosts":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/ChatModel\/myenv\/pyvenv.cfg":{"visit_log":[],"git_project_name":"","filetype":"cfg"},"\/dev\/nvram":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/lualine.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/Downloads\/dotfiles\/assets\/preview1.png":{"visit_log":[],"git_project_name":"dotfiles","filetype":""},"\/home\/archer\/.config\/bat\/config":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/gtk-3.0\/bookmarks":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/1":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.z":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/hypr\/.config\/hypr\/hyprland.conf":{"visit_log":[{"entry":1729081364,"keystrokes":285,"exit":1729081414,"elapsed_time_sec":50}],"git_project_name":"hyprdots","filetype":"conf"},"\/home\/archer\/.config\/waybar\/scripts\/change-wallpaper.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/ayush\/dotfiles\/nvim\/lua\/vim-options.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/hyprdots\/README.md":{"visit_log":[{"entry":1728362702,"keystrokes":301,"exit":1728362762,"elapsed_time_sec":60}],"git_project_name":"hyprdots","filetype":"markdown"},"\/home\/archer\/.local\/bin\/backlight.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/onedark.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/dotfiles\/waybar\/topbar\/colors-waybar.css":{"visit_log":[{"entry":1728295870,"keystrokes":7,"exit":1728295922,"elapsed_time_sec":52}],"git_project_name":"dotfiles","filetype":"css"},"\/home\/archer\/.config\/waybar\/style.css":{"visit_log":[{"entry":1728287024,"keystrokes":18,"exit":1728287042,"elapsed_time_sec":18},{"entry":1728287049,"keystrokes":534,"exit":1728287208,"elapsed_time_sec":159},{"entry":1728287213,"keystrokes":3,"exit":1728287220,"elapsed_time_sec":7},{"entry":1728287266,"keystrokes":235,"exit":1728287519,"elapsed_time_sec":253},{"entry":1728287545,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295672,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728300446,"keystrokes":642,"exit":1728301111,"elapsed_time_sec":665},{"entry":1728303619,"keystrokes":74,"exit":1728303626,"elapsed_time_sec":7},{"entry":1728303635,"keystrokes":193,"exit":1728303745,"elapsed_time_sec":110},{"entry":1728303783,"keystrokes":182,"exit":1728303973,"elapsed_time_sec":190},{"entry":1728303986,"keystrokes":213,"exit":1728304291,"elapsed_time_sec":305},{"entry":1728304295,"keystrokes":72,"exit":1728304459,"elapsed_time_sec":164},{"entry":1728312730,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390758,"keystrokes":420,"exit":1728390867,"elapsed_time_sec":109},{"entry":1728390876,"keystrokes":814,"exit":1728391388,"elapsed_time_sec":512},{"entry":1728391411,"keystrokes":69,"exit":1728391466,"elapsed_time_sec":55},{"entry":1728391484,"keystrokes":44,"exit":1728391492,"elapsed_time_sec":8},{"entry":1728392936,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397123,"keystrokes":389,"exit":1728397312,"elapsed_time_sec":189},{"entry":1728397743,"keystrokes":112,"exit":1728397932,"elapsed_time_sec":189},{"entry":1728398000,"keystrokes":300,"exit":1728398248,"elapsed_time_sec":248},{"entry":1728398383,"keystrokes":156,"exit":1728398414,"elapsed_time_sec":31},{"entry":1728398438,"keystrokes":1,"exit":1728398454,"elapsed_time_sec":16}],"git_project_name":"","filetype":"css"},"\/usr\/bin\/rxfetch":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/style-5.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Obsidian Vault\/.github\/workflow\/auto-commit.yml":{"visit_log":[],"git_project_name":"Obsidian Vault","filetype":"yaml"},"\/home\/archer\/.config\/rofi\/themes":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Projects\/GIT_THINGS\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"GIT_THINGS","filetype":"neo-tree"},"\/home\/archer\/.config\/rofi\/mpd.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/style.css":{"visit_log":[{"entry":1728286468,"keystrokes":1,"exit":1728286720,"elapsed_time_sec":252},{"entry":1728297384,"keystrokes":25,"exit":1728299819,"elapsed_time_sec":2435},{"entry":1728299860,"elapsed_time_sec":0,"keystrokes":0}],"git_project_name":"hyprdots","filetype":"css"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/usage_data.json":{"visit_log":[],"git_project_name":"hyprdots","filetype":"json"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/auto-pairs.lua":{"visit_log":[],"git_project_name":"","filetype":"lua"},"\/home\/archer\/.config\/rofi\/clipboard\/launcher.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/hypr\/package.json":{"visit_log":[],"git_project_name":"","filetype":"json"},"\/home\/archer\/.ssh\/id_ed25519.pub":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/github-copilot\/versions.json":{"visit_log":[],"git_project_name":"","filetype":"json"},"\/home\/archer\/Projects\/index.ts":{"visit_log":[],"git_project_name":"","filetype":"typescript"},"\/usr\/share\/grub\/themes\/sudo":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/refs\/heads\/foo":{"visit_log":[],"git_project_name":"GIT_THINGS","filetype":"git"},"\/home\/archer\/Projects\/pulumi\/quickstart\/Pulumi.yaml":{"visit_log":[],"git_project_name":"","filetype":"yaml"},"\/home\/archer\/Downloads\/dotfiles\/waybar\/topbar\/style.css":{"visit_log":[{"entry":1728295811,"keystrokes":246,"exit":1728295868,"elapsed_time_sec":57},{"entry":1728295924,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728360837,"keystrokes":169,"exit":1728360886,"elapsed_time_sec":49}],"git_project_name":"dotfiles","filetype":"css"},"\/usr\/local\/bin\/dunst":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/linux\/rofi\/bluetooth\/bluetooth.sh":{"visit_log":[],"git_project_name":"linux","filetype":"sh"},"\/home\/archer\/Downloads\/Chatbot\/venv\/pyvenv.cfg":{"visit_log":[],"git_project_name":"","filetype":"cfg"},"\/home\/archer\/.config\/hypr\/exports.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/coq-nvim.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/hyprdots\/.gitignore":{"visit_log":[],"git_project_name":"hyprdots","filetype":"gitignore"},"\/usr\/share\/rofi\/themes\/catppuccin.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/Chatbot\/standalone-frontend\/app.js":{"visit_log":[],"git_project_name":"","filetype":"javascript"},"\/home\/archer\/.config\/rofi\/applets\/shared\/theme.bash":{"visit_log":[],"git_project_name":"","filetype":"sh"},"oil:\/\/\/home\/archer\/.config\/tmux\/plugins\/tmux\/":{"visit_log":[],"git_project_name":"","filetype":"oil"},"\/home\/archer\/.config\/swaync\/config.json":{"visit_log":[],"git_project_name":"","filetype":"json"},"oil:\/\/\/home\/archer\/Downloads\/dotfiles\/alacritty\/":{"visit_log":[],"git_project_name":"dotfiles","filetype":"oil"},"\/home\/archer\/.config\/surfraw\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/Downloads\/Chatbot\/intents.json":{"visit_log":[],"git_project_name":"","filetype":"json"},"\/home\/archer\/.config\/starship\/starship.toml":{"visit_log":[],"git_project_name":"","filetype":"toml"},"\/home\/archer\/.config\/code-flags.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"term:\/\/~\/Downloads\/Chatbot\/\/66793:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"git_project_name":"","filetype":"toggleterm"},"\/home\/archer\/Projects\/pulumi\/quickstart\/Pulumi.dev.yaml":{"visit_log":[],"git_project_name":"","filetype":"yaml"},"\/home\/archer\/Downloads\/config.jsonc":{"visit_log":[{"entry":1728565406,"elapsed_time_sec":0,"keystrokes":0}],"git_project_name":"","filetype":"jsonc"},"\/home\/ayush\/.themes\/Dracula\/README.md":{"visit_log":[],"git_project_name":"","filetype":"markdown"},"\/dev\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/Downloads\/Chatbot\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/style-1.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/Chatbot\/templates\/base.html":{"visit_log":[],"git_project_name":"","filetype":"html"},"\/home\/archer\/.config\/wallheaven\/config.toml":{"visit_log":[{"entry":1728578978,"keystrokes":381,"exit":1728579050,"elapsed_time_sec":72}],"git_project_name":"","filetype":"toml"},"\/home\/archer\/.ssh\/known_hosts":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/.ssh\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/ayush\/.config\/i3\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.local\/bin\/brightnessctl\/brightness-up.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/launchers\/type-6\/style-2.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/nvim-lspconfig.lua":{"visit_log":[],"git_project_name":"","filetype":"lua"},"\/home\/archer\/.config\/dolphinrc":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/config.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-7.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.zshrc0":{"visit_log":[],"git_project_name":"","filetype":"zsh"},"\/home\/ayush\/.ssh\/config":{"visit_log":[],"git_project_name":"","filetype":"sshconfig"},"\/home\/archer\/.config\/rofi\/wifi\/wifi.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/etc\/sudoers":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/dotfiles\/synth-shell\/synth-shell-greeter.config":{"visit_log":[],"git_project_name":"dotfiles","filetype":"conf"},"\/home\/archer\/blue.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Projects\/EdChat\/src\/Pages\/Chat.jsx":{"visit_log":[],"git_project_name":"","filetype":"javascriptreact"},"\/home\/archer\/.config\/dunst\/dunst-backup":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Projects\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/bufferline.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/Downloads\/dotfiles\/waybar\/topbar\/config.jsonc":{"visit_log":[{"entry":1728390685,"elapsed_time_sec":0,"keystrokes":0}],"git_project_name":"dotfiles","filetype":"jsonc"},"\/home\/ayush\/Documents\/My Things\/Development\/AyushDumasia\/README.md":{"visit_log":[],"git_project_name":"AyushDumasia","filetype":"markdown"},"\/home\/archer\/hyprdots\/sortedPackages.txt":{"visit_log":[],"git_project_name":"hyprdots","filetype":"text"},"\/home\/archer\/.config\/nvim\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/wlogout\/power-hover.png":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/noice.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.mozilla\/firefox\/iu7spruw.default-release\/chrome\/userChrome.css":{"visit_log":[{"entry":1729007122,"keystrokes":3,"exit":1729007146,"elapsed_time_sec":24}],"git_project_name":"","filetype":"css"},"\/home\/archer\/.config\/yazi\/catppuccin\/themes\/mocha.toml":{"visit_log":[],"git_project_name":"","filetype":"toml"},"\/home\/archer\/Downloads\/Chatbot\/model.py":{"visit_log":[],"git_project_name":"","filetype":"python"},"\/dev\/tty11":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/gitui\/theme.ron":{"visit_log":[],"git_project_name":"","filetype":"ron"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/nvimtracker.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"term:\/\/~\/.config\/nvim\/\/20576:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"git_project_name":"","filetype":"toggleterm"},"\/home\/archer\/.config\/kitty\/kitty.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/.config\/X11\/xprofile":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/dunst\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/Downloads\/Chatbot\/static\/images\/about.png":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-10.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/X11\/xprofile.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/powermenu\/style.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/rofi\/wifi.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Projects\/EdChat\/.git\/MERGE_MSG":{"visit_log":[],"git_project_name":"EdChat","filetype":"gitcommit"},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/scripts\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"hyprdots","filetype":"neo-tree"},"\/home\/ayush\/.ssh\/id_ed25519":{"visit_log":[],"git_project_name":"","filetype":""},"oil:\/\/\/home\/archer\/.config\/rofi\/":{"visit_log":[],"git_project_name":"","filetype":"oil"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-1.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/linux\/rofi\/powermenu\/powermenu.sh":{"visit_log":[],"git_project_name":"linux","filetype":"sh"},"\/dev\/nvme0n1p6":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/X11\/xinitrc":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/tmux\/tmux.conf":{"visit_log":[],"git_project_name":"","filetype":"tmux"},"\/home\/archer\/.config\/X11\/xresources":{"visit_log":[],"git_project_name":"","filetype":""},"\/etc\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/starship\/config.jsonc":{"visit_log":[],"git_project_name":"","filetype":"jsonc"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/objects\/62\/d29f1a2581df0d40df3cd75efbf828fe54afe2":{"visit_log":[],"git_project_name":"","filetype":""},"\/usr\/local\/bin\/starship":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/dotfiles\/synth-shell\/alias.sh":{"visit_log":[],"git_project_name":"dotfiles","filetype":"sh"},"\/home\/archer\/.config\/rofi\/powermenu\/type-4\/powermenu.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/Downloads\/dotfiles\/gnome-extensions.txt":{"visit_log":[],"git_project_name":"dotfiles","filetype":"text"},"\/home\/ayush\/dotfiles\/ohmyposh\/base.json":{"visit_log":[],"git_project_name":"dotfiles","filetype":"json"},"\/home\/archer\/Downloads\/Chatbot\/chat.py":{"visit_log":[],"git_project_name":"","filetype":"python"},"\/home\/ayush\/dotfiles\/nvim\/usage_data.json":{"visit_log":[],"git_project_name":"dotfiles","filetype":"json"},"\/home\/archer\/.config\/rofi\/scripts\/powermenu_t1":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/qt6ct\/qt6ct.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"},"\/home\/archer\/Projects\/hyprdots\/.config\/eww\/wallpapers\/arin.png":{"visit_log":[],"git_project_name":"hyprdots","filetype":""},"\/home\/archer\/Downloads\/linux\/rofi\/launcher\/style.rasi":{"visit_log":[],"git_project_name":"linux","filetype":""},"\/home\/archer\/Downloads\/3150703-Analysis and Design of Algorithms.docx":{"visit_log":[],"git_project_name":"","filetype":"zip"},"\/home\/archer\/.config\/rofi\/colors_ctp.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.local\/bin\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/Obsidian Vault\/New Toy's.md":{"visit_log":[],"git_project_name":"Obsidian Vault","filetype":"markdown"},"\/home\/archer\/.local\/bin\/battery-alert.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/usr\/share\/sddm\/themes\/catppuccin-mocha\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/Downloads\/Downloads\/Catppuccin-Dark\/gtk-4.0\/gtk.css":{"visit_log":[],"git_project_name":"","filetype":"css"},"\/home\/archer\/.config\/hypr\/hyprwallpaper\/tropic_island_evening.jpg":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/dotfiles\/fish\/config.fish":{"visit_log":[],"git_project_name":"dotfiles","filetype":"fish"},"\/home\/archer\/.config\/rofi\/clipboard\/style.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/ayush\/.ssh\/new":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/colorizer.lua":{"visit_log":[],"git_project_name":"hyprdots","filetype":"lua"},"oil:\/\/\/home\/archer\/.config\/tmux\/plugins\/":{"visit_log":[],"git_project_name":"","filetype":"oil"},"\/tmp\/crontab.9S4eur":{"visit_log":[],"git_project_name":"","filetype":"crontab"},"\/home\/archer\/Downloads\/dotfiles\/dunst\/notification.png":{"visit_log":[],"git_project_name":"dotfiles","filetype":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t3":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/wlogout\/lock.png":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/yazi\/theme.toml":{"visit_log":[],"git_project_name":"","filetype":"toml"},"\/home\/archer\/.config\/bat\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/colorschemes.lua":{"visit_log":[],"git_project_name":"dotfiles","filetype":"lua"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t1":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/tmp\/crontab.oSjrPO":{"visit_log":[],"git_project_name":"Obsidian Vault","filetype":"crontab"},"\/home\/archer\/.local\/bin\/lockctl\/caps-lock.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/hypr\/mocha.theme":{"visit_log":[],"git_project_name":"","filetype":"php"},"\/home\/archer\/.config\/wlogout\/layout":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/hyprdots\/yazi\/.config\/yazi\/yazi\/catppuccin\/themes\/mocha.toml":{"visit_log":[],"git_project_name":"","filetype":"toml"},"\/home\/archer\/.config\/X11\/neo-tree filesystem [1]":{"visit_log":[],"git_project_name":"","filetype":"neo-tree"},"\/home\/archer\/.config\/rofi\/askpass.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/bufferline.lua":{"visit_log":[],"git_project_name":"","filetype":"lua"},"\/home\/archer\/Downloads\/Chatbot\/train.py":{"visit_log":[],"git_project_name":"","filetype":"python"},"\/home\/archer\/Downloads\/dotfiles\/waybar\/modules-config.jsonc":{"visit_log":[],"git_project_name":"dotfiles","filetype":"jsonc"},"\/home\/ayush\/.cache\/Homebrew\/Logs\/dbus\/post_install.01.dbus-uuidgen":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/refs\/heads\/foo":{"visit_log":[],"git_project_name":"","filetype":"git"},"\/home\/ayush\/.ssh\/known_hosts.old":{"visit_log":[],"git_project_name":"","filetype":""},"\/home\/archer\/Downloads\/Default.code-profile":{"visit_log":[],"git_project_name":"","filetype":""},"oil:\/\/\/home\/archer\/Downloads\/Chatbot\/":{"visit_log":[],"git_project_name":"","filetype":"oil"},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/powermenu.sh":{"visit_log":[],"git_project_name":"","filetype":"sh"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-2.rasi":{"visit_log":[],"git_project_name":"","filetype":""},"\/usr\/share\/sddm\/themes\/catppuccin-mocha\/theme.conf":{"visit_log":[],"git_project_name":"","filetype":"conf"}},"last_cleanup":1729484417} \ No newline at end of file +{"data":{"":{"filetype":"","visit_log":[{"entry":1728284505,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284516,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284519,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284564,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284956,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728284961,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285061,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285062,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285064,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285065,"keystrokes":1,"elapsed_time_sec":36,"exit":1728285101},{"entry":1728285101,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285514,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285516,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285560,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285561,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285598,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285612,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285614,"keystrokes":0,"elapsed_time_sec":8,"exit":1728285622},{"entry":1728285623,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285625,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728285660,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728286465,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728286720,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287022,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287042,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287048,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287208,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287211,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287213,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287242,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287245,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295664,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295670,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295671,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295789,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295797,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295804,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295809,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295868,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728296002,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728299819,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728299858,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728300383,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728300438,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728301829,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303574,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303576,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303618,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303627,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303634,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303745,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303760,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303766,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303770,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303773,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303778,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303782,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303783,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303973,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303975,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303984,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303985,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728304291,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728304295,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728312117,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728312728,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728312730,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728316268,"keystrokes":2,"elapsed_time_sec":30,"exit":1728316298},{"entry":1728316298,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728316300,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728316880,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728317470,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728359641,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728359696,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728360808,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728360830,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728361782,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728361877,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728361920,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728361929,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728362354,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728362700,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728371062,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728389919,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390510,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390674,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390678,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390705,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390706,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390756,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390867,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390874,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390875,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391388,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391392,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391397,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391410,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391466,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391484,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392918,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392919,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392930,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392934,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728392935,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728393291,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728394011,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728394104,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728396918,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397122,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397318,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397741,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397932,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397999,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398248,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398253,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398381,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398382,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398418,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398435,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398455,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398601,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398614,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398620,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398625,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728398643,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728447290,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473324,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473384,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473388,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473391,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473392,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728473395,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728474568,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728477180,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728477190,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728486845,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562134,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562240,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562282,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562356,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562357,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562879,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728562879,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728565368,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728565371,"keystrokes":55,"elapsed_time_sec":14,"exit":1728565385},{"entry":1728565385,"keystrokes":19,"elapsed_time_sec":6,"exit":1728565391},{"entry":1728565393,"keystrokes":20,"elapsed_time_sec":13,"exit":1728565406},{"entry":1728578977,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728640382,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728640384,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728642744,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728642747,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728642751,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880230,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880235,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880238,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880251,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728880267,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728910091,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728967960,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728967961,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728968535,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729004138,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729007062,"keystrokes":0,"elapsed_time_sec":27,"exit":1729007089},{"entry":1729007121,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081359,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081361,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081419,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081439,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081510,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081542,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081546,"keystrokes":2,"elapsed_time_sec":15,"exit":1729081561},{"entry":1729081561,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081570,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081577,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081578,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081590,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081612,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081618,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081619,"keystrokes":0,"elapsed_time_sec":19,"exit":1729081638},{"entry":1729081652,"keystrokes":2,"elapsed_time_sec":13,"exit":1729081665},{"entry":1729081666,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081668,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081669,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081677,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081679,"keystrokes":3,"elapsed_time_sec":6,"exit":1729081685},{"entry":1729081685,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081913,"keystrokes":22,"elapsed_time_sec":7,"exit":1729081920},{"entry":1729082163,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729082322,"keystrokes":32,"elapsed_time_sec":10,"exit":1729082332},{"entry":1729082333,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729082356,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729082357,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729082383,"keystrokes":13,"elapsed_time_sec":21,"exit":1729082404},{"entry":1729082428,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729250716,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729250719,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729250720,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729251996,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729252007,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729252029,"keystrokes":21,"elapsed_time_sec":6,"exit":1729252035},{"entry":1729344350,"keystrokes":300,"elapsed_time_sec":58,"exit":1729344408},{"entry":1729344408,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729344411,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729344412,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729344467,"keystrokes":6,"elapsed_time_sec":58,"exit":1729344525},{"entry":1729484606,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729484622,"keystrokes":0,"elapsed_time_sec":0},{"entry":1729486623,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729493879,"keystrokes":0,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/powermenu\/background.png":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/surfraw\/conf":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/QtProject.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/config.jsonc":{"filetype":"jsonc","visit_log":[{"entry":1728285662,"keystrokes":60,"elapsed_time_sec":803,"exit":1728286465},{"entry":1728286721,"keystrokes":1,"elapsed_time_sec":294,"exit":1728287015},{"entry":1728299824,"keystrokes":29,"elapsed_time_sec":34,"exit":1728299858},{"entry":1728359698,"keystrokes":127,"elapsed_time_sec":1110,"exit":1728360808}],"git_project_name":"hyprdots"},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/scripts\/change-wallpaper.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/etc\/bluetooth\/main.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/server\/src\/models\/user.model.js":{"filetype":"javascript","visit_log":[],"git_project_name":"EdChat"},"term:\/\/~\/Downloads\/Chatbot\/\/3422:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":""},"\/home\/ayush\/Documents\/DSA\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/kitty\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/hyprpaper.conf":{"filetype":"conf","visit_log":[{"entry":1728394012,"keystrokes":138,"elapsed_time_sec":48,"exit":1728394060}],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/kitty\/kitty.conf":{"filetype":"conf","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/launcher.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/refs\/heads\/master":{"filetype":"git","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/git-stuff.lua":{"filetype":"lua","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/mpd\/mpd.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t2":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/themes\/oxide.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/starship\/.config\/starship\/starship\/starship.toml":{"filetype":"toml","visit_log":[{"entry":1728473325,"keystrokes":61,"elapsed_time_sec":8,"exit":1728473333}],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/applets\/type-4\/style-2.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/swaync\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/temp.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/themes\/mocha.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/forest.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/activate":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/X11\/Xresources":{"filetype":"xdefaults","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/AI-docs.txt":{"filetype":"text","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/server\/src\/utils\/ApiResponse.utils.js":{"filetype":"javascript","visit_log":[],"git_project_name":"EdChat"},"\/home\/archer\/Projects\/EdChat\/server\/config.js":{"filetype":"javascript","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/auto-pairs.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/waybar\/scripts\/check-updates.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/.config\/i3\/config":{"filetype":"i3config","visit_log":[],"git_project_name":""},"\/usr\/share\/nvim\/runtime\/doc\/help.txt":{"filetype":"help","visit_log":[],"git_project_name":""},"\/home\/ayush\/Documents\/My Things\/Development\/HeistHub\/backend\/src\/controllers\/jobPositions.controller.js":{"filetype":"javascript","visit_log":[],"git_project_name":"Development"},"\/home\/archer\/Projects\/hyprdots_legacy\/.config\/bat\/config":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/mocha.css":{"filetype":"css","visit_log":[{"entry":1728361935,"keystrokes":23,"elapsed_time_sec":12,"exit":1728361947}],"git_project_name":"hyprdots"},"\/home\/ayush\/dotfiles\/kitty\/kitty.conf":{"filetype":"conf","visit_log":[],"git_project_name":"dotfiles"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/comment.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.mozilla\/firefox\/iu7spruw.default-release\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/dconf\/user":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/tagbar.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/hyprdots\/.config\/hypr\/hyprland.conf":{"filetype":"conf","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/ChatModel\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/network.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/temp.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.ssh\/config":{"filetype":"sshconfig","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/Obsidian Vault\/auto-push.sh":{"filetype":"sh","visit_log":[],"git_project_name":"Obsidian Vault"},"\/home\/archer\/.config\/gitui\/theme.con":{"filetype":"cterm","visit_log":[],"git_project_name":""},"oil:\/\/\/etc\/cron.daily\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/ayush\/.config\/hypr\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"term:\/\/~\/Documents\/t3_tutorial\/first\/\/6371:\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/init.lua":{"filetype":"lua","visit_log":[{"entry":1728398602,"keystrokes":29,"elapsed_time_sec":12,"exit":1728398614}],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/applets\/bin\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lazy-lock.json":{"filetype":"json","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/LetsGO\/maps\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"entry":1729344510,"keystrokes":5,"elapsed_time_sec":9,"exit":1729344519}],"git_project_name":"LetsGO"},"\/home\/archer\/Downloads\/Chatbot\/app.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/tmp\/nvim.ayush\/AXansa\/2":{"filetype":"git","visit_log":[],"git_project_name":"AyushDumasia"},"\/home\/archer\/.config\/rofi\/applets\/bin\/battery.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/hypr\/.config\/hypr\/hyprpaper.conf":{"filetype":"conf","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/launchers\/type-6\/launcher.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/fastfetch\/config.jsonc":{"filetype":"jsonc","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/wifi\/ssid.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/treesj.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.local\/bin\/battery-charging.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/.zshrc":{"filetype":"zsh","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/zsh\/.zshrc":{"filetype":"zsh","visit_log":[],"git_project_name":"hyprdots"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/colorizer.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/atuin\/config.toml":{"filetype":"toml","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/a.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/visudo":{"filetype":"","visit_log":[],"git_project_name":""},"\/usr\/share\/plank\/themes\/Transparent\/dock.theme":{"filetype":"php","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/startup.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"term:\/\/~\/Projects\/LetsGO\/maps\/\/4344:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":"LetsGO"},"\/home\/archer\/hyprdots\/hyprland\/.config\/hypr\/exports.conf":{"filetype":"conf","visit_log":[],"git_project_name":"hyprdots"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/completions.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/wlogout\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/copilot.lua":{"filetype":"lua","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/Chatbot\/nltk_utils.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t6":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"EdChat"},"\/home\/ayush\/.ssh\/id_ed25519.pub":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/mainPackages.txt":{"filetype":"text","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/waybar\/scripts\/toggle-brightness.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"oil:\/\/\/home\/archer\/.config\/rofi\/bluetooth\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/shared\/fonts.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-3\/style-5.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launcher\/style.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/data.txt":{"filetype":"text","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/wifi\/list.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/smooth-scroll.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/yazi\/config.yml":{"filetype":"yaml","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Downloads\/neo-tree filesystem [1]":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/known_hosts":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/myenv\/pyvenv.cfg":{"filetype":"cfg","visit_log":[],"git_project_name":""},"\/dev\/nvram":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/lualine.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/dotfiles\/assets\/preview1.png":{"filetype":"","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/bat\/config":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/gtk-3.0\/bookmarks":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/1":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.z":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/hypr\/.config\/hypr\/hyprland.conf":{"filetype":"conf","visit_log":[{"entry":1729081364,"keystrokes":285,"elapsed_time_sec":50,"exit":1729081414}],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/waybar\/scripts\/change-wallpaper.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/vim-options.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/hyprdots\/README.md":{"filetype":"markdown","visit_log":[{"entry":1728362702,"keystrokes":301,"elapsed_time_sec":60,"exit":1728362762}],"git_project_name":"hyprdots"},"\/home\/archer\/.local\/bin\/backlight.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/onedark.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/waybar\/topbar\/colors-waybar.css":{"filetype":"css","visit_log":[{"entry":1728295870,"keystrokes":7,"elapsed_time_sec":52,"exit":1728295922}],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/waybar\/style.css":{"filetype":"css","visit_log":[{"entry":1728287024,"keystrokes":18,"elapsed_time_sec":18,"exit":1728287042},{"entry":1728287049,"keystrokes":534,"elapsed_time_sec":159,"exit":1728287208},{"entry":1728287213,"keystrokes":3,"elapsed_time_sec":7,"exit":1728287220},{"entry":1728287266,"keystrokes":235,"elapsed_time_sec":253,"exit":1728287519},{"entry":1728287545,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728295672,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728300446,"keystrokes":642,"elapsed_time_sec":665,"exit":1728301111},{"entry":1728303619,"keystrokes":74,"elapsed_time_sec":7,"exit":1728303626},{"entry":1728303635,"keystrokes":193,"elapsed_time_sec":110,"exit":1728303745},{"entry":1728303783,"keystrokes":182,"elapsed_time_sec":190,"exit":1728303973},{"entry":1728303986,"keystrokes":213,"elapsed_time_sec":305,"exit":1728304291},{"entry":1728304295,"keystrokes":72,"elapsed_time_sec":164,"exit":1728304459},{"entry":1728312730,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390758,"keystrokes":420,"elapsed_time_sec":109,"exit":1728390867},{"entry":1728390876,"keystrokes":814,"elapsed_time_sec":512,"exit":1728391388},{"entry":1728391411,"keystrokes":69,"elapsed_time_sec":55,"exit":1728391466},{"entry":1728391484,"keystrokes":44,"elapsed_time_sec":8,"exit":1728391492},{"entry":1728392936,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728397123,"keystrokes":389,"elapsed_time_sec":189,"exit":1728397312},{"entry":1728397743,"keystrokes":112,"elapsed_time_sec":189,"exit":1728397932},{"entry":1728398000,"keystrokes":300,"elapsed_time_sec":248,"exit":1728398248},{"entry":1728398383,"keystrokes":156,"elapsed_time_sec":31,"exit":1728398414},{"entry":1728398438,"keystrokes":1,"elapsed_time_sec":16,"exit":1728398454}],"git_project_name":""},"\/usr\/bin\/rxfetch":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/style-5.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Obsidian Vault\/.github\/workflow\/auto-commit.yml":{"filetype":"yaml","visit_log":[],"git_project_name":"Obsidian Vault"},"\/home\/archer\/.config\/rofi\/themes":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"GIT_THINGS"},"\/home\/archer\/.config\/rofi\/mpd.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/style.css":{"filetype":"css","visit_log":[{"entry":1728286468,"keystrokes":1,"elapsed_time_sec":252,"exit":1728286720},{"entry":1728297384,"keystrokes":25,"elapsed_time_sec":2435,"exit":1728299819},{"entry":1728299860,"elapsed_time_sec":0,"keystrokes":0}],"git_project_name":"hyprdots"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/usage_data.json":{"filetype":"json","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/auto-pairs.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/clipboard\/launcher.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/package.json":{"filetype":"json","visit_log":[],"git_project_name":""},"\/home\/archer\/.ssh\/id_ed25519.pub":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/github-copilot\/versions.json":{"filetype":"json","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/index.ts":{"filetype":"typescript","visit_log":[],"git_project_name":""},"\/usr\/share\/grub\/themes\/sudo":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/refs\/heads\/foo":{"filetype":"git","visit_log":[],"git_project_name":"GIT_THINGS"},"\/home\/archer\/Projects\/pulumi\/quickstart\/Pulumi.yaml":{"filetype":"yaml","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/waybar\/topbar\/style.css":{"filetype":"css","visit_log":[{"entry":1728295811,"keystrokes":246,"elapsed_time_sec":57,"exit":1728295868},{"entry":1728295924,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728360837,"keystrokes":169,"elapsed_time_sec":49,"exit":1728360886}],"git_project_name":"dotfiles"},"\/usr\/local\/bin\/dunst":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/linux\/rofi\/bluetooth\/bluetooth.sh":{"filetype":"sh","visit_log":[],"git_project_name":"linux"},"\/home\/archer\/Downloads\/Chatbot\/venv\/pyvenv.cfg":{"filetype":"cfg","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/exports.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/coq-nvim.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/hyprdots\/.gitignore":{"filetype":"gitignore","visit_log":[],"git_project_name":"hyprdots"},"\/usr\/share\/rofi\/themes\/catppuccin.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/standalone-frontend\/app.js":{"filetype":"javascript","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/shared\/theme.bash":{"filetype":"sh","visit_log":[],"git_project_name":""},"oil:\/\/\/home\/archer\/.config\/tmux\/plugins\/tmux\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/swaync\/config.json":{"filetype":"json","visit_log":[],"git_project_name":""},"oil:\/\/\/home\/archer\/Downloads\/dotfiles\/alacritty\/":{"filetype":"oil","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/surfraw\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/intents.json":{"filetype":"json","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/code-flags.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"term:\/\/~\/Downloads\/Chatbot\/\/66793:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/pulumi\/quickstart\/Pulumi.dev.yaml":{"filetype":"yaml","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/config.jsonc":{"filetype":"jsonc","visit_log":[{"entry":1728565406,"elapsed_time_sec":0,"keystrokes":0}],"git_project_name":""},"\/home\/ayush\/.themes\/Dracula\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":""},"\/dev\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/style-1.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/templates\/base.html":{"filetype":"html","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/wallheaven\/config.toml":{"filetype":"toml","visit_log":[{"entry":1728578978,"keystrokes":381,"elapsed_time_sec":72,"exit":1728579050}],"git_project_name":""},"\/home\/archer\/.ssh\/known_hosts":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/ayush\/.config\/i3\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/brightnessctl\/brightness-up.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/waybar\/config.jsonc":{"filetype":"jsonc","visit_log":[{"entry":1728285625,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728287222,"keystrokes":1,"elapsed_time_sec":20,"exit":1728287242},{"entry":1728287245,"keystrokes":38,"elapsed_time_sec":21,"exit":1728287266},{"entry":1728287519,"keystrokes":39,"elapsed_time_sec":26,"exit":1728287545},{"entry":1728300386,"keystrokes":28,"elapsed_time_sec":52,"exit":1728300438},{"entry":1728301113,"keystrokes":56,"elapsed_time_sec":88,"exit":1728301201},{"entry":1728301768,"keystrokes":34,"elapsed_time_sec":14,"exit":1728301782},{"entry":1728301830,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728303628,"keystrokes":5,"elapsed_time_sec":6,"exit":1728303634},{"entry":1728316881,"keystrokes":114,"elapsed_time_sec":440,"exit":1728317321},{"entry":1728359645,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728390708,"keystrokes":62,"elapsed_time_sec":48,"exit":1728390756},{"entry":1728393292,"keystrokes":65,"elapsed_time_sec":23,"exit":1728393315},{"entry":1728394105,"keystrokes":223,"elapsed_time_sec":2813,"exit":1728396918},{"entry":1728396918,"keystrokes":136,"elapsed_time_sec":204,"exit":1728397122},{"entry":1728397319,"keystrokes":178,"elapsed_time_sec":139,"exit":1728397458},{"entry":1728397933,"keystrokes":22,"elapsed_time_sec":64,"exit":1728397997},{"entry":1728398254,"keystrokes":34,"elapsed_time_sec":113,"exit":1728398367},{"entry":1728398369,"keystrokes":10,"elapsed_time_sec":8,"exit":1728398377},{"entry":1728398419,"keystrokes":59,"elapsed_time_sec":16,"exit":1728398435},{"entry":1728398455,"keystrokes":143,"elapsed_time_sec":52,"exit":1728398507},{"entry":1728447292,"keystrokes":131,"elapsed_time_sec":43,"exit":1728447335},{"entry":1728474570,"keystrokes":716,"elapsed_time_sec":651,"exit":1728475221},{"entry":1728640384,"keystrokes":46,"elapsed_time_sec":51,"exit":1728640435}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/new-wifi.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/etc\/sddm.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/gitui\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/clipman\/clipman.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/scripts\/check-updates.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/mocha.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/ayush\/Documents\/t3_tutorial\/first\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/hyprdots\/.config\/rofi\/config\/confirm.rasi":{"filetype":"","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/blue.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/fastfetch\/icons\/pikachu.txt":{"filetype":"text","visit_log":[],"git_project_name":""},"\/usr\/local\/bin\/nitch":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.bashrc":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/fastfetch\/config.jsonc":{"filetype":"jsonc","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/volumectl\/volume-up.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/pacman-packages.txt":{"filetype":"text","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/chatgpt.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/usr\/share\/applications\/code-oss.desktop":{"filetype":"desktop","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/zshrc":{"filetype":"zsh","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/pulumi\/quickstart\/index.ts":{"filetype":"typescript","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/brightnessctl\/brightness-down.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/volumectl\/volume-down.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/colors.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/alpha.lua":{"filetype":"lua","visit_log":[{"entry":1729082357,"keystrokes":1,"elapsed_time_sec":6,"exit":1729082363}],"git_project_name":"hyprdots"},"\/home\/archer\/Projects\/hyprdots\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/setup.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/networkmenu.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.zshrc":{"filetype":"zsh","visit_log":[{"entry":1728967977,"keystrokes":107,"elapsed_time_sec":19,"exit":1728967996},{"entry":1729078039,"keystrokes":74,"elapsed_time_sec":9,"exit":1729078048},{"entry":1729081282,"keystrokes":185,"elapsed_time_sec":33,"exit":1729081315},{"entry":1729081330,"keystrokes":53,"elapsed_time_sec":13,"exit":1729081343},{"entry":1729344777,"keystrokes":148,"elapsed_time_sec":35,"exit":1729344812}],"git_project_name":"Obsidian Vault"},"\/home\/archer\/.config\/X11\/xprofile":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/LetsGO\/go.mod":{"filetype":"gomod","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-10.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/waybar\/colors-waybar.css":{"filetype":"css","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-3.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/yazi\/.config\/yazi\/yazi\/catppuccin\/yazi.tera":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.ssh\/known_hosts.old":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/bin\/element-wayland.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/readme.md":{"filetype":"markdown","visit_log":[{"entry":1728284564,"keystrokes":153,"elapsed_time_sec":31,"exit":1728284595}],"git_project_name":"dotfiles"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/auto-session.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/treesj.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/colorschemes.lua":{"filetype":"lua","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t5":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/mocha.config":{"filetype":"","visit_log":[],"git_project_name":""},"\/dev\/cpu_dma_latency":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/hyprdots\/.config\/rofi\/config\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/dunst\/dunstrc":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.ssh\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/wlogout\/style.css":{"filetype":"css","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/total.txt":{"filetype":"text","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/hyprdots\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"hyprdots"},"\/usr\/share\/iso-codes\/json\/iso_3166-1.json":{"filetype":"json","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/wifi\/password.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/new.pub":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/power.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/mocha.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":"hyprdots"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/mason-lsconfig.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/powermenu\/type-2\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/comment.lua":{"filetype":"lua","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/Chatbot\/standalone-frontend\/images\/chatbox-icon.svg":{"filetype":"svg","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/confirmation.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launcher\/launcher.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"term:\/\/~\/Downloads\/Chatbot\/\/65801:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/bun.lockb":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/linux\/rofi\/powermenu\/confirmation.rasi":{"filetype":"","visit_log":[],"git_project_name":"linux"},"\/usr\/share\/grub\/themes\/catppuccin-mocha-grub-theme\/theme.txt":{"filetype":"text","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/copilot.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/lib\/python3.12\/site-packages\/pip\/__init__.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/data.pth":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/yazi\/yazi.toml":{"filetype":"toml","visit_log":[{"entry":1728362356,"elapsed_time_sec":0,"keystrokes":0}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/bluetooth.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/neo-tree.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/etc\/theme.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/wifi\/enable.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/current_wallpaper_index":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/arc\/docs\/getting-started-open-source.md":{"filetype":"markdown","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/alpha.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/none-ls.lua":{"filetype":"lua","visit_log":[{"entry":1729081590,"keystrokes":42,"elapsed_time_sec":22,"exit":1729081612},{"entry":1729082368,"keystrokes":12,"elapsed_time_sec":15,"exit":1729082383},{"entry":1729082404,"keystrokes":38,"elapsed_time_sec":15,"exit":1729082419}],"git_project_name":"hyprdots"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/bufferline.lua":{"filetype":"lua","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/applets\/bin\/apps.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t4":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/colors\/black.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"oil:\/\/\/home\/ayush\/.themes\/Dracula\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/usr\/bin\/bash":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/activate.fish":{"filetype":"fish","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/hooks\/commit-msg.sample":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/.config\/QtProject.conf":{"filetype":"conf","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Projects\/LetsGO\/index.go":{"filetype":"go","visit_log":[{"entry":1728642751,"keystrokes":1,"elapsed_time_sec":32,"exit":1728642783}],"git_project_name":""},"oil:\/\/\/home\/archer\/.config\/tmux\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/bat\/themes\/Catppuccin Mocha.tmTheme":{"filetype":"xml","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/scrollbar.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/X11\/xinitrc.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/Documents\/t3_tutorial\/first\/src\/pages\/_app.tsx":{"filetype":"typescriptreact","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/yazi\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/usr\/share\/sddm\/themes\/catppuccin-mocha\/theme.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-2.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"oil:\/\/\/home\/archer\/Downloads\/Chatbot\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Default.code-profile":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/known_hosts.old":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/refs\/heads\/foo":{"filetype":"git","visit_log":[],"git_project_name":""},"\/home\/ayush\/.cache\/Homebrew\/Logs\/dbus\/post_install.01.dbus-uuidgen":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/waybar\/modules-config.jsonc":{"filetype":"jsonc","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/Chatbot\/train.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/bufferline.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/askpass.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/X11\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/yazi\/.config\/yazi\/yazi\/catppuccin\/themes\/mocha.toml":{"filetype":"toml","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/wlogout\/layout":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/mocha.theme":{"filetype":"php","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/lockctl\/caps-lock.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/tmp\/crontab.oSjrPO":{"filetype":"crontab","visit_log":[],"git_project_name":"Obsidian Vault"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t1":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/colorschemes.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/bat\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/yazi\/theme.toml":{"filetype":"toml","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/wlogout\/lock.png":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t3":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/dunst\/notification.png":{"filetype":"","visit_log":[],"git_project_name":"dotfiles"},"\/tmp\/crontab.9S4eur":{"filetype":"crontab","visit_log":[],"git_project_name":""},"oil:\/\/\/home\/archer\/.config\/tmux\/plugins\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/colorizer.lua":{"filetype":"lua","visit_log":[],"git_project_name":"hyprdots"},"\/home\/ayush\/.ssh\/new":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/clipboard\/style.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/fish\/config.fish":{"filetype":"fish","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/hypr\/hyprwallpaper\/tropic_island_evening.jpg":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Downloads\/Catppuccin-Dark\/gtk-4.0\/gtk.css":{"filetype":"css","visit_log":[],"git_project_name":""},"\/usr\/share\/sddm\/themes\/catppuccin-mocha\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/battery-alert.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Obsidian Vault\/New Toy's.md":{"filetype":"markdown","visit_log":[],"git_project_name":"Obsidian Vault"},"\/home\/archer\/.local\/bin\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/colors_ctp.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/3150703-Analysis and Design of Algorithms.docx":{"filetype":"zip","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/linux\/rofi\/launcher\/style.rasi":{"filetype":"","visit_log":[],"git_project_name":"linux"},"\/home\/archer\/Projects\/hyprdots\/.config\/eww\/wallpapers\/arin.png":{"filetype":"","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/qt6ct\/qt6ct.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/powermenu_t1":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/usage_data.json":{"filetype":"json","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/Chatbot\/chat.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/ohmyposh\/base.json":{"filetype":"json","visit_log":[],"git_project_name":"dotfiles"},"\/etc\/sudoers":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/gnome-extensions.txt":{"filetype":"text","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/powermenu\/type-4\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/synth-shell\/alias.sh":{"filetype":"sh","visit_log":[],"git_project_name":"dotfiles"},"\/usr\/local\/bin\/starship":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/objects\/62\/d29f1a2581df0d40df3cd75efbf828fe54afe2":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/starship\/config.jsonc":{"filetype":"jsonc","visit_log":[],"git_project_name":""},"\/etc\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/X11\/xresources":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/tmux\/tmux.conf":{"filetype":"tmux","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/X11\/xinitrc":{"filetype":"","visit_log":[],"git_project_name":""},"\/dev\/nvme0n1p6":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/linux\/rofi\/powermenu\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":"linux"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-1.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"oil:\/\/\/home\/archer\/.config\/rofi\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/id_ed25519":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/scripts\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Projects\/EdChat\/.git\/MERGE_MSG":{"filetype":"gitcommit","visit_log":[],"git_project_name":"EdChat"},"\/home\/archer\/.config\/rofi\/wifi.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/style.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/X11\/xprofile.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/static\/images\/about.png":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/dunst\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/kitty\/kitty.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"term:\/\/~\/.config\/nvim\/\/20576:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/nvimtracker.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/gitui\/theme.ron":{"filetype":"ron","visit_log":[],"git_project_name":""},"\/dev\/tty11":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/model.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/yazi\/catppuccin\/themes\/mocha.toml":{"filetype":"toml","visit_log":[],"git_project_name":""},"\/home\/archer\/.mozilla\/firefox\/iu7spruw.default-release\/chrome\/userChrome.css":{"filetype":"css","visit_log":[{"entry":1729007122,"keystrokes":3,"elapsed_time_sec":24,"exit":1729007146}],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/noice.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/wlogout\/power-hover.png":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/nvim\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/sortedPackages.txt":{"filetype":"text","visit_log":[],"git_project_name":"hyprdots"},"\/home\/ayush\/Documents\/My Things\/Development\/AyushDumasia\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":"AyushDumasia"},"\/home\/archer\/Downloads\/dotfiles\/waybar\/topbar\/config.jsonc":{"filetype":"jsonc","visit_log":[{"entry":1728390685,"elapsed_time_sec":0,"keystrokes":0}],"git_project_name":"dotfiles"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/bufferline.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/dunst\/dunst-backup":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/src\/Pages\/Chat.jsx":{"filetype":"javascriptreact","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/synth-shell\/synth-shell-greeter.config":{"filetype":"conf","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/wifi\/wifi.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/config":{"filetype":"sshconfig","visit_log":[],"git_project_name":""},"\/home\/archer\/.zshrc0":{"filetype":"zsh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-7.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/config.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/dolphinrc":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/nvim-lspconfig.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-6\/style-2.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/gtk-3.0\/settings.ini":{"filetype":"dosini","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/client\/src\/assets\/data.js":{"filetype":"javascript","visit_log":[],"git_project_name":"EdChat"},"\/home\/archer\/.config\/starship\/starship.toml":{"filetype":"toml","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/chatgpt.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/tmp\/nvim.archer\/Hcu3qX\/3":{"filetype":"git","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/themes\/onedark.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.config\/hypr\/hyprland.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/etc\/cron.d\/0hourly":{"filetype":"crontab","visit_log":[],"git_project_name":""},"\/usr\/local\/bin\/dunstctl":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/volume.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/HEAD":{"filetype":"git","visit_log":[],"git_project_name":"GIT_THINGS"},"\/home\/ayush\/Documents\/DSA\/containsDuplicate.cpp":{"filetype":"cpp","visit_log":[],"git_project_name":""},"\/home\/archer\/search.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/.zshrc":{"filetype":"zsh","visit_log":[],"git_project_name":"hyprdots"},"\/tmp\/crontab.GvjatC":{"filetype":"crontab","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/waybar\/scripts\/network.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/kitty\/kitty.conf.bak":{"filetype":"conf","visit_log":[],"git_project_name":"dotfiles"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/alpha.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/HEAD":{"filetype":"git","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/pip":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/auto-pairs.lua":{"filetype":"lua","visit_log":[],"git_project_name":"hyprdots"},"\/dev\/rfkill":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/rofi\/.config\/rofi\/colors\/adapta.rasi":{"filetype":"","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/dotfiles\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/EdChat\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":"EdChat"},"\/home\/archer\/.config\/rofi\/colors\/catppuccin.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/fish\/themes\/Rosé Pine Dawn.theme":{"filetype":"php","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/spotify-tui\/.spotify_token_cache.json":{"filetype":"json","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/telescope.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/hyprdots\/.config\/greenclip.toml":{"filetype":"toml","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/catppuccin.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/golang.lua":{"filetype":"lua","visit_log":[{"entry":1729081920,"keystrokes":3,"elapsed_time_sec":13,"exit":1729081933},{"entry":1729081934,"keystrokes":16,"elapsed_time_sec":17,"exit":1729081951},{"entry":1729081959,"keystrokes":47,"elapsed_time_sec":20,"exit":1729081979}],"git_project_name":"hyprdots"},"\/home\/archer\/Projects\/LetsGO\/maps\/go.mod":{"filetype":"gomod","visit_log":[],"git_project_name":"LetsGO"},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lazy-lock.json":{"filetype":"json","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Projects\/LetsGO\/maps\/main2.go":{"filetype":"go","visit_log":[{"entry":1729344413,"keystrokes":324,"elapsed_time_sec":54,"exit":1729344467},{"entry":1729344475,"keystrokes":103,"elapsed_time_sec":35,"exit":1729344510}],"git_project_name":"LetsGO"},"\/home\/archer\/.config\/rofi\/powermenu\/type-3\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypridle\/hypridle.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/shared\/colors.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/init.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/hypr\/hyprland.conf":{"filetype":"conf","visit_log":[{"entry":1728303577,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728317471,"keystrokes":252,"elapsed_time_sec":40,"exit":1728317511},{"entry":1728371063,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728389921,"keystrokes":77,"elapsed_time_sec":59,"exit":1728389980},{"entry":1728562135,"keystrokes":110,"elapsed_time_sec":100,"exit":1728562235},{"entry":1728562242,"keystrokes":211,"elapsed_time_sec":40,"exit":1728562282},{"entry":1728562357,"keystrokes":54,"elapsed_time_sec":99,"exit":1728562456},{"entry":1728562880,"keystrokes":406,"elapsed_time_sec":375,"exit":1728563255},{"entry":1728968536,"keystrokes":37,"elapsed_time_sec":13,"exit":1728968549},{"entry":1729081440,"keystrokes":198,"elapsed_time_sec":66,"exit":1729081506}],"git_project_name":""},"\/home\/archer\/.config\/spotify-tui\/client.yml":{"filetype":"yaml","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/forest.rofi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":"GIT_THINGS"},"\/home\/archer\/hyprdots\/waybar\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Projects\/EdChat\/index.html":{"filetype":"html","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/gtk-4.0\/settings.ini":{"filetype":"dosini","visit_log":[],"git_project_name":""},"\/home\/archer\/bin\/freetube-wayland.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/__pycache__\/chat.cpython-310.pyc":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Obsidian Vault\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":"Obsidian Vault"},"\/home\/archer\/Downloads\/Downloads\/Catppuccin-Dark\/gtk-4.0\/gtk-dark.css":{"filetype":"css","visit_log":[],"git_project_name":""},"\/home\/ayush\/.config\/hypr\/hyprlock.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/toggle-term.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/client\/index.html":{"filetype":"html","visit_log":[],"git_project_name":"EdChat"},"\/home\/archer\/.config\/waybar\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/images\/b.png":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/minimap.lua":{"filetype":"lua","visit_log":[{"entry":1729081615,"elapsed_time_sec":0,"keystrokes":0},{"entry":1729081641,"keystrokes":1,"elapsed_time_sec":6,"exit":1729081647}],"git_project_name":"hyprdots"},"\/home\/archer\/Projects\/EdChat\/client\/src\/Pages\/pieChart.jsx":{"filetype":"javascriptreact","visit_log":[],"git_project_name":"EdChat"},"term:\/\/~\/Projects\/EdChat\/\/35654:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":"EdChat"},"\/home\/archer\/Projects\/hyprdots\/.config\/vlc\/vlc-qt-interface.conf":{"filetype":"conf","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/ChatModel\/data\/data.txt":{"filetype":"text","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/refs\/heads\/master":{"filetype":"git","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/swaync\/style.css":{"filetype":"css","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/vim\/.config\/nvim\/lua\/plugins\/cursorline.lua":{"filetype":"lua","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/waybar\/mocha.css":{"filetype":"css","visit_log":[{"entry":1728303747,"keystrokes":1,"elapsed_time_sec":13,"exit":1728303760},{"entry":1728316301,"keystrokes":20,"elapsed_time_sec":579,"exit":1728316880},{"entry":1728361922,"elapsed_time_sec":0,"keystrokes":0},{"entry":1728391399,"keystrokes":50,"elapsed_time_sec":11,"exit":1728391410},{"entry":1728391467,"keystrokes":1,"elapsed_time_sec":17,"exit":1728391484}],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/nvim-lspconfig.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/deno\/index.ts":{"filetype":"typescript","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t7":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/fastfetch\/icons\/uwu.txt":{"filetype":"text","visit_log":[],"git_project_name":""}},"last_cleanup":1729484417} \ No newline at end of file