diff --git a/hypr/.config/hypr/hyprland.conf b/hypr/.config/hypr/hyprland.conf index 43a848b..2aa5833 100644 --- a/hypr/.config/hypr/hyprland.conf +++ b/hypr/.config/hypr/hyprland.conf @@ -21,9 +21,9 @@ env = HYPRCURSOR_SIZE,20 general { gaps_in = 5 - gaps_out = 5 + gaps_out = 10 - border_size = 2 + border_size = 0 col.active_border = rgb(8839ef) col.inactive_border = rgb(ffffff) @@ -34,14 +34,15 @@ general { resize_corner = 5 allow_tearing = false + layout = master } decoration { - rounding = 5 + rounding = 2 active_opacity = 1.0 - inactive_opacity = 0.9 + inactive_opacity = 0.5 #drop_shadow = true #shadow_range = 4 @@ -135,7 +136,7 @@ bind = $mainMod, E, exec, $terminal $fileManager #Rofi Powermenu bind = $mainMod, P, exec, ~/.config/rofi/powermenu/type-5/powermenu.sh #Rofi Launcher -bind = $mainMod, Space, exec, ~/.config/rofi/launchers/type-4/launcher.sh +bind = $mainMod, Space, exec, ~/.config/rofi/launchers/type-2/launcher.sh #Grim & Slurp for Screenshot bind = $mainMod_Shift, S, exec, slurp | grim -g - /tmp/photo && wl-copy < /tmp/photo && notify-send 'Screenshot Copied to Clipboard' @@ -177,8 +178,8 @@ bind = $mainMod, Tab, workspace, e-2 bind = $mainMod, A, exec,bash ~/.config/rofi/wifi.sh # Move focus with mainMod + arrow keys -bind = $mainMod, left, movefocus, l -bind = $mainMod, right, movefocus, r +bind = $mainMod, l, movefocus, l +bind = $mainMod, k, movefocus, r bind = $mainMod, up, movefocus, u bind = $mainMod, down, movefocus, d diff --git a/hypr/.config/hypr/hyprpaper.conf b/hypr/.config/hypr/hyprpaper.conf index d589261..a64d909 100644 --- a/hypr/.config/hypr/hyprpaper.conf +++ b/hypr/.config/hypr/hyprpaper.conf @@ -1,4 +1,4 @@ -preload = /home/archer/Downloads/wallpaper/lock-screen.png -wallpaper = eDP-1, /home/archer/Downloads/wallpaper/lock-screen.png +preload = /home/archer/Downloads/wallpaper/bxkx9z4xz4od1.jpeg +wallpaper = eDP-1, /home/archer/Downloads/wallpaper/bxkx9z4xz4od1.jpeg splash = off ipc = off diff --git a/rofi/.config/rofi/bluetooth.sh b/rofi/.config/rofi/bluetooth.sh index c7916f2..8b13789 100755 --- a/rofi/.config/rofi/bluetooth.sh +++ b/rofi/.config/rofi/bluetooth.sh @@ -1,317 +1 @@ -#!/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/vim/.config/nvim/usage_data.json b/vim/.config/nvim/usage_data.json index d432af9..36e3a7a 100644 --- a/vim/.config/nvim/usage_data.json +++ b/vim/.config/nvim/usage_data.json @@ -1 +1 @@ -{"data":{"":{"filetype":"","visit_log":[{"elapsed_time_sec":2204,"keystrokes":34,"entry":1725504896,"exit":1725507100},{"elapsed_time_sec":9,"keystrokes":4,"entry":1725507105,"exit":1725507114},{"keystrokes":0,"entry":1725507163,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725507165,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725507167,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725509038,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725509043,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725509062,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725509219,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725509428,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725519088,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725519175,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725520211,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725520277,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725520308,"elapsed_time_sec":0},{"elapsed_time_sec":6,"keystrokes":1,"entry":1725520319,"exit":1725520325},{"keystrokes":0,"entry":1725547305,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725547311,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725681056,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725681861,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725684034,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725684467,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725685333,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725685615,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725685620,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725686509,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725687414,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725687466,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725687913,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725689446,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725689642,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725689644,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725689655,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725689773,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725690083,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725690091,"elapsed_time_sec":0},{"elapsed_time_sec":9,"keystrokes":0,"entry":1725690103,"exit":1725690112},{"keystrokes":0,"entry":1725691772,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725708732,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725711115,"elapsed_time_sec":0},{"elapsed_time_sec":81119,"keystrokes":8,"entry":1725715539,"exit":1725796658},{"keystrokes":0,"entry":1725799435,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725799617,"elapsed_time_sec":0},{"elapsed_time_sec":322,"keystrokes":24,"entry":1725811915,"exit":1725812237},{"elapsed_time_sec":662,"keystrokes":4,"entry":1725812274,"exit":1725812936},{"keystrokes":0,"entry":1725814352,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725856310,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725864056,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725867663,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725867679,"elapsed_time_sec":0},{"elapsed_time_sec":326,"keystrokes":0,"entry":1725867848,"exit":1725868174},{"keystrokes":0,"entry":1725868387,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725868388,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725872833,"elapsed_time_sec":0},{"elapsed_time_sec":36,"keystrokes":0,"entry":1725872835,"exit":1725872871},{"elapsed_time_sec":6,"keystrokes":28,"entry":1725872978,"exit":1725872984},{"keystrokes":0,"entry":1725873319,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873324,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873362,"elapsed_time_sec":0},{"elapsed_time_sec":22,"keystrokes":38,"entry":1725873397,"exit":1725873419},{"keystrokes":0,"entry":1725873542,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873543,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873545,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873567,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873632,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873638,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873650,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873654,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873757,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873763,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873766,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873768,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873773,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873775,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873778,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873803,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873813,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873826,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873833,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873849,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873883,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725873908,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725882289,"elapsed_time_sec":0},{"elapsed_time_sec":141,"keystrokes":34,"entry":1725882326,"exit":1725882467},{"keystrokes":0,"entry":1726055424,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726058603,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726059151,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726060051,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726060455,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726060815,"elapsed_time_sec":0},{"elapsed_time_sec":19,"keystrokes":54,"entry":1726064403,"exit":1726064422},{"keystrokes":0,"entry":1726067837,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726067951,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726068796,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726069486,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726072203,"elapsed_time_sec":0},{"elapsed_time_sec":6,"keystrokes":22,"entry":1726075810,"exit":1726075816},{"keystrokes":0,"entry":1726077604,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726077692,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726077746,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726082481,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726082484,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726082659,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726116834,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726117230,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726117232,"elapsed_time_sec":0},{"elapsed_time_sec":177,"keystrokes":108,"entry":1726118280,"exit":1726118457},{"keystrokes":0,"entry":1726118472,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726118481,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726120286,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726125423,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726125434,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726125437,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726125918,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726126670,"elapsed_time_sec":0},{"elapsed_time_sec":33,"keystrokes":34,"entry":1726126722,"exit":1726126755},{"keystrokes":0,"entry":1726126757,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726126791,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726126873,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726126875,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726135499,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726135948,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726135950,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726135957,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726135957,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726138858,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726138918,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726138944,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726139528,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726141541,"elapsed_time_sec":0},{"elapsed_time_sec":19,"keystrokes":8,"entry":1726142986,"exit":1726143005},{"keystrokes":0,"entry":1726159360,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726159363,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726167232,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726167401,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726167487,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726167680,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726167681,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726169119,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726169407,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232070,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232081,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232092,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232097,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232112,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232644,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232672,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232681,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232699,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232702,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232704,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726235390,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726235402,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726298825,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726332150,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726332151,"elapsed_time_sec":0},{"elapsed_time_sec":51156,"keystrokes":80,"entry":1726332155,"exit":1726383311},{"keystrokes":0,"entry":1726383320,"elapsed_time_sec":0},{"elapsed_time_sec":8,"keystrokes":20,"entry":1726383328,"exit":1726383336},{"keystrokes":0,"entry":1726383376,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726383379,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726394086,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726414428,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726425564,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726425564,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726425596,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726425731,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726425732,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726425820,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726426092,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726426413,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726461585,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726461588,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726473446,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726479959,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726479961,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726480036,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726480507,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726480863,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726482583,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726483794,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726485179,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726485182,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726485756,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726485770,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726491440,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726491441,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726492145,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726492709,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726501810,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726501811,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726505104,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726505327,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726543186,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726549452,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726549813,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726550035,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726550037,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726594238,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726598843,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726598844,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726598847,"elapsed_time_sec":0},{"elapsed_time_sec":716,"keystrokes":10,"entry":1726598860,"exit":1726599576},{"keystrokes":0,"entry":1726599581,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726599651,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726599653,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726599653,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726599654,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726599660,"elapsed_time_sec":0},{"elapsed_time_sec":14,"keystrokes":1,"entry":1726599661,"exit":1726599675},{"keystrokes":0,"entry":1726599675,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726599680,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726599858,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726599863,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726600994,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601109,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601134,"elapsed_time_sec":0},{"elapsed_time_sec":8,"keystrokes":24,"entry":1726601176,"exit":1726601184},{"elapsed_time_sec":7,"keystrokes":20,"entry":1726601230,"exit":1726601237},{"keystrokes":0,"entry":1726601274,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601459,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601500,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601506,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601507,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601508,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601509,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601512,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601516,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601518,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601522,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601926,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601928,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601930,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601932,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602024,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602066,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602070,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602095,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602101,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602181,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602465,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602472,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602476,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602631,"elapsed_time_sec":0},{"elapsed_time_sec":6,"keystrokes":10,"entry":1726602798,"exit":1726602804},{"keystrokes":0,"entry":1726602824,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726602902,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726603292,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726603336,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726603747,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726603823,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726604112,"elapsed_time_sec":0},{"elapsed_time_sec":54,"keystrokes":1,"entry":1726604116,"exit":1726604170},{"keystrokes":0,"entry":1726604170,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726604186,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726604209,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726604944,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726638817,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726638819,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726638822,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726638824,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726638962,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726639380,"elapsed_time_sec":0},{"elapsed_time_sec":9,"keystrokes":6,"entry":1726653163,"exit":1726653172},{"keystrokes":0,"entry":1726653184,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726659155,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726659156,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726659157,"elapsed_time_sec":0},{"elapsed_time_sec":12,"keystrokes":14,"entry":1726659412,"exit":1726659424},{"keystrokes":0,"entry":1726663883,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726663886,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726663888,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683079,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683079,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683086,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683099,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683104,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683110,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683112,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683765,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683772,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683773,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683775,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683778,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726683940,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726714579,"elapsed_time_sec":0},{"elapsed_time_sec":6,"keystrokes":16,"entry":1726714585,"exit":1726714591},{"keystrokes":0,"entry":1726719464,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726719792,"elapsed_time_sec":0},{"elapsed_time_sec":23,"keystrokes":44,"entry":1726719925,"exit":1726719948},{"elapsed_time_sec":21,"keystrokes":15,"entry":1726720016,"exit":1726720037},{"keystrokes":0,"entry":1726720038,"elapsed_time_sec":0},{"elapsed_time_sec":6,"keystrokes":8,"entry":1726720282,"exit":1726720288},{"keystrokes":0,"entry":1726722436,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726723176,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726723248,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726757867,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726758002,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726758398,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726758514,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726758516,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726816732,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726817919,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726817990,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726824384,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726824389,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726824397,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726824447,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726828698,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726828890,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726828891,"elapsed_time_sec":0},{"elapsed_time_sec":9,"keystrokes":4,"entry":1726828901,"exit":1726828910},{"keystrokes":0,"entry":1726828931,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726828934,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726828941,"elapsed_time_sec":0},{"elapsed_time_sec":7,"keystrokes":38,"entry":1726828945,"exit":1726828952},{"keystrokes":0,"entry":1726829495,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726829513,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726829637,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726829843,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726829869,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726830033,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726830427,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726830444,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726830852,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726831026,"elapsed_time_sec":0},{"elapsed_time_sec":6,"keystrokes":22,"entry":1726849467,"exit":1726849473},{"elapsed_time_sec":6,"keystrokes":17,"entry":1726849495,"exit":1726849501},{"keystrokes":0,"entry":1726849502,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726849535,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726849536,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726849540,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726849544,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726906319,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726906322,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726906324,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726906484,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726936036,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726936076,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726936180,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726936189,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726936193,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726936195,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726936198,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726937027,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726937325,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726937348,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726937350,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726937351,"elapsed_time_sec":0},{"elapsed_time_sec":6,"keystrokes":2,"entry":1726937360,"exit":1726937366},{"keystrokes":0,"entry":1726937368,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726940027,"elapsed_time_sec":0},{"elapsed_time_sec":6,"keystrokes":12,"entry":1726940032,"exit":1726940038},{"keystrokes":0,"entry":1726941019,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726979760,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726979782,"elapsed_time_sec":0},{"elapsed_time_sec":12,"keystrokes":18,"entry":1726979783,"exit":1726979795},{"keystrokes":0,"entry":1726980026,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726984059,"elapsed_time_sec":0},{"keystrokes":0,"entry":1727076629,"elapsed_time_sec":0},{"keystrokes":0,"entry":1727076741,"elapsed_time_sec":0},{"elapsed_time_sec":0,"entry":1727076785,"keystrokes":0},{"elapsed_time_sec":0,"entry":1727076786,"keystrokes":0},{"keystrokes":0,"entry":1727076935,"elapsed_time_sec":0},{"keystrokes":0,"entry":1727114753,"elapsed_time_sec":0},{"elapsed_time_sec":11,"keystrokes":41,"entry":1727114755,"exit":1727114766}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-4\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/X11\/xresources":{"filetype":"","visit_log":[{"keystrokes":0,"entry":1726126750,"elapsed_time_sec":0},{"elapsed_time_sec":19,"keystrokes":2,"entry":1726126758,"exit":1726126777}],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/activate":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"elapsed_time_sec":4661,"keystrokes":7,"entry":1725868174,"exit":1725872835},{"elapsed_time_sec":9454,"keystrokes":43,"entry":1725872872,"exit":1725882326},{"elapsed_time_sec":1097366,"keystrokes":46,"entry":1725882430,"exit":1726979796}],"git_project_name":"EdChat"},"\/home\/archer\/Projects\/hyprdots\/.config\/QtProject.conf":{"filetype":"conf","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Obsidian Vault\/auto-push.sh":{"filetype":"sh","visit_log":[{"keystrokes":0,"entry":1726758400,"elapsed_time_sec":0},{"elapsed_time_sec":68,"keystrokes":227,"entry":1726758400,"exit":1726758468}],"git_project_name":"Obsidian Vault"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/neo-tree.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/launchers\/type-6\/style-2.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/usr\/local\/bin\/nitch":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/wifi.sh":{"filetype":"sh","visit_log":[{"keystrokes":0,"entry":1725684468,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725856313,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/.config\/dconf\/user":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/.git\/MERGE_MSG":{"filetype":"gitcommit","visit_log":[{"elapsed_time_sec":9,"keystrokes":0,"entry":1726423114,"exit":1726423123}],"git_project_name":"EdChat"},"\/tmp\/nvim.ayush\/AXansa\/2":{"filetype":"git","visit_log":[],"git_project_name":"AyushDumasia"},"\/home\/archer\/.config\/hypr\/exports.conf":{"filetype":"conf","visit_log":[{"keystrokes":0,"entry":1726118462,"elapsed_time_sec":0},{"elapsed_time_sec":7,"keystrokes":3,"entry":1726118462,"exit":1726118469}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/askpass.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/mocha.config":{"filetype":"","visit_log":[],"git_project_name":""},"\/usr\/share\/rofi\/themes\/catppuccin.rasi":{"filetype":"","visit_log":[{"elapsed_time_sec":314,"keystrokes":152,"entry":1726507975,"exit":1726508289}],"git_project_name":""},"\/home\/archer\/.config\/dunst\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"keystrokes":3,"entry":1725812933,"elapsed_time_sec":0},{"elapsed_time_sec":1419,"keystrokes":8,"entry":1725812934,"exit":1725814353}],"git_project_name":""},"term:\/\/~\/Downloads\/Chatbot\/\/66793:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/synth-shell\/alias.sh":{"filetype":"sh","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/hyprdots\/.gitignore":{"filetype":"gitignore","visit_log":[{"elapsed_time_sec":16,"keystrokes":63,"entry":1726849474,"exit":1726849490},{"keystrokes":0,"entry":1726849532,"elapsed_time_sec":0}],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/waybar\/scripts\/change-wallpaper.sh":{"filetype":"sh","visit_log":[{"keystrokes":0,"entry":1726232683,"elapsed_time_sec":0},{"elapsed_time_sec":48,"keystrokes":186,"entry":1726298827,"exit":1726298875},{"keystrokes":0,"entry":1726299445,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/index.html":{"filetype":"html","visit_log":[{"elapsed_time_sec":65,"keystrokes":59,"entry":1725520212,"exit":1725520277}],"git_project_name":""},"\/home\/archer\/.config\/hypr\/hyprwallpaper\/tropic_island_evening.jpg":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/nvim-lspconfig.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/smooth-scroll.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/neo-tree filesystem [1]":{"filetype":"neo-tree","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\/nvim\/lua\/plugins\/alpha.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/waybar\/scripts\/check-updates.sh":{"filetype":"sh","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\/gitui\/theme.con":{"filetype":"cterm","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/intents.json":{"filetype":"json","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/completions.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/EdChat\/src\/Pages\/Chat.jsx":{"filetype":"javascriptreact","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-3\/style-5.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.ssh\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"keystrokes":5,"entry":1726659421,"elapsed_time_sec":0},{"elapsed_time_sec":24517,"keystrokes":59,"entry":1726659424,"exit":1726683941}],"git_project_name":""},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/scripts\/change-wallpaper.sh":{"filetype":"sh","visit_log":[{"keystrokes":0,"entry":1726659159,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/ayush\/.config\/hypr\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/kitty\/kitty.conf.bak":{"filetype":"conf","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/treesj.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/waybar\/scripts\/network.sh":{"filetype":"sh","visit_log":[{"keystrokes":0,"entry":1726075817,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/init.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/ayush\/.config\/i3\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/.config\/greenclip.toml":{"filetype":"toml","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/waybar\/mocha.css":{"filetype":"css","visit_log":[],"git_project_name":""},"\/tmp\/crontab.9S4eur":{"filetype":"crontab","visit_log":[{"elapsed_time_sec":22,"keystrokes":0,"entry":1726492687,"exit":1726492709},{"elapsed_time_sec":90,"keystrokes":65,"entry":1726492712,"exit":1726492802}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/colors_ctp.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/style-1.rasi":{"filetype":"","visit_log":[{"elapsed_time_sec":117,"keystrokes":351,"entry":1725689656,"exit":1725689773},{"elapsed_time_sec":84,"keystrokes":36,"entry":1725689809,"exit":1725689893},{"elapsed_time_sec":182,"keystrokes":587,"entry":1725689901,"exit":1725690083}],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/refs\/heads\/master":{"filetype":"git","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/app.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/swaync\/style.css":{"filetype":"css","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/.config\/eww\/wallpapers\/arin.png":{"filetype":"","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/style-5.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/server\/src\/utils\/ApiResponse.utils.js":{"filetype":"javascript","visit_log":[{"keystrokes":0,"entry":1725867687,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725867687,"elapsed_time_sec":0}],"git_project_name":"EdChat"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/auto-pairs.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/hyprdots\/.config\/rofi\/config\/confirm.rasi":{"filetype":"","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\/nvim\/lua\/plugins\/bufferline.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/ayush\/Documents\/DSA\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/powermenu_t1":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Downloads\/neo-tree filesystem [1]":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/bufferline.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/Chatbot\/train.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/mocha.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":12,"keystrokes":1,"entry":1726118313,"exit":1726118325},{"keystrokes":0,"entry":1726601237,"elapsed_time_sec":0},{"elapsed_time_sec":39,"keystrokes":55,"entry":1727076787,"exit":1727076826}],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/objects\/62\/d29f1a2581df0d40df3cd75efbf828fe54afe2":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-2.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/usr\/local\/bin\/starship":{"filetype":"","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\/scripts\/launcher_t7":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/launcher.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/usr\/bin\/bash":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/colors.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/etc\/theme.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/chat.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/a.rasi":{"filetype":"","visit_log":[{"elapsed_time_sec":59,"keystrokes":93,"entry":1725687489,"exit":1725687548},{"elapsed_time_sec":17,"keystrokes":14,"entry":1725687559,"exit":1725687576}],"git_project_name":""},"\/home\/archer\/hyprdots\/hyprland\/.config\/hypr\/exports.conf":{"filetype":"conf","visit_log":[],"git_project_name":"hyprdots"},"\/home\/ayush\/.themes\/Dracula\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/themes":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/synth-shell\/synth-shell-greeter.config":{"filetype":"conf","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/hyprdots\/starship\/.config\/starship\/starship\/starship.toml":{"filetype":"toml","visit_log":[{"elapsed_time_sec":26,"keystrokes":1,"entry":1726602632,"exit":1726602658}],"git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/dotfiles\/kitty\/kitty.conf":{"filetype":"conf","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/HEAD":{"filetype":"git","visit_log":[{"elapsed_time_sec":9,"keystrokes":1,"entry":1726683090,"exit":1726683099},{"elapsed_time_sec":8,"keystrokes":30,"entry":1726936181,"exit":1726936189}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/shared\/theme.bash":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-6\/launcher.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/brightnessctl\/brightness-up.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-3.rasi":{"filetype":"","visit_log":[{"elapsed_time_sec":17,"keystrokes":3,"entry":1725687467,"exit":1725687484},{"elapsed_time_sec":11,"keystrokes":12,"entry":1725687548,"exit":1725687559},{"elapsed_time_sec":330,"keystrokes":709,"entry":1725687576,"exit":1725687906},{"keystrokes":0,"entry":1725687920,"elapsed_time_sec":0},{"elapsed_time_sec":10,"keystrokes":3,"entry":1725689781,"exit":1725689791},{"elapsed_time_sec":9,"keystrokes":16,"entry":1725689800,"exit":1725689809},{"elapsed_time_sec":8,"keystrokes":8,"entry":1725689893,"exit":1725689901},{"elapsed_time_sec":42,"keystrokes":230,"entry":1726135959,"exit":1726136001},{"elapsed_time_sec":539,"keystrokes":392,"entry":1726137565,"exit":1726138104},{"keystrokes":0,"entry":1726138585,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/zshrc":{"filetype":"zsh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/colors\/black.rasi":{"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\/X11\/xinitrc":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t4":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/code-flags.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/model.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/known_hosts":{"filetype":"","visit_log":[],"git_project_name":""},"\/usr\/share\/nvim\/runtime\/doc\/help.txt":{"filetype":"help","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\/rofi\/catppuccin.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/battery-charging.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/swaync\/neo-tree filesystem [1]":{"filetype":"neo-tree","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\/.config\/rofi\/bluetooth.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"keystrokes":2,"entry":1725507097,"elapsed_time_sec":0},{"keystrokes":2,"entry":1725507098,"elapsed_time_sec":0},{"keystrokes":24,"entry":1725507099,"elapsed_time_sec":0},{"elapsed_time_sec":51,"keystrokes":17,"entry":1725507114,"exit":1725507165}],"git_project_name":""},"\/dev\/cpu_dma_latency":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t6":{"filetype":"sh","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\/waybar\/scripts\/toggle-brightness.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/dev\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/atuin\/config.toml":{"filetype":"toml","visit_log":[{"elapsed_time_sec":102,"keystrokes":396,"entry":1725873655,"exit":1725873757},{"elapsed_time_sec":21,"keystrokes":266,"entry":1725873887,"exit":1725873908}],"git_project_name":""},"\/home\/ayush\/.config\/i3\/config":{"filetype":"i3config","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/toggle-term.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/.z":{"filetype":"","visit_log":[],"git_project_name":""},"\/etc\/cron.d\/0hourly":{"filetype":"crontab","visit_log":[{"elapsed_time_sec":29,"keystrokes":84,"entry":1726492036,"exit":1726492065},{"elapsed_time_sec":10,"keystrokes":1,"entry":1726492149,"exit":1726492159}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/type-4\/style-2.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/known_hosts.old":{"filetype":"","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\/surfraw\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/mpd\/mpd.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":24,"keystrokes":35,"entry":1725708733,"exit":1725708757}],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/server\/config.js":{"filetype":"javascript","visit_log":[{"keystrokes":0,"entry":1727114768,"elapsed_time_sec":0},{"elapsed_time_sec":12,"keystrokes":9,"entry":1727114768,"exit":1727114780}],"git_project_name":""},"\/home\/archer\/.config\/yazi\/catppuccin\/themes\/mocha.toml":{"filetype":"toml","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"elapsed_time_sec":61679,"keystrokes":345,"entry":1725812230,"exit":1725873909},{"keystrokes":6,"entry":1726143003,"elapsed_time_sec":0},{"elapsed_time_sec":455872,"keystrokes":74,"entry":1726143005,"exit":1726598877},{"elapsed_time_sec":2899,"keystrokes":89,"entry":1726599572,"exit":1726602471},{"elapsed_time_sec":116992,"keystrokes":278,"entry":1726602804,"exit":1726719796},{"elapsed_time_sec":104509,"keystrokes":114,"entry":1726719940,"exit":1726824449}],"git_project_name":""},"\/home\/archer\/Projects\/EdChat\/client\/src\/assets\/data.js":{"filetype":"javascript","visit_log":[{"keystrokes":0,"entry":1725872984,"elapsed_time_sec":0},{"elapsed_time_sec":34,"keystrokes":49,"entry":1725872984,"exit":1725873018},{"keystrokes":0,"entry":1725873020,"elapsed_time_sec":0}],"git_project_name":"EdChat"},"\/home\/archer\/.config\/gitui\/theme.ron":{"filetype":"ron","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/wlogout\/lock.png":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/total.txt":{"filetype":"text","visit_log":[{"keystrokes":0,"entry":1726831030,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726831030,"elapsed_time_sec":0},{"keystrokes":0,"entry":1727076937,"elapsed_time_sec":0},{"elapsed_time_sec":269,"keystrokes":416,"entry":1727076937,"exit":1727077206}],"git_project_name":"hyprdots"},"oil:\/\/\/home\/archer\/.config\/tmux\/plugins\/tmux\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots_legacy\/.config\/bat\/config":{"filetype":"","visit_log":[],"git_project_name":""},"\/etc\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/refs\/heads\/master":{"filetype":"git","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/refs\/heads\/foo":{"filetype":"git","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/dolphinrc":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/startup.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":9,"keystrokes":3,"entry":1726119772,"exit":1726119781},{"elapsed_time_sec":24,"keystrokes":65,"entry":1726120039,"exit":1726120063},{"elapsed_time_sec":55,"keystrokes":21,"entry":1726120152,"exit":1726120207},{"elapsed_time_sec":113,"keystrokes":142,"entry":1726125457,"exit":1726125570},{"elapsed_time_sec":26,"keystrokes":15,"entry":1726125602,"exit":1726125628},{"elapsed_time_sec":58,"keystrokes":91,"entry":1726138860,"exit":1726138918},{"elapsed_time_sec":36,"keystrokes":1,"entry":1726599583,"exit":1726599619}],"git_project_name":""},"\/home\/archer\/.config\/hypr\/current_wallpaper_index":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/dunst\/dunstrc":{"filetype":"conf","visit_log":[{"keystrokes":0,"entry":1725811945,"elapsed_time_sec":0},{"elapsed_time_sec":16,"keystrokes":27,"entry":1725812938,"exit":1725812954},{"elapsed_time_sec":789474,"keystrokes":0,"entry":1725814354,"exit":1726603828},{"elapsed_time_sec":237,"keystrokes":109,"entry":1726720045,"exit":1726720282},{"elapsed_time_sec":44,"keystrokes":25,"entry":1726824403,"exit":1726824447}],"git_project_name":""},"\/dev\/nvme0n1p6":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/data\/data.txt":{"filetype":"text","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/shared\/fonts.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.zshrc0":{"filetype":"zsh","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/treesj.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/mason-lsconfig.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"oil:\/\/\/home\/archer\/.config\/tmux\/plugins\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/README.md":{"filetype":"markdown","visit_log":[{"elapsed_time_sec":46,"keystrokes":236,"entry":1726680588,"exit":1726680634},{"elapsed_time_sec":9,"keystrokes":36,"entry":1726719465,"exit":1726719474},{"elapsed_time_sec":10,"keystrokes":31,"entry":1726723176,"exit":1726723186},{"elapsed_time_sec":31,"keystrokes":86,"entry":1726723249,"exit":1726723280},{"elapsed_time_sec":7,"keystrokes":36,"entry":1726937028,"exit":1726937035}],"git_project_name":"GIT_THINGS"},"\/home\/archer\/.config\/rofi\/forest.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.config\/hypr\/hyprlock.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/scrollbar.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/images\/b.png":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/HEAD":{"filetype":"git","visit_log":[{"elapsed_time_sec":51,"keystrokes":1,"entry":1726683113,"exit":1726683164}],"git_project_name":"GIT_THINGS"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-10.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/yazi\/.config\/yazi\/yazi\/catppuccin\/yazi.tera":{"filetype":"","visit_log":[{"elapsed_time_sec":16,"keystrokes":1,"entry":1726602826,"exit":1726602842}],"git_project_name":""},"\/home\/archer\/Downloads\/AI-docs.txt":{"filetype":"text","visit_log":[{"elapsed_time_sec":80,"keystrokes":68,"entry":1725504911,"exit":1725504991},{"elapsed_time_sec":1515,"keystrokes":29,"entry":1725505580,"exit":1725507095}],"git_project_name":""},"\/home\/archer\/hyprdots\/hypr\/.config\/hypr\/hyprland.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":25,"keystrokes":20,"entry":1726602478,"exit":1726602503},{"keystrokes":0,"entry":1726604189,"elapsed_time_sec":0}],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/kitty\/kitty.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":17,"keystrokes":61,"entry":1726126876,"exit":1726126893},{"elapsed_time_sec":162,"keystrokes":172,"entry":1726135500,"exit":1726135662},{"elapsed_time_sec":9,"keystrokes":40,"entry":1726937326,"exit":1726937335},{"elapsed_time_sec":6,"keystrokes":48,"entry":1726937354,"exit":1726937360}],"git_project_name":""},"\/home\/archer\/.local\/bin\/lockctl\/caps-lock.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/README.md":{"filetype":"markdown","visit_log":[{"elapsed_time_sec":79,"keystrokes":284,"entry":1726060055,"exit":1726060134}],"git_project_name":"dotfiles"},"\/home\/archer\/.local\/bin\/volumectl\/volume-up.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Obsidian Vault\/.github\/workflow\/auto-commit.yml":{"filetype":"yaml","visit_log":[{"elapsed_time_sec":94,"keystrokes":196,"entry":1726757870,"exit":1726757964}],"git_project_name":"Obsidian Vault"},"\/home\/ayush\/Documents\/DSA\/containsDuplicate.cpp":{"filetype":"cpp","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/yazi\/theme.toml":{"filetype":"toml","visit_log":[],"git_project_name":""},"\/usr\/local\/bin\/dunst":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/wlogout\/layout":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/new.pub":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/wlogout\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/search.sh":{"filetype":"sh","visit_log":[{"elapsed_time_sec":15,"keystrokes":0,"entry":1726594123,"exit":1726594138},{"elapsed_time_sec":28,"keystrokes":0,"entry":1726594346,"exit":1726594374},{"elapsed_time_sec":196,"keystrokes":60,"entry":1726594657,"exit":1726594853}],"git_project_name":""},"\/home\/archer\/.config\/X11\/xprofile":{"filetype":"","visit_log":[{"elapsed_time_sec":10,"keystrokes":12,"entry":1726126729,"exit":1726126739}],"git_project_name":""},"\/home\/ayush\/dotfiles\/kitty\/kitty.conf":{"filetype":"conf","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/hyprdots\/.zshrc":{"filetype":"zsh","visit_log":[],"git_project_name":"hyprdots"},"\/etc\/sddm.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/mpd.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/templates\/base.html":{"filetype":"html","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/.config\/hypr\/hyprland.conf":{"filetype":"conf","visit_log":[{"keystrokes":0,"entry":1726138950,"elapsed_time_sec":0}],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/1":{"filetype":"","visit_log":[],"git_project_name":""},"\/tmp\/nvim.archer\/Hcu3qX\/3":{"filetype":"git","visit_log":[{"keystrokes":0,"entry":1726159389,"elapsed_time_sec":0}],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/power.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/new":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/nvim-lspconfig.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/usr\/share\/iso-codes\/json\/iso_3166-1.json":{"filetype":"json","visit_log":[],"git_project_name":""},"\/tmp\/crontab.GvjatC":{"filetype":"crontab","visit_log":[{"keystrokes":0,"entry":1726760530,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/.config\/starship\/starship.toml":{"filetype":"toml","visit_log":[{"elapsed_time_sec":21,"keystrokes":82,"entry":1726167233,"exit":1726167254},{"elapsed_time_sec":10,"keystrokes":32,"entry":1726167402,"exit":1726167412},{"elapsed_time_sec":192,"keystrokes":27,"entry":1726167488,"exit":1726167680},{"elapsed_time_sec":6,"keystrokes":4,"entry":1726425564,"exit":1726425570},{"elapsed_time_sec":121,"keystrokes":130,"entry":1726425596,"exit":1726425717},{"elapsed_time_sec":72,"keystrokes":79,"entry":1726425732,"exit":1726425804},{"keystrokes":0,"entry":1726425821,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726426093,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/ayush\/.ssh\/config":{"filetype":"sshconfig","visit_log":[],"git_project_name":""},"\/home\/archer\/temp.sh":{"filetype":"sh","visit_log":[{"elapsed_time_sec":14,"keystrokes":2,"entry":1726075140,"exit":1726075154},{"elapsed_time_sec":15,"keystrokes":97,"entry":1726077605,"exit":1726077620},{"elapsed_time_sec":40,"keystrokes":20,"entry":1726077692,"exit":1726077732},{"keystrokes":0,"entry":1726077749,"elapsed_time_sec":0},{"elapsed_time_sec":64,"keystrokes":401,"entry":1726077749,"exit":1726077813},{"elapsed_time_sec":16,"keystrokes":94,"entry":1726078446,"exit":1726078462},{"elapsed_time_sec":28,"keystrokes":67,"entry":1726078523,"exit":1726078551},{"elapsed_time_sec":40,"keystrokes":213,"entry":1726078564,"exit":1726078604},{"elapsed_time_sec":37,"keystrokes":71,"entry":1726078672,"exit":1726078709},{"elapsed_time_sec":22,"keystrokes":77,"entry":1726078718,"exit":1726078740},{"elapsed_time_sec":15,"keystrokes":91,"entry":1726078815,"exit":1726078830},{"elapsed_time_sec":51,"keystrokes":126,"entry":1726079901,"exit":1726079952},{"keystrokes":0,"entry":1726080345,"elapsed_time_sec":0},{"elapsed_time_sec":13,"keystrokes":50,"entry":1726414429,"exit":1726414442},{"elapsed_time_sec":28,"keystrokes":49,"entry":1726414561,"exit":1726414589},{"keystrokes":0,"entry":1726414853,"elapsed_time_sec":0},{"elapsed_time_sec":16,"keystrokes":61,"entry":1726492850,"exit":1726492866}],"git_project_name":""},"\/home\/archer\/hyprdots\/mainPackages.txt":{"filetype":"text","visit_log":[{"elapsed_time_sec":54,"keystrokes":111,"entry":1726828960,"exit":1726829014},{"elapsed_time_sec":10,"keystrokes":153,"entry":1726829497,"exit":1726829507},{"elapsed_time_sec":101,"keystrokes":330,"entry":1726829516,"exit":1726829617},{"keystrokes":0,"entry":1726829639,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726829692,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726830041,"elapsed_time_sec":0},{"elapsed_time_sec":382,"keystrokes":557,"entry":1726830045,"exit":1726830427},{"keystrokes":0,"entry":1726830854,"elapsed_time_sec":0},{"elapsed_time_sec":114,"keystrokes":155,"entry":1726830855,"exit":1726830969}],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t1":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/battery-alert.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/surfraw\/conf":{"filetype":"","visit_log":[{"elapsed_time_sec":16,"keystrokes":71,"entry":1726594518,"exit":1726594534}],"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\/Downloads\/Chatbot\/standalone-frontend\/images\/chatbox-icon.svg":{"filetype":"svg","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/nvim\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lazy-lock.json":{"filetype":"json","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/X11\/Xresources":{"filetype":"xdefaults","visit_log":[{"elapsed_time_sec":26,"keystrokes":3,"entry":1725812274,"exit":1725812300},{"elapsed_time_sec":9,"keystrokes":10,"entry":1726055425,"exit":1726055434},{"elapsed_time_sec":51,"keystrokes":15,"entry":1726126671,"exit":1726126722}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/network.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/bin\/apps.sh":{"filetype":"sh","visit_log":[{"elapsed_time_sec":115,"keystrokes":453,"entry":1725690112,"exit":1725690227}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-1.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/.cache\/Homebrew\/Logs\/dbus\/post_install.01.dbus-uuidgen":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/bat\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Default.code-profile":{"filetype":"","visit_log":[],"git_project_name":""},"term:\/\/~\/Documents\/t3_tutorial\/first\/\/6371:\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/data.txt":{"filetype":"text","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/onedark.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.config\/hypr\/hyprland.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/myenv\/pyvenv.cfg":{"filetype":"cfg","visit_log":[],"git_project_name":""},"\/home\/ayush\/Documents\/My Things\/Development\/AyushDumasia\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":"AyushDumasia"},"\/home\/archer\/setup.sh":{"filetype":"sh","visit_log":[{"keystrokes":0,"entry":1725691250,"elapsed_time_sec":0}],"git_project_name":""},"\/dev\/nvram":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/themes\/oxide.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/X11\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"elapsed_time_sec":41,"keystrokes":23,"entry":1726126750,"exit":1726126791}],"git_project_name":""},"\/home\/archer\/.config\/hypridle\/hypridle.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":173,"keystrokes":3,"entry":1725799436,"exit":1725799609},{"elapsed_time_sec":21,"keystrokes":1,"entry":1725873782,"exit":1725873803}],"git_project_name":""},"\/usr\/share\/sddm\/themes\/catppuccin-mocha\/theme.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":13,"keystrokes":8,"entry":1725715541,"exit":1725715554}],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/.config\/vlc\/vlc-qt-interface.conf":{"filetype":"conf","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/Chatbot\/standalone-frontend\/app.js":{"filetype":"javascript","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/pyvenv.cfg":{"filetype":"cfg","visit_log":[],"git_project_name":""},"term:\/\/~\/Downloads\/Chatbot\/\/3422:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":""},"\/home\/archer\/.ssh\/known_hosts":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/pip":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/hyprpaper.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":206,"keystrokes":7,"entry":1725509222,"exit":1725509428},{"keystrokes":0,"entry":1725509430,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232646,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726232704,"elapsed_time_sec":0},{"elapsed_time_sec":22,"keystrokes":1,"entry":1726599682,"exit":1726599704},{"elapsed_time_sec":40,"keystrokes":18,"entry":1726601136,"exit":1726601176},{"elapsed_time_sec":12,"keystrokes":3,"entry":1726601523,"exit":1726601535},{"elapsed_time_sec":11,"keystrokes":2,"entry":1726601590,"exit":1726601601}],"git_project_name":""},"\/home\/archer\/Downloads\/Downloads\/Catppuccin-Dark\/gtk-4.0\/gtk-dark.css":{"filetype":"css","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"elapsed_time_sec":248027,"keystrokes":280,"entry":1726828910,"exit":1727076937}],"git_project_name":"hyprdots"},"\/home\/archer\/.ssh\/config":{"filetype":"sshconfig","visit_log":[{"elapsed_time_sec":51,"keystrokes":176,"entry":1726683710,"exit":1726683761},{"elapsed_time_sec":20,"keystrokes":50,"entry":1726683779,"exit":1726683799},{"elapsed_time_sec":56,"keystrokes":14,"entry":1726684066,"exit":1726684122}],"git_project_name":""},"oil:\/\/\/home\/ayush\/.themes\/Dracula\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/fastfetch\/config.jsonc":{"filetype":"jsonc","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/mocha.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"oil:\/\/\/home\/archer\/Downloads\/Chatbot\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Downloads\/Catppuccin-Dark\/gtk-4.0\/gtk.css":{"filetype":"css","visit_log":[],"git_project_name":""},"\/usr\/bin\/rxfetch":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/usr\/share\/applications\/code-oss.desktop":{"filetype":"desktop","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/gnome-extensions.txt":{"filetype":"text","visit_log":[{"elapsed_time_sec":6,"keystrokes":1,"entry":1725873626,"exit":1725873632}],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/EdChat\/README.md":{"filetype":"markdown","visit_log":[{"keystrokes":0,"entry":1726714591,"elapsed_time_sec":0},{"elapsed_time_sec":15,"keystrokes":36,"entry":1726714591,"exit":1726714606}],"git_project_name":"EdChat"},"\/home\/archer\/.config\/rofi\/powermenu\/type-3\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/usr\/local\/bin\/dunstctl":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/shared\/colors.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/colorschemes.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/nvimtracker.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/waybar\/config.jsonc":{"filetype":"jsonc","visit_log":[{"elapsed_time_sec":190,"keystrokes":167,"entry":1725681874,"exit":1725682064},{"elapsed_time_sec":10,"keystrokes":39,"entry":1726059152,"exit":1726059162},{"keystrokes":0,"entry":1726067838,"elapsed_time_sec":0},{"elapsed_time_sec":283,"keystrokes":83,"entry":1726067951,"exit":1726068234},{"elapsed_time_sec":15,"keystrokes":38,"entry":1726068779,"exit":1726068794},{"keystrokes":0,"entry":1726068797,"elapsed_time_sec":0},{"elapsed_time_sec":412,"keystrokes":432,"entry":1726069487,"exit":1726069899},{"elapsed_time_sec":93,"keystrokes":85,"entry":1726082484,"exit":1726082577},{"keystrokes":0,"entry":1726426414,"elapsed_time_sec":0},{"elapsed_time_sec":265,"keystrokes":302,"entry":1726461588,"exit":1726461853},{"elapsed_time_sec":18,"keystrokes":24,"entry":1726461886,"exit":1726461904},{"elapsed_time_sec":12,"keystrokes":3,"entry":1726463447,"exit":1726463459},{"elapsed_time_sec":487,"keystrokes":732,"entry":1726464532,"exit":1726465019},{"elapsed_time_sec":55,"keystrokes":187,"entry":1726465732,"exit":1726465787},{"elapsed_time_sec":32,"keystrokes":23,"entry":1726470138,"exit":1726470170},{"elapsed_time_sec":53,"keystrokes":30,"entry":1726470868,"exit":1726470921},{"elapsed_time_sec":75,"keystrokes":133,"entry":1726472026,"exit":1726472101},{"elapsed_time_sec":207,"keystrokes":714,"entry":1726472357,"exit":1726472564},{"keystrokes":0,"entry":1726472896,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726473447,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726480508,"elapsed_time_sec":0},{"elapsed_time_sec":6,"keystrokes":12,"entry":1726549464,"exit":1726549470},{"elapsed_time_sec":11,"keystrokes":94,"entry":1726550040,"exit":1726550051},{"elapsed_time_sec":186,"keystrokes":29,"entry":1726550393,"exit":1726550579},{"elapsed_time_sec":184,"keystrokes":187,"entry":1726551026,"exit":1726551210},{"elapsed_time_sec":64,"keystrokes":252,"entry":1726552176,"exit":1726552240},{"keystrokes":0,"entry":1726758516,"elapsed_time_sec":0},{"elapsed_time_sec":64,"keystrokes":43,"entry":1726817920,"exit":1726817984}],"git_project_name":""},"\/home\/ayush\/Documents\/t3_tutorial\/first\/neo-tree filesystem [1]":{"filetype":"neo-tree","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\/.config\/rofi\/scripts\/launcher_t5":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/bat\/config":{"filetype":"","visit_log":[{"elapsed_time_sec":21,"keystrokes":6,"entry":1726603749,"exit":1726603770}],"git_project_name":""},"\/home\/ayush\/.zshrc":{"filetype":"zsh","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/__pycache__\/chat.cpython-310.pyc":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/wlogout\/style.css":{"filetype":"css","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/lualine.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-7.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/usage_data.json":{"filetype":"json","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/wlogout\/power-hover.png":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/swaync\/config.json":{"filetype":"json","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/hypr\/.config\/hypr\/hyprpaper.conf":{"filetype":"conf","visit_log":[],"git_project_name":"hyprdots"},"\/home\/archer\/Projects\/EdChat\/client\/index.html":{"filetype":"html","visit_log":[{"keystrokes":0,"entry":1726979795,"elapsed_time_sec":0}],"git_project_name":"EdChat"},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/activate.fish":{"filetype":"fish","visit_log":[],"git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/refs\/heads\/foo":{"filetype":"git","visit_log":[{"elapsed_time_sec":64,"keystrokes":1,"entry":1726722445,"exit":1726722509}],"git_project_name":"GIT_THINGS"},"\/home\/archer\/.config\/rofi\/colors\/catppuccin.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.ssh\/known_hosts.old":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/id_ed25519":{"filetype":"","visit_log":[],"git_project_name":""},"\/usr\/share\/grub\/themes\/sudo":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/gtk-3.0\/settings.ini":{"filetype":"dosini","visit_log":[{"elapsed_time_sec":129,"keystrokes":52,"entry":1726719796,"exit":1726719925}],"git_project_name":""},"\/home\/archer\/hyprdots\/pacman-packages.txt":{"filetype":"text","visit_log":[{"elapsed_time_sec":190,"keystrokes":348,"entry":1726828700,"exit":1726828890},{"elapsed_time_sec":10,"keystrokes":1,"entry":1726828891,"exit":1726828901}],"git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t3":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/themes\/onedark.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/hyprdots\/sortedPackages.txt":{"filetype":"text","visit_log":[{"elapsed_time_sec":334,"keystrokes":664,"entry":1726830445,"exit":1726830779}],"git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/dotfiles\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"keystrokes":7,"entry":1725873411,"elapsed_time_sec":0},{"keystrokes":2,"entry":1725873414,"elapsed_time_sec":0},{"keystrokes":2,"entry":1725873414,"elapsed_time_sec":0},{"keystrokes":6,"entry":1725873416,"elapsed_time_sec":0},{"elapsed_time_sec":186636,"keystrokes":65,"entry":1725873419,"exit":1726060055}],"git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/Chatbot\/venv\/lib\/python3.12\/site-packages\/pip\/__init__.py":{"filetype":"python","visit_log":[],"git_project_name":""},"oil:\/\/\/home\/archer\/.config\/rofi\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/coq-nvim.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/qt6ct\/qt6ct.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":51,"keystrokes":13,"entry":1726720288,"exit":1726720339}],"git_project_name":""},"\/home\/archer\/.bashrc":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/QtProject.conf":{"filetype":"conf","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-2\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/noice.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/hooks\/commit-msg.sample":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/gitui\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"keystrokes":3,"entry":1725796656,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725796658,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/.config\/kitty\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/ohmyposh\/base.json":{"filetype":"json","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/new-wifi.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/bin\/powermenu.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/starship\/config.jsonc":{"filetype":"jsonc","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/hyprland.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":154,"keystrokes":292,"entry":1725509065,"exit":1725509219},{"elapsed_time_sec":239,"keystrokes":257,"entry":1725681058,"exit":1725681297},{"keystrokes":0,"entry":1725684036,"elapsed_time_sec":0},{"keystrokes":0,"entry":1725685334,"elapsed_time_sec":0},{"elapsed_time_sec":11,"keystrokes":82,"entry":1725686510,"exit":1725686521},{"keystrokes":0,"entry":1725689447,"elapsed_time_sec":0},{"elapsed_time_sec":358,"keystrokes":399,"entry":1725691773,"exit":1725692131},{"elapsed_time_sec":13,"keystrokes":46,"entry":1725709876,"exit":1725709889},{"keystrokes":0,"entry":1725710422,"elapsed_time_sec":0},{"elapsed_time_sec":217,"keystrokes":172,"entry":1725711116,"exit":1725711333},{"elapsed_time_sec":39,"keystrokes":61,"entry":1725799618,"exit":1725799657},{"elapsed_time_sec":31,"keystrokes":154,"entry":1725868390,"exit":1725868421},{"keystrokes":0,"entry":1726072209,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726082660,"elapsed_time_sec":0},{"elapsed_time_sec":67,"keystrokes":147,"entry":1726117232,"exit":1726117299},{"elapsed_time_sec":592,"keystrokes":138,"entry":1726117688,"exit":1726118280},{"elapsed_time_sec":11,"keystrokes":1,"entry":1726118327,"exit":1726118338},{"elapsed_time_sec":41,"keystrokes":69,"entry":1726119731,"exit":1726119772},{"elapsed_time_sec":258,"keystrokes":122,"entry":1726119781,"exit":1726120039},{"elapsed_time_sec":89,"keystrokes":128,"entry":1726120063,"exit":1726120152},{"elapsed_time_sec":30,"keystrokes":4,"entry":1726120207,"exit":1726120237},{"elapsed_time_sec":17,"keystrokes":103,"entry":1726125437,"exit":1726125454},{"elapsed_time_sec":32,"keystrokes":2,"entry":1726125570,"exit":1726125602},{"keystrokes":0,"entry":1726125628,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726138919,"elapsed_time_sec":0},{"elapsed_time_sec":401,"keystrokes":616,"entry":1726139529,"exit":1726139930},{"elapsed_time_sec":1016,"keystrokes":1317,"entry":1726140523,"exit":1726141539},{"keystrokes":0,"entry":1726141542,"elapsed_time_sec":0},{"elapsed_time_sec":15,"keystrokes":86,"entry":1726480041,"exit":1726480056},{"elapsed_time_sec":93,"keystrokes":133,"entry":1726485771,"exit":1726485864},{"keystrokes":0,"entry":1726486237,"elapsed_time_sec":0},{"elapsed_time_sec":326,"keystrokes":109,"entry":1726501812,"exit":1726502138},{"keystrokes":0,"entry":1726503429,"elapsed_time_sec":0},{"elapsed_time_sec":57,"keystrokes":266,"entry":1726505328,"exit":1726505385},{"elapsed_time_sec":19,"keystrokes":37,"entry":1726600529,"exit":1726600548},{"elapsed_time_sec":13,"keystrokes":49,"entry":1726600605,"exit":1726600618},{"elapsed_time_sec":142,"keystrokes":161,"entry":1726600728,"exit":1726600870},{"elapsed_time_sec":18,"keystrokes":7,"entry":1726600995,"exit":1726601013},{"elapsed_time_sec":22,"keystrokes":1,"entry":1726601112,"exit":1726601134},{"elapsed_time_sec":19,"keystrokes":5,"entry":1726601211,"exit":1726601230},{"keystrokes":0,"entry":1726601242,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726601275,"elapsed_time_sec":0},{"elapsed_time_sec":38,"keystrokes":72,"entry":1726601462,"exit":1726601500},{"elapsed_time_sec":20,"keystrokes":26,"entry":1726601570,"exit":1726601590},{"keystrokes":0,"entry":1726601603,"elapsed_time_sec":0},{"elapsed_time_sec":48953,"keystrokes":0,"entry":1726604216,"exit":1726653169},{"elapsed_time_sec":647,"keystrokes":865,"entry":1726817266,"exit":1726817913},{"elapsed_time_sec":85,"keystrokes":162,"entry":1727076630,"exit":1727076715},{"elapsed_time_sec":22,"keystrokes":83,"entry":1727076742,"exit":1727076764}],"git_project_name":""},"\/home\/archer\/.config\/yazi\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/github-copilot\/versions.json":{"filetype":"json","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/static\/images\/about.png":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/auto-session.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/Projects\/EdChat\/client\/src\/Pages\/pieChart.jsx":{"filetype":"javascriptreact","visit_log":[{"keystrokes":0,"entry":1725882468,"elapsed_time_sec":0}],"git_project_name":"EdChat"},"\/home\/archer\/Downloads\/temp.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/clipman\/clipman.conf":{"filetype":"conf","visit_log":[{"elapsed_time_sec":10,"keystrokes":22,"entry":1726120286,"exit":1726120296}],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/README.md":{"filetype":"markdown","visit_log":[{"elapsed_time_sec":69,"keystrokes":116,"entry":1726060456,"exit":1726060525},{"elapsed_time_sec":34,"keystrokes":39,"entry":1726060817,"exit":1726060851},{"elapsed_time_sec":22,"keystrokes":1,"entry":1726159364,"exit":1726159386}],"git_project_name":"hyprdots"},"\/home\/archer\/Projects\/EdChat\/server\/src\/models\/user.model.js":{"filetype":"javascript","visit_log":[{"keystrokes":0,"entry":1726940038,"elapsed_time_sec":0},{"elapsed_time_sec":976,"keystrokes":83,"entry":1726940038,"exit":1726941014},{"keystrokes":0,"entry":1726979804,"elapsed_time_sec":0}],"git_project_name":"EdChat"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t2":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/dunst\/dunst-backup":{"filetype":"","visit_log":[{"elapsed_time_sec":6,"keystrokes":3,"entry":1725811938,"exit":1725811944}],"git_project_name":""},"\/tmp\/crontab.oSjrPO":{"filetype":"crontab","visit_log":[{"elapsed_time_sec":71,"keystrokes":121,"entry":1726758627,"exit":1726758698}],"git_project_name":"Obsidian Vault"},"\/home\/archer\/Downloads\/chatgpt.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/networkmenu.rasi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/bin\/battery.sh":{"filetype":"sh","visit_log":[{"elapsed_time_sec":14,"keystrokes":89,"entry":1726235404,"exit":1726235418}],"git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/copilot.lua":{"filetype":"lua","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/mocha.theme":{"filetype":"php","visit_log":[{"elapsed_time_sec":11,"keystrokes":29,"entry":1726601200,"exit":1726601211}],"git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/chatgpt.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.ssh\/id_ed25519.pub":{"filetype":"","visit_log":[{"elapsed_time_sec":124,"keystrokes":1,"entry":1726683941,"exit":1726684065}],"git_project_name":""},"\/home\/archer\/.config\/rofi\/forest.rofi":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/rofi\/config.rasi":{"filetype":"","visit_log":[{"keystrokes":0,"entry":1726394089,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/.config\/gtk-4.0\/settings.ini":{"filetype":"dosini","visit_log":[{"elapsed_time_sec":68,"keystrokes":101,"entry":1726719948,"exit":1726720016}],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/alpha.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/tagbar.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/usr\/share\/plank\/themes\/Transparent\/dock.theme":{"filetype":"php","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/nltk_utils.py":{"filetype":"python","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"keystrokes":8,"entry":1726118296,"elapsed_time_sec":0},{"keystrokes":4,"entry":1726118300,"elapsed_time_sec":0},{"keystrokes":7,"entry":1726118304,"elapsed_time_sec":0},{"keystrokes":11,"entry":1726118308,"elapsed_time_sec":0},{"keystrokes":7,"entry":1726118342,"elapsed_time_sec":0},{"keystrokes":12,"entry":1726118353,"elapsed_time_sec":0},{"keystrokes":4,"entry":1726118416,"elapsed_time_sec":0},{"elapsed_time_sec":482717,"keystrokes":223,"entry":1726118418,"exit":1726601135},{"elapsed_time_sec":48,"keystrokes":11,"entry":1726601184,"exit":1726601232},{"elapsed_time_sec":290,"keystrokes":74,"entry":1726601233,"exit":1726601523},{"elapsed_time_sec":51629,"keystrokes":18,"entry":1726601535,"exit":1726653164},{"elapsed_time_sec":423618,"keystrokes":37,"entry":1726653169,"exit":1727076787}],"git_project_name":""},"\/home\/archer\/Downloads\/config.jsonc":{"filetype":"jsonc","visit_log":[],"git_project_name":""},"\/home\/archer\/Downloads\/3150703-Analysis and Design of Algorithms.docx":{"filetype":"zip","visit_log":[],"git_project_name":""},"\/home\/archer\/bin\/freetube-wayland.sh":{"filetype":"sh","visit_log":[{"elapsed_time_sec":7,"keystrokes":6,"entry":1726116870,"exit":1726116877}],"git_project_name":""},"\/home\/archer\/.config\/bat\/themes\/Catppuccin Mocha.tmTheme":{"filetype":"xml","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\/Downloads\/Chatbot\/README.md":{"filetype":"markdown","visit_log":[],"git_project_name":""},"\/home\/ayush\/.ssh\/id_ed25519.pub":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/X11\/xprofile.sh":{"filetype":"sh","visit_log":[{"keystrokes":0,"entry":1726126743,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/Obsidian Vault\/New Toy's.md":{"filetype":"markdown","visit_log":[{"elapsed_time_sec":7,"keystrokes":1,"entry":1726906486,"exit":1726906493}],"git_project_name":"Obsidian Vault"},"\/home\/ayush\/dotfiles\/nvim\/lua\/vim-options.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/bin\/element-wayland.sh":{"filetype":"sh","visit_log":[{"elapsed_time_sec":27,"keystrokes":9,"entry":1726116834,"exit":1726116861}],"git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/data.pth":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/colorizer.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/comment.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"\/home\/archer\/.zshrc":{"filetype":"zsh","visit_log":[{"elapsed_time_sec":67,"keystrokes":265,"entry":1725520376,"exit":1725520443},{"elapsed_time_sec":51,"keystrokes":200,"entry":1725691620,"exit":1725691671},{"elapsed_time_sec":38,"keystrokes":83,"entry":1725710823,"exit":1725710861},{"elapsed_time_sec":14,"keystrokes":67,"entry":1725710914,"exit":1725710928},{"elapsed_time_sec":32,"keystrokes":74,"entry":1726058604,"exit":1726058636},{"keystrokes":0,"entry":1726127331,"elapsed_time_sec":0},{"elapsed_time_sec":49,"keystrokes":137,"entry":1726167302,"exit":1726167351},{"keystrokes":0,"entry":1726167466,"elapsed_time_sec":0},{"elapsed_time_sec":29,"keystrokes":163,"entry":1726169221,"exit":1726169250},{"elapsed_time_sec":27,"keystrokes":79,"entry":1726255187,"exit":1726255214},{"elapsed_time_sec":12,"keystrokes":51,"entry":1726255234,"exit":1726255246},{"elapsed_time_sec":26,"keystrokes":106,"entry":1726413087,"exit":1726413113},{"elapsed_time_sec":7,"keystrokes":23,"entry":1726413158,"exit":1726413165},{"elapsed_time_sec":44,"keystrokes":140,"entry":1726594177,"exit":1726594221},{"keystrokes":0,"entry":1726594243,"elapsed_time_sec":0},{"elapsed_time_sec":28,"keystrokes":145,"entry":1726598271,"exit":1726598299},{"elapsed_time_sec":48,"keystrokes":102,"entry":1726599294,"exit":1726599342},{"elapsed_time_sec":22,"keystrokes":111,"entry":1726638940,"exit":1726638962},{"elapsed_time_sec":146,"keystrokes":49,"entry":1726638963,"exit":1726639109},{"elapsed_time_sec":44,"keystrokes":114,"entry":1726684371,"exit":1726684415},{"elapsed_time_sec":62,"keystrokes":55,"entry":1726718984,"exit":1726719046},{"elapsed_time_sec":265,"keystrokes":427,"entry":1726719178,"exit":1726719443},{"elapsed_time_sec":174,"keystrokes":94,"entry":1726719553,"exit":1726719727},{"elapsed_time_sec":38,"keystrokes":181,"entry":1726719729,"exit":1726719767}],"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\/telescope.lua":{"filetype":"lua","visit_log":[],"git_project_name":"dotfiles"},"term:\/\/~\/Downloads\/Chatbot\/\/65801:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/themes\/mocha.conf":{"filetype":"conf","visit_log":[{"keystrokes":0,"entry":1726118353,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/.config\/X11\/xinitrc.sh":{"filetype":"sh","visit_log":[{"keystrokes":0,"entry":1726126790,"elapsed_time_sec":0},{"elapsed_time_sec":12,"keystrokes":1,"entry":1726126791,"exit":1726126803}],"git_project_name":""},"term:\/\/~\/Projects\/EdChat\/\/35654:\/usr\/bin\/zsh;#toggleterm#1":{"filetype":"toggleterm","visit_log":[{"elapsed_time_sec":22,"keystrokes":2,"entry":1725872885,"exit":1725872907},{"elapsed_time_sec":71,"keystrokes":2,"entry":1725872907,"exit":1725872978}],"git_project_name":"EdChat"},"oil:\/\/\/home\/archer\/.config\/tmux\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/dev\/rfkill":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/hypr\/package.json":{"filetype":"json","visit_log":[],"git_project_name":""},"oil:\/\/\/etc\/cron.daily\/":{"filetype":"oil","visit_log":[],"git_project_name":""},"\/home\/archer\/.local\/bin\/backlight.sh":{"filetype":"sh","visit_log":[{"keystrokes":0,"entry":1726483799,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/.local\/bin\/volumectl\/volume-down.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/usr\/share\/grub\/themes\/catppuccin-mocha-grub-theme\/theme.txt":{"filetype":"text","visit_log":[{"keystrokes":0,"entry":1725519182,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/.local\/bin\/brightnessctl\/brightness-down.sh":{"filetype":"sh","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/gtk-3.0\/bookmarks":{"filetype":"","visit_log":[],"git_project_name":""},"\/dev\/tty11":{"filetype":"","visit_log":[],"git_project_name":""},"\/home\/archer\/.config\/waybar\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"elapsed_time_sec":1259154,"keystrokes":305,"entry":1725681866,"exit":1726941020}],"git_project_name":""},"\/home\/archer\/.config\/waybar\/style.css":{"filetype":"css","visit_log":[{"elapsed_time_sec":28,"keystrokes":54,"entry":1726461856,"exit":1726461884},{"elapsed_time_sec":1543,"keystrokes":1091,"entry":1726461904,"exit":1726463447},{"elapsed_time_sec":33,"keystrokes":69,"entry":1726463459,"exit":1726463492},{"elapsed_time_sec":1036,"keystrokes":1266,"entry":1726463496,"exit":1726464532},{"elapsed_time_sec":61,"keystrokes":45,"entry":1726465019,"exit":1726465080},{"elapsed_time_sec":119,"keystrokes":25,"entry":1726465613,"exit":1726465732},{"elapsed_time_sec":25,"keystrokes":103,"entry":1726465787,"exit":1726465812},{"elapsed_time_sec":1334,"keystrokes":1167,"entry":1726468801,"exit":1726470135},{"elapsed_time_sec":23,"keystrokes":38,"entry":1726470173,"exit":1726470196},{"elapsed_time_sec":44,"keystrokes":72,"entry":1726470822,"exit":1726470866},{"elapsed_time_sec":1104,"keystrokes":1631,"entry":1726470922,"exit":1726472026},{"elapsed_time_sec":255,"keystrokes":474,"entry":1726472101,"exit":1726472356},{"keystrokes":0,"entry":1726479963,"elapsed_time_sec":0},{"elapsed_time_sec":152,"keystrokes":319,"entry":1726480864,"exit":1726481016},{"elapsed_time_sec":48,"keystrokes":48,"entry":1726481623,"exit":1726481671},{"keystrokes":0,"entry":1726482246,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726485183,"elapsed_time_sec":0},{"elapsed_time_sec":84,"keystrokes":156,"entry":1726505106,"exit":1726505190},{"elapsed_time_sec":54,"keystrokes":115,"entry":1726543188,"exit":1726543242},{"elapsed_time_sec":10,"keystrokes":86,"entry":1726549453,"exit":1726549463},{"keystrokes":0,"entry":1726549473,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726549814,"elapsed_time_sec":0},{"elapsed_time_sec":37,"keystrokes":81,"entry":1726653185,"exit":1726653222},{"elapsed_time_sec":11,"keystrokes":37,"entry":1726817992,"exit":1726818003},{"keystrokes":0,"entry":1726906326,"elapsed_time_sec":0},{"keystrokes":0,"entry":1726941020,"elapsed_time_sec":0}],"git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/neo-tree filesystem [1]":{"filetype":"neo-tree","visit_log":[{"keystrokes":3,"entry":1726064415,"elapsed_time_sec":0},{"elapsed_time_sec":318734,"keystrokes":69,"entry":1726064422,"exit":1726383156},{"keystrokes":14,"entry":1726383159,"elapsed_time_sec":0},{"elapsed_time_sec":11,"keystrokes":45,"entry":1726383245,"exit":1726383256},{"keystrokes":7,"entry":1726383261,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383264,"elapsed_time_sec":0},{"keystrokes":9,"entry":1726383265,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383268,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383270,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383271,"elapsed_time_sec":0},{"keystrokes":15,"entry":1726383272,"elapsed_time_sec":0},{"keystrokes":9,"entry":1726383277,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383279,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383281,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383282,"elapsed_time_sec":0},{"keystrokes":14,"entry":1726383283,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383290,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383292,"elapsed_time_sec":0},{"keystrokes":4,"entry":1726383293,"elapsed_time_sec":0},{"keystrokes":22,"entry":1726383294,"elapsed_time_sec":0},{"keystrokes":6,"entry":1726383302,"elapsed_time_sec":0},{"keystrokes":21,"entry":1726383303,"elapsed_time_sec":0},{"keystrokes":10,"entry":1726383308,"elapsed_time_sec":0},{"elapsed_time_sec":14,"keystrokes":44,"entry":1726383311,"exit":1726383325},{"keystrokes":6,"entry":1726383334,"elapsed_time_sec":0},{"keystrokes":21,"entry":1726383335,"elapsed_time_sec":0},{"elapsed_time_sec":38,"keystrokes":36,"entry":1726383341,"exit":1726383379}],"git_project_name":"hyprdots"}},"last_cleanup":1726684371} \ No newline at end of file +{"last_cleanup":1727450171,"data":{"":{"visit_log":[{"entry":1726298825,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726332150,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726332151,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726332155,"exit":1726383311,"keystrokes":80,"elapsed_time_sec":51156},{"entry":1726383320,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726383328,"exit":1726383336,"keystrokes":20,"elapsed_time_sec":8},{"entry":1726383376,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726383379,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726394086,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726414428,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726425564,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726425564,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726425596,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726425731,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726425732,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726425820,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726426092,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726426413,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726461585,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726461588,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726473446,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726479959,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726479961,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726480036,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726480507,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726480863,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726482583,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726483794,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726485179,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726485182,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726485756,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726485770,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726491440,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726491441,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726492145,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726492709,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726501810,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726501811,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726505104,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726505327,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726543186,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726549452,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726549813,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726550035,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726550037,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726594238,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726598843,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726598844,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726598847,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726598860,"exit":1726599576,"keystrokes":10,"elapsed_time_sec":716},{"entry":1726599581,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726599651,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726599653,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726599653,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726599654,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726599660,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726599661,"exit":1726599675,"keystrokes":1,"elapsed_time_sec":14},{"entry":1726599675,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726599680,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726599858,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726599863,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726600994,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601109,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601134,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601176,"exit":1726601184,"keystrokes":24,"elapsed_time_sec":8},{"entry":1726601230,"exit":1726601237,"keystrokes":20,"elapsed_time_sec":7},{"entry":1726601274,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601459,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601500,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601506,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601507,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601508,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601509,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601512,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601516,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601518,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601522,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601926,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601928,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601930,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601932,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602024,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602066,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602070,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602095,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602101,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602181,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602465,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602472,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602476,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602631,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602798,"exit":1726602804,"keystrokes":10,"elapsed_time_sec":6},{"entry":1726602824,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726602902,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726603292,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726603336,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726603747,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726603823,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726604112,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726604116,"exit":1726604170,"keystrokes":1,"elapsed_time_sec":54},{"entry":1726604170,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726604186,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726604209,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726604944,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726638817,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726638819,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726638822,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726638824,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726638962,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726639380,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726653163,"exit":1726653172,"keystrokes":6,"elapsed_time_sec":9},{"entry":1726653184,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726659155,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726659156,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726659157,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726659412,"exit":1726659424,"keystrokes":14,"elapsed_time_sec":12},{"entry":1726663883,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726663886,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726663888,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683079,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683079,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683086,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683099,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683104,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683110,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683112,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683765,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683772,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683773,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683775,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683778,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726683940,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726714579,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726714585,"exit":1726714591,"keystrokes":16,"elapsed_time_sec":6},{"entry":1726719464,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726719792,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726719925,"exit":1726719948,"keystrokes":44,"elapsed_time_sec":23},{"entry":1726720016,"exit":1726720037,"keystrokes":15,"elapsed_time_sec":21},{"entry":1726720038,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726720282,"exit":1726720288,"keystrokes":8,"elapsed_time_sec":6},{"entry":1726722436,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726723176,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726723248,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726757867,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726758002,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726758398,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726758514,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726758516,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726816732,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726817919,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726817990,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726824384,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726824389,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726824397,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726824447,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726828698,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726828890,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726828891,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726828901,"exit":1726828910,"keystrokes":4,"elapsed_time_sec":9},{"entry":1726828931,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726828934,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726828941,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726828945,"exit":1726828952,"keystrokes":38,"elapsed_time_sec":7},{"entry":1726829495,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726829513,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726829637,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726829843,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726829869,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726830033,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726830427,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726830444,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726830852,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726831026,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726849467,"exit":1726849473,"keystrokes":22,"elapsed_time_sec":6},{"entry":1726849495,"exit":1726849501,"keystrokes":17,"elapsed_time_sec":6},{"entry":1726849502,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726849535,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726849536,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726849540,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726849544,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726906319,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726906322,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726906324,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726906484,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726936036,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726936076,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726936180,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726936189,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726936193,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726936195,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726936198,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726937027,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726937325,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726937348,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726937350,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726937351,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726937360,"exit":1726937366,"keystrokes":2,"elapsed_time_sec":6},{"entry":1726937368,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726940027,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726940032,"exit":1726940038,"keystrokes":12,"elapsed_time_sec":6},{"entry":1726941019,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726979760,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726979782,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726979783,"exit":1726979795,"keystrokes":18,"elapsed_time_sec":12},{"entry":1726980026,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726984059,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727076629,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727076741,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727076785,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727076786,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727076935,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727114753,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727114755,"exit":1727114766,"keystrokes":41,"elapsed_time_sec":11},{"entry":1727450171,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727450173,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727450336,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727450677,"exit":1727452785,"keystrokes":2,"elapsed_time_sec":2108},{"entry":1727452787,"exit":1727452793,"keystrokes":10,"elapsed_time_sec":6},{"entry":1727452834,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727452897,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727499322,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727499325,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727499351,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727519648,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727521108,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727521109,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727521111,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727590531,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727590534,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727609471,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727610864,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727610870,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727610879,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727610884,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727775223,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727775229,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727796421,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727796422,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727797776,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727798075,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727798856,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727798862,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727798864,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"","git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/.zshrc":{"visit_log":[],"filetype":"zsh","git_project_name":"hyprdots"},"\/etc\/sddm.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/server\/src\/models\/user.model.js":{"visit_log":[{"entry":1726940038,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726940038,"exit":1726941014,"keystrokes":83,"elapsed_time_sec":976},{"entry":1726979804,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"javascript","git_project_name":"EdChat"},"\/home\/archer\/Downloads\/ChatModel\/data\/data.txt":{"visit_log":[],"filetype":"text","git_project_name":""},"\/home\/ayush\/Documents\/DSA\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":"GIT_THINGS"},"\/home\/archer\/Downloads\/ChatModel\/zshrc":{"visit_log":[],"filetype":"zsh","git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/copilot.lua":{"visit_log":[],"filetype":"lua","git_project_name":""},"\/home\/archer\/hyprdots\/starship\/.config\/starship\/starship\/starship.toml":{"visit_log":[{"entry":1726602632,"exit":1726602658,"keystrokes":1,"elapsed_time_sec":26}],"filetype":"toml","git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/dotfiles\/kitty\/kitty.conf":{"visit_log":[],"filetype":"conf","git_project_name":"dotfiles"},"\/home\/archer\/.local\/bin\/brightnessctl\/brightness-down.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/waybar\/scripts\/toggle-brightness.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/dolphinrc":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/hypr\/startup.conf":{"visit_log":[{"entry":1726599583,"exit":1726599619,"keystrokes":1,"elapsed_time_sec":36}],"filetype":"conf","git_project_name":""},"\/home\/archer\/.ssh\/config":{"visit_log":[{"entry":1726683710,"exit":1726683761,"keystrokes":176,"elapsed_time_sec":51},{"entry":1726683779,"exit":1726683799,"keystrokes":50,"elapsed_time_sec":20},{"entry":1726684066,"exit":1726684122,"keystrokes":14,"elapsed_time_sec":56},{"entry":1727840984,"exit":1727841086,"elapsed_time_sec":102,"keystrokes":25}],"filetype":"sshconfig","git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/shared\/fonts.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/X11\/xinitrc.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"term:\/\/~\/Downloads\/Chatbot\/\/65801:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"filetype":"toggleterm","git_project_name":""},"term:\/\/~\/Downloads\/Chatbot\/\/3422:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"filetype":"toggleterm","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/treesj.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/temp.sh":{"visit_log":[{"entry":1726414429,"exit":1726414442,"keystrokes":50,"elapsed_time_sec":13},{"entry":1726414561,"exit":1726414589,"keystrokes":49,"elapsed_time_sec":28},{"entry":1726414853,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726492850,"exit":1726492866,"keystrokes":61,"elapsed_time_sec":16},{"entry":1727452680,"exit":1727452694,"keystrokes":19,"elapsed_time_sec":14}],"filetype":"sh","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/hypr\/mocha.conf":{"visit_log":[{"entry":1726601237,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727076787,"exit":1727076826,"keystrokes":55,"elapsed_time_sec":39}],"filetype":"conf","git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/objects\/62\/d29f1a2581df0d40df3cd75efbf828fe54afe2":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-2.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.local\/bin\/battery-alert.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/auto-session.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t7":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/usr\/bin\/bash":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t1":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/README.md":{"visit_log":[{"entry":1726680588,"exit":1726680634,"keystrokes":236,"elapsed_time_sec":46},{"entry":1726719465,"exit":1726719474,"keystrokes":36,"elapsed_time_sec":9},{"entry":1726723176,"exit":1726723186,"keystrokes":31,"elapsed_time_sec":10},{"entry":1726723249,"exit":1726723280,"keystrokes":86,"elapsed_time_sec":31},{"entry":1726937028,"exit":1726937035,"keystrokes":36,"elapsed_time_sec":7}],"filetype":"markdown","git_project_name":"GIT_THINGS"},"\/home\/archer\/.config\/hypr\/arc\/docs\/getting-started-open-source.md":{"visit_log":[],"filetype":"markdown","git_project_name":""},"\/home\/archer\/.config\/rofi\/forest.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/Documents\/t3_tutorial\/first\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/neo-tree.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/Obsidian Vault\/auto-push.sh":{"visit_log":[{"entry":1726758400,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726758400,"exit":1726758468,"keystrokes":227,"elapsed_time_sec":68}],"filetype":"sh","git_project_name":"Obsidian Vault"},"\/home\/archer\/Downloads\/dotfiles\/README.md":{"visit_log":[],"filetype":"markdown","git_project_name":"dotfiles"},"\/dev\/nvme0n1p6":{"visit_log":[],"filetype":"","git_project_name":""},"oil:\/\/\/home\/archer\/Downloads\/Chatbot\/":{"visit_log":[],"filetype":"oil","git_project_name":""},"\/home\/archer\/Downloads\/Downloads\/Catppuccin-Dark\/gtk-4.0\/gtk.css":{"visit_log":[],"filetype":"css","git_project_name":""},"\/usr\/bin\/rxfetch":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/usr\/share\/applications\/code-oss.desktop":{"visit_log":[],"filetype":"desktop","git_project_name":""},"\/home\/archer\/.config\/yazi\/catppuccin\/themes\/mocha.toml":{"visit_log":[],"filetype":"toml","git_project_name":""},"\/home\/archer\/.config\/neo-tree filesystem [1]":{"visit_log":[{"entry":1726599572,"exit":1726602471,"keystrokes":89,"elapsed_time_sec":2899},{"entry":1726602804,"exit":1726719796,"keystrokes":278,"elapsed_time_sec":116992},{"entry":1726719940,"exit":1726824449,"keystrokes":121,"elapsed_time_sec":104509},{"entry":1727452783,"exit":1727452794,"keystrokes":43,"elapsed_time_sec":11},{"entry":1727452815,"exit":1727452899,"keystrokes":89,"elapsed_time_sec":84}],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.local\/bin\/backlight.sh":{"visit_log":[{"entry":1726483799,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/hypr\/mocha.theme":{"visit_log":[{"entry":1726601200,"exit":1726601211,"keystrokes":29,"elapsed_time_sec":11}],"filetype":"php","git_project_name":""},"\/home\/archer\/.config\/gitui\/theme.ron":{"visit_log":[],"filetype":"ron","git_project_name":""},"\/home\/ayush\/dotfiles\/synth-shell\/synth-shell-greeter.config":{"visit_log":[],"filetype":"conf","git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/hyprdots\/.config\/rofi\/config\/confirm.rasi":{"visit_log":[],"filetype":"","git_project_name":"hyprdots"},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/scripts\/check-updates.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/refs\/heads\/foo":{"visit_log":[],"filetype":"git","git_project_name":""},"\/tmp\/nvim.ayush\/AXansa\/2":{"visit_log":[],"filetype":"git","git_project_name":"AyushDumasia"},"\/home\/archer\/.config\/bat\/themes\/Catppuccin Mocha.tmTheme":{"visit_log":[],"filetype":"xml","git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-10.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/hyprdots\/yazi\/.config\/yazi\/yazi\/catppuccin\/yazi.tera":{"visit_log":[{"entry":1726602826,"exit":1726602842,"keystrokes":1,"elapsed_time_sec":16}],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/style-1.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/swaync\/style.css":{"visit_log":[],"filetype":"css","git_project_name":""},"\/home\/archer\/.config\/rofi\/askpass.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/telescope.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"term:\/\/~\/.config\/nvim\/\/20576:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"filetype":"toggleterm","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lazy-lock.json":{"visit_log":[],"filetype":"json","git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/Chatbot\/standalone-frontend\/images\/chatbox-icon.svg":{"visit_log":[],"filetype":"svg","git_project_name":""},"\/home\/archer\/.config\/yazi\/yazi.toml":{"visit_log":[{"entry":1727610885,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"toml","git_project_name":""},"\/home\/archer\/.config\/yazi\/config.yml":{"visit_log":[{"entry":1727610872,"exit":1727610878,"keystrokes":1,"elapsed_time_sec":6}],"filetype":"yaml","git_project_name":""},"\/home\/ayush\/Documents\/My Things\/Development\/HeistHub\/backend\/src\/controllers\/jobPositions.controller.js":{"visit_log":[],"filetype":"javascript","git_project_name":"Development"},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t2":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/tmp\/crontab.oSjrPO":{"visit_log":[{"entry":1726758627,"exit":1726758698,"keystrokes":121,"elapsed_time_sec":71}],"filetype":"crontab","git_project_name":"Obsidian Vault"},"\/home\/archer\/Downloads\/chatgpt.py":{"visit_log":[],"filetype":"python","git_project_name":""},"\/home\/archer\/.config\/rofi\/networkmenu.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/bin\/battery.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/.config\/hypr\/hyprland.conf":{"visit_log":[],"filetype":"conf","git_project_name":"hyprdots"},"\/tmp\/nvim.archer\/Hcu3qX\/3":{"visit_log":[],"filetype":"git","git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/power.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/.ssh\/new":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/nvim-lspconfig.lua":{"visit_log":[],"filetype":"lua","git_project_name":""},"\/usr\/share\/iso-codes\/json\/iso_3166-1.json":{"visit_log":[],"filetype":"json","git_project_name":""},"\/tmp\/crontab.GvjatC":{"visit_log":[{"entry":1726760530,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"crontab","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/templates\/base.html":{"visit_log":[],"filetype":"html","git_project_name":""},"\/home\/ayush\/.ssh\/config":{"visit_log":[],"filetype":"sshconfig","git_project_name":""},"\/home\/archer\/Downloads\/Downloads\/Catppuccin-Dark\/gtk-4.0\/gtk-dark.css":{"visit_log":[],"filetype":"css","git_project_name":""},"\/home\/archer\/Downloads\/dotfiles\/gnome-extensions.txt":{"visit_log":[],"filetype":"text","git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/colors_ctp.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/X11\/xinitrc":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t4":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/code-flags.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/.config\/rofi\/config.rasi":{"visit_log":[{"entry":1726394089,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727609476,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/forest.rofi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.ssh\/id_ed25519.pub":{"visit_log":[{"entry":1726683941,"exit":1726684065,"keystrokes":1,"elapsed_time_sec":124}],"filetype":"","git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/chatgpt.py":{"visit_log":[],"filetype":"python","git_project_name":""},"oil:\/\/\/home\/archer\/.config\/tmux\/plugins\/":{"visit_log":[],"filetype":"oil","git_project_name":""},"\/home\/archer\/.config\/kitty\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/ayush\/dotfiles\/ohmyposh\/base.json":{"visit_log":[],"filetype":"json","git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/new-wifi.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/model.py":{"visit_log":[],"filetype":"python","git_project_name":""},"\/home\/archer\/.config\/starship\/config.jsonc":{"visit_log":[],"filetype":"jsonc","git_project_name":""},"\/home\/archer\/.config\/hypr\/hyprland.conf":{"visit_log":[{"entry":1726480041,"exit":1726480056,"keystrokes":86,"elapsed_time_sec":15},{"entry":1726485771,"exit":1726485864,"keystrokes":133,"elapsed_time_sec":93},{"entry":1726486237,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726501812,"exit":1726502138,"keystrokes":109,"elapsed_time_sec":326},{"entry":1726503429,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726505328,"exit":1726505385,"keystrokes":266,"elapsed_time_sec":57},{"entry":1726600529,"exit":1726600548,"keystrokes":37,"elapsed_time_sec":19},{"entry":1726600605,"exit":1726600618,"keystrokes":49,"elapsed_time_sec":13},{"entry":1726600728,"exit":1726600870,"keystrokes":161,"elapsed_time_sec":142},{"entry":1726600995,"exit":1726601013,"keystrokes":7,"elapsed_time_sec":18},{"entry":1726601112,"exit":1726601134,"keystrokes":1,"elapsed_time_sec":22},{"entry":1726601211,"exit":1726601230,"keystrokes":5,"elapsed_time_sec":19},{"entry":1726601242,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601275,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726601462,"exit":1726601500,"keystrokes":72,"elapsed_time_sec":38},{"entry":1726601570,"exit":1726601590,"keystrokes":26,"elapsed_time_sec":20},{"entry":1726601603,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726604216,"exit":1726653169,"keystrokes":0,"elapsed_time_sec":48953},{"entry":1726817266,"exit":1726817913,"keystrokes":865,"elapsed_time_sec":647},{"entry":1727076630,"exit":1727076715,"keystrokes":162,"elapsed_time_sec":85},{"entry":1727076742,"exit":1727076764,"keystrokes":83,"elapsed_time_sec":22},{"entry":1727450337,"exit":1727450677,"keystrokes":360,"elapsed_time_sec":340},{"entry":1727450681,"exit":1727451269,"keystrokes":22,"elapsed_time_sec":588},{"entry":1727519649,"exit":1727519805,"keystrokes":187,"elapsed_time_sec":156},{"entry":1727521014,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727521112,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727796423,"exit":1727796640,"keystrokes":163,"elapsed_time_sec":217}],"filetype":"conf","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":"dotfiles"},"\/home\/archer\/Projects\/hyprdots\/.config\/eww\/wallpapers\/arin.png":{"visit_log":[],"filetype":"","git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/style-5.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/server\/src\/utils\/ApiResponse.utils.js":{"visit_log":[],"filetype":"javascript","git_project_name":"EdChat"},"\/home\/archer\/.config\/rofi\/catppuccin.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.local\/bin\/battery-charging.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/bufferline.lua":{"visit_log":[],"filetype":"lua","git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/gitui\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/hooks\/commit-msg.sample":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-2\/powermenu.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/hyprdots\/yazi\/.config\/yazi\/yazi\/catppuccin\/themes\/mocha.toml":{"visit_log":[],"filetype":"toml","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/README.md":{"visit_log":[],"filetype":"markdown","git_project_name":""},"\/home\/ayush\/.ssh\/id_ed25519.pub":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/README.md":{"visit_log":[{"entry":1726714591,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726714591,"exit":1726714606,"keystrokes":36,"elapsed_time_sec":15}],"filetype":"markdown","git_project_name":"EdChat"},"\/home\/archer\/.config\/QtProject.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/.config\/wlogout\/power-hover.png":{"visit_log":[],"filetype":"","git_project_name":""},"oil:\/\/\/home\/ayush\/.themes\/Dracula\/":{"visit_log":[],"filetype":"oil","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/noice.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/hyprdots\/neo-tree filesystem [1]":{"visit_log":[{"entry":1726828910,"exit":1727076937,"keystrokes":280,"elapsed_time_sec":248027}],"filetype":"neo-tree","git_project_name":"hyprdots"},"\/home\/archer\/.config\/X11\/xprofile.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/yazi\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/shared\/theme.bash":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/vim-options.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/ayush\/.ssh\/known_hosts":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/dotfiles\/fastfetch\/config.jsonc":{"visit_log":[],"filetype":"jsonc","git_project_name":"dotfiles"},"\/home\/archer\/.config\/swaync\/config.json":{"visit_log":[],"filetype":"json","git_project_name":""},"\/home\/archer\/search.sh":{"visit_log":[{"entry":1726594123,"exit":1726594138,"keystrokes":0,"elapsed_time_sec":15},{"entry":1726594346,"exit":1726594374,"keystrokes":0,"elapsed_time_sec":28},{"entry":1726594657,"exit":1726594853,"keystrokes":60,"elapsed_time_sec":196}],"filetype":"sh","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/train.py":{"visit_log":[],"filetype":"python","git_project_name":""},"\/home\/archer\/.config\/hypr\/mocha.config":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/dunst\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"term:\/\/~\/Downloads\/Chatbot\/\/66793:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"filetype":"toggleterm","git_project_name":""},"\/home\/ayush\/dotfiles\/synth-shell\/alias.sh":{"visit_log":[],"filetype":"sh","git_project_name":"dotfiles"},"\/home\/ayush\/.config\/hypr\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/hyprdots\/.gitignore":{"visit_log":[{"entry":1726849474,"exit":1726849490,"keystrokes":63,"elapsed_time_sec":16},{"entry":1726849532,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"gitignore","git_project_name":"hyprdots"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/alpha.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/dotfiles\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":"dotfiles"},"\/home\/archer\/Obsidian Vault\/.github\/workflow\/auto-commit.yml":{"visit_log":[{"entry":1726757870,"exit":1726757964,"keystrokes":196,"elapsed_time_sec":94}],"filetype":"yaml","git_project_name":"Obsidian Vault"},"\/home\/archer\/.config\/hypr\/exports.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/HEAD":{"visit_log":[{"entry":1726683090,"exit":1726683099,"keystrokes":1,"elapsed_time_sec":9},{"entry":1726936181,"exit":1726936189,"keystrokes":30,"elapsed_time_sec":8}],"filetype":"git","git_project_name":""},"\/home\/archer\/.config\/waybar\/scripts\/change-wallpaper.sh":{"visit_log":[{"entry":1726298827,"exit":1726298875,"keystrokes":186,"elapsed_time_sec":48},{"entry":1726299445,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"sh","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/index.html":{"visit_log":[],"filetype":"html","git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/.config\/QtProject.conf":{"visit_log":[],"filetype":"conf","git_project_name":"hyprdots"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/smooth-scroll.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/Projects\/EdChat\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":"EdChat"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/colorschemes.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/Projects\/hyprdots\/.config\/greenclip.toml":{"visit_log":[],"filetype":"toml","git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/activate":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/.config\/X11\/xresources":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-4\/powermenu.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/blue.sh":{"visit_log":[{"entry":1727797776,"exit":1727797782,"keystrokes":27,"elapsed_time_sec":6},{"entry":1727798081,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727798137,"exit":1727798177,"elapsed_time_sec":40,"keystrokes":191}],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/starship\/starship.toml":{"visit_log":[{"entry":1726425564,"exit":1726425570,"keystrokes":4,"elapsed_time_sec":6},{"entry":1726425596,"exit":1726425717,"keystrokes":130,"elapsed_time_sec":121},{"entry":1726425732,"exit":1726425804,"keystrokes":79,"elapsed_time_sec":72},{"entry":1726425821,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726426093,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"toml","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/nvimtracker.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/applets\/shared\/colors.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/dev\/nvram":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/gtk-4.0\/settings.ini":{"visit_log":[{"entry":1726719948,"exit":1726720016,"keystrokes":101,"elapsed_time_sec":68}],"filetype":"dosini","git_project_name":""},"\/home\/archer\/.config\/rofi\/colors\/black.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/dotfiles\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":"dotfiles"},"\/home\/archer\/.config\/waybar\/config.jsonc":{"visit_log":[{"entry":1726426414,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726461588,"exit":1726461853,"keystrokes":302,"elapsed_time_sec":265},{"entry":1726461886,"exit":1726461904,"keystrokes":24,"elapsed_time_sec":18},{"entry":1726463447,"exit":1726463459,"keystrokes":3,"elapsed_time_sec":12},{"entry":1726464532,"exit":1726465019,"keystrokes":732,"elapsed_time_sec":487},{"entry":1726465732,"exit":1726465787,"keystrokes":187,"elapsed_time_sec":55},{"entry":1726470138,"exit":1726470170,"keystrokes":23,"elapsed_time_sec":32},{"entry":1726470868,"exit":1726470921,"keystrokes":30,"elapsed_time_sec":53},{"entry":1726472026,"exit":1726472101,"keystrokes":133,"elapsed_time_sec":75},{"entry":1726472357,"exit":1726472564,"keystrokes":714,"elapsed_time_sec":207},{"entry":1726472896,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726473447,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726480508,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726549464,"exit":1726549470,"keystrokes":12,"elapsed_time_sec":6},{"entry":1726550040,"exit":1726550051,"keystrokes":94,"elapsed_time_sec":11},{"entry":1726550393,"exit":1726550579,"keystrokes":29,"elapsed_time_sec":186},{"entry":1726551026,"exit":1726551210,"keystrokes":187,"elapsed_time_sec":184},{"entry":1726552176,"exit":1726552240,"keystrokes":252,"elapsed_time_sec":64},{"entry":1726758516,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726817920,"exit":1726817984,"keystrokes":43,"elapsed_time_sec":64},{"entry":1727499352,"exit":1727499384,"keystrokes":36,"elapsed_time_sec":32}],"filetype":"jsonc","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/bufferline.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/.config\/nvim\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/usr\/share\/plank\/themes\/Transparent\/dock.theme":{"visit_log":[],"filetype":"php","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/nltk_utils.py":{"visit_log":[],"filetype":"python","git_project_name":""},"\/home\/archer\/.config\/hypr\/neo-tree filesystem [1]":{"visit_log":[{"entry":1726601184,"exit":1726601232,"keystrokes":11,"elapsed_time_sec":48},{"entry":1726601233,"exit":1726601523,"keystrokes":74,"elapsed_time_sec":290},{"entry":1726601535,"exit":1726653164,"keystrokes":18,"elapsed_time_sec":51629},{"entry":1726653169,"exit":1727796422,"keystrokes":78,"elapsed_time_sec":1143253}],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/Downloads\/config.jsonc":{"visit_log":[],"filetype":"jsonc","git_project_name":""},"\/home\/archer\/Downloads\/Downloads\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/colors\/catppuccin.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-7.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/activate.fish":{"visit_log":[],"filetype":"fish","git_project_name":""},"\/etc\/bluetooth\/main.conf":{"visit_log":[{"entry":1727785547,"exit":1727785560,"keystrokes":138,"elapsed_time_sec":13}],"filetype":"conf","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/usage_data.json":{"visit_log":[],"filetype":"json","git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/applets\/bin\/apps.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/client\/src\/Pages\/pieChart.jsx":{"visit_log":[],"filetype":"javascriptreact","git_project_name":"EdChat"},"\/home\/archer\/hyprdots\/hypr\/.config\/hypr\/hyprland.conf":{"visit_log":[{"entry":1726602478,"exit":1726602503,"keystrokes":20,"elapsed_time_sec":25},{"entry":1726604189,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"conf","git_project_name":"hyprdots"},"\/home\/archer\/.config\/gtk-3.0\/settings.ini":{"visit_log":[{"entry":1726719796,"exit":1726719925,"keystrokes":52,"elapsed_time_sec":129}],"filetype":"dosini","git_project_name":""},"\/home\/archer\/.zshrc0":{"visit_log":[],"filetype":"zsh","git_project_name":""},"\/home\/archer\/Obsidian Vault\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":"Obsidian Vault"},"\/usr\/local\/bin\/dunstctl":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/ayush\/Documents\/DSA\/containsDuplicate.cpp":{"visit_log":[],"filetype":"cpp","git_project_name":""},"\/home\/archer\/.config\/bat\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/yazi\/theme.toml":{"visit_log":[],"filetype":"toml","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/completions.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/Chatbot\/intents.json":{"visit_log":[],"filetype":"json","git_project_name":""},"\/home\/archer\/.config\/X11\/xprofile":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/hyprdots\/pacman-packages.txt":{"visit_log":[{"entry":1726828700,"exit":1726828890,"keystrokes":348,"elapsed_time_sec":190},{"entry":1726828891,"exit":1726828901,"keystrokes":1,"elapsed_time_sec":10}],"filetype":"text","git_project_name":"hyprdots"},"\/home\/archer\/.config\/swaync\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/gitui\/theme.con":{"visit_log":[],"filetype":"cterm","git_project_name":""},"\/home\/archer\/Downloads\/hyprdots\/.config\/rofi\/config\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":"hyprdots"},"\/home\/archer\/.config\/waybar\/scripts\/check-updates.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/ayush\/dotfiles\/README.md":{"visit_log":[],"filetype":"markdown","git_project_name":"dotfiles"},"\/home\/archer\/.config\/nvim\/lua\/plugins\/alpha.lua":{"visit_log":[],"filetype":"lua","git_project_name":""},"\/home\/archer\/.config\/dunst\/dunst-backup":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t3":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/refs\/heads\/master":{"visit_log":[],"filetype":"git","git_project_name":""},"\/home\/ayush\/Documents\/t3_tutorial\/first\/src\/pages\/_app.tsx":{"visit_log":[],"filetype":"typescriptreact","git_project_name":""},"\/home\/archer\/.config\/rofi\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/ayush\/dotfiles\/kitty\/kitty.conf.bak":{"visit_log":[],"filetype":"conf","git_project_name":"dotfiles"},"\/home\/archer\/Projects\/hyprdots_legacy\/.config\/bat\/config":{"visit_log":[],"filetype":"","git_project_name":""},"\/etc\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/rofi\/1":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/mocha.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/refs\/heads\/foo":{"visit_log":[{"entry":1726722445,"exit":1726722509,"keystrokes":1,"elapsed_time_sec":64}],"filetype":"git","git_project_name":"GIT_THINGS"},"\/usr\/share\/sddm\/themes\/catppuccin-mocha\/theme.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/.config\/dunst\/dunstrc":{"visit_log":[{"entry":1726720045,"exit":1726720282,"keystrokes":109,"elapsed_time_sec":237},{"entry":1726824403,"exit":1726824447,"keystrokes":25,"elapsed_time_sec":44}],"filetype":"conf","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/static\/images\/about.png":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/hypr\/hyprwallpaper\/tropic_island_evening.jpg":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/nvim-lspconfig.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/.config\/rofi\/themes\/onedark.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/dconf\/user":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.zshrc":{"visit_log":[{"entry":1726255187,"exit":1726255214,"keystrokes":79,"elapsed_time_sec":27},{"entry":1726255234,"exit":1726255246,"keystrokes":51,"elapsed_time_sec":12},{"entry":1726413087,"exit":1726413113,"keystrokes":106,"elapsed_time_sec":26},{"entry":1726413158,"exit":1726413165,"keystrokes":23,"elapsed_time_sec":7},{"entry":1726594177,"exit":1726594221,"keystrokes":140,"elapsed_time_sec":44},{"entry":1726594243,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726598271,"exit":1726598299,"keystrokes":145,"elapsed_time_sec":28},{"entry":1726599294,"exit":1726599342,"keystrokes":102,"elapsed_time_sec":48},{"entry":1726638940,"exit":1726638962,"keystrokes":111,"elapsed_time_sec":22},{"entry":1726638963,"exit":1726639109,"keystrokes":49,"elapsed_time_sec":146},{"entry":1726684371,"exit":1726684415,"keystrokes":114,"elapsed_time_sec":44},{"entry":1726718984,"exit":1726719046,"keystrokes":55,"elapsed_time_sec":62},{"entry":1726719178,"exit":1726719443,"keystrokes":427,"elapsed_time_sec":265},{"entry":1726719553,"exit":1726719727,"keystrokes":94,"elapsed_time_sec":174},{"entry":1726719729,"exit":1726719767,"keystrokes":181,"elapsed_time_sec":38}],"filetype":"zsh","git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/treesj.lua":{"visit_log":[],"filetype":"lua","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/colorizer.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/Downloads\/Chatbot\/data.pth":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/powermenu_t1":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/bin\/freetube-wayland.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/mason-lsconfig.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/.config\/hypr\/themes\/mocha.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/auto-pairs.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"term:\/\/~\/Projects\/EdChat\/\/35654:\/usr\/bin\/zsh;#toggleterm#1":{"visit_log":[],"filetype":"toggleterm","git_project_name":"EdChat"},"\/home\/archer\/hyprdots\/sortedPackages.txt":{"visit_log":[{"entry":1726830445,"exit":1726830779,"keystrokes":664,"elapsed_time_sec":334}],"filetype":"text","git_project_name":"hyprdots"},"\/home\/archer\/.config\/hypr\/package.json":{"visit_log":[],"filetype":"json","git_project_name":""},"\/home\/archer\/Obsidian Vault\/New Toy's.md":{"visit_log":[{"entry":1726906486,"exit":1726906493,"keystrokes":1,"elapsed_time_sec":7}],"filetype":"markdown","git_project_name":"Obsidian Vault"},"\/home\/ayush\/.config\/i3\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.local\/bin\/volumectl\/volume-down.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/tmp\/crontab.9S4eur":{"visit_log":[{"entry":1726492687,"exit":1726492709,"keystrokes":0,"elapsed_time_sec":22},{"entry":1726492712,"exit":1726492802,"keystrokes":65,"elapsed_time_sec":90}],"filetype":"crontab","git_project_name":""},"\/home\/ayush\/.config\/hypr\/hyprlock.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/.local\/bin\/volumectl\/volume-up.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/dev\/tty11":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/waybar\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/waybar\/style.css":{"visit_log":[{"entry":1726461856,"exit":1726461884,"keystrokes":54,"elapsed_time_sec":28},{"entry":1726461904,"exit":1726463447,"keystrokes":1091,"elapsed_time_sec":1543},{"entry":1726463459,"exit":1726463492,"keystrokes":69,"elapsed_time_sec":33},{"entry":1726463496,"exit":1726464532,"keystrokes":1266,"elapsed_time_sec":1036},{"entry":1726465019,"exit":1726465080,"keystrokes":45,"elapsed_time_sec":61},{"entry":1726465613,"exit":1726465732,"keystrokes":25,"elapsed_time_sec":119},{"entry":1726465787,"exit":1726465812,"keystrokes":103,"elapsed_time_sec":25},{"entry":1726468801,"exit":1726470135,"keystrokes":1167,"elapsed_time_sec":1334},{"entry":1726470173,"exit":1726470196,"keystrokes":38,"elapsed_time_sec":23},{"entry":1726470822,"exit":1726470866,"keystrokes":72,"elapsed_time_sec":44},{"entry":1726470922,"exit":1726472026,"keystrokes":1631,"elapsed_time_sec":1104},{"entry":1726472101,"exit":1726472356,"keystrokes":474,"elapsed_time_sec":255},{"entry":1726479963,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726480864,"exit":1726481016,"keystrokes":319,"elapsed_time_sec":152},{"entry":1726481623,"exit":1726481671,"keystrokes":48,"elapsed_time_sec":48},{"entry":1726482246,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726485183,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726505106,"exit":1726505190,"keystrokes":156,"elapsed_time_sec":84},{"entry":1726543188,"exit":1726543242,"keystrokes":115,"elapsed_time_sec":54},{"entry":1726549453,"exit":1726549463,"keystrokes":86,"elapsed_time_sec":10},{"entry":1726549473,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726549814,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726653185,"exit":1726653222,"keystrokes":81,"elapsed_time_sec":37},{"entry":1726817992,"exit":1726818003,"keystrokes":37,"elapsed_time_sec":11},{"entry":1726906326,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726941020,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727450174,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727499326,"exit":1727499347,"keystrokes":15,"elapsed_time_sec":21},{"entry":1727798865,"exit":1727798941,"keystrokes":30,"elapsed_time_sec":76}],"filetype":"css","git_project_name":""},"\/home\/archer\/Projects\/hyprdots\/neo-tree filesystem [1]":{"visit_log":[{"entry":1726383159,"keystrokes":14,"elapsed_time_sec":0},{"entry":1726383245,"exit":1726383256,"keystrokes":45,"elapsed_time_sec":11},{"entry":1726383261,"keystrokes":7,"elapsed_time_sec":0},{"entry":1726383264,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383265,"keystrokes":9,"elapsed_time_sec":0},{"entry":1726383268,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383270,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383271,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383272,"keystrokes":15,"elapsed_time_sec":0},{"entry":1726383277,"keystrokes":9,"elapsed_time_sec":0},{"entry":1726383279,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383281,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383282,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383283,"keystrokes":14,"elapsed_time_sec":0},{"entry":1726383290,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383292,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383293,"keystrokes":4,"elapsed_time_sec":0},{"entry":1726383294,"keystrokes":22,"elapsed_time_sec":0},{"entry":1726383302,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383303,"keystrokes":21,"elapsed_time_sec":0},{"entry":1726383308,"keystrokes":10,"elapsed_time_sec":0},{"entry":1726383311,"exit":1726383325,"keystrokes":44,"elapsed_time_sec":14},{"entry":1726383334,"keystrokes":6,"elapsed_time_sec":0},{"entry":1726383335,"keystrokes":21,"elapsed_time_sec":0},{"entry":1726383341,"exit":1726383379,"keystrokes":36,"elapsed_time_sec":38}],"filetype":"neo-tree","git_project_name":"hyprdots"},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/logs\/refs\/heads\/master":{"visit_log":[],"filetype":"git","git_project_name":""},"\/home\/archer\/.config\/waybar\/mocha.css":{"visit_log":[],"filetype":"css","git_project_name":""},"\/home\/archer\/hyprdots\/hyprland\/.config\/hypr\/exports.conf":{"visit_log":[],"filetype":"conf","git_project_name":"hyprdots"},"\/home\/archer\/.config\/spotify-tui\/.spotify_token_cache.json":{"visit_log":[{"entry":1727452824,"exit":1727452833,"keystrokes":3,"elapsed_time_sec":9},{"entry":1727452899,"exit":1727452915,"keystrokes":28,"elapsed_time_sec":16}],"filetype":"json","git_project_name":""},"\/home\/ayush\/.themes\/Dracula\/README.md":{"visit_log":[],"filetype":"markdown","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/lualine.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/Projects\/hyprdots\/.config\/vlc\/vlc-qt-interface.conf":{"visit_log":[],"filetype":"conf","git_project_name":"hyprdots"},"\/home\/archer\/Downloads\/Chatbot\/chat.py":{"visit_log":[],"filetype":"python","git_project_name":""},"\/etc\/theme.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/usr\/local\/bin\/starship":{"visit_log":[],"filetype":"","git_project_name":""},"oil:\/\/\/home\/archer\/.config\/tmux\/plugins\/tmux\/":{"visit_log":[],"filetype":"oil","git_project_name":""},"\/home\/archer\/.config\/wlogout\/lock.png":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/bat\/config":{"visit_log":[{"entry":1726603749,"exit":1726603770,"keystrokes":6,"elapsed_time_sec":21}],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t5":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/dev\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/gtk-3.0\/bookmarks":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/network.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/mpd.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/hyprdots\/hypr\/.config\/hypr\/hyprpaper.conf":{"visit_log":[],"filetype":"conf","git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/themes":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/Downloads\/3150703-Analysis and Design of Algorithms.docx":{"visit_log":[],"filetype":"zip","git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/auto-pairs.lua":{"visit_log":[],"filetype":"lua","git_project_name":""},"\/home\/ayush\/.zshrc":{"visit_log":[],"filetype":"zsh","git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/type-4\/style-2.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/.ssh\/known_hosts.old":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/a.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/server\/config.js":{"visit_log":[{"entry":1727114768,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727114768,"exit":1727114780,"keystrokes":9,"elapsed_time_sec":12}],"filetype":"javascript","git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-3\/powermenu.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/github-copilot\/versions.json":{"visit_log":[],"filetype":"json","git_project_name":""},"\/home\/archer\/.config\/atuin\/config.toml":{"visit_log":[],"filetype":"toml","git_project_name":""},"\/home\/archer\/Downloads\/AI-docs.txt":{"visit_log":[],"filetype":"text","git_project_name":""},"\/home\/archer\/.z":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/src\/Pages\/Chat.jsx":{"visit_log":[],"filetype":"javascriptreact","git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-3\/style-5.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/standalone-frontend\/app.js":{"visit_log":[],"filetype":"javascript","git_project_name":""},"\/usr\/local\/bin\/nitch":{"visit_log":[],"filetype":"","git_project_name":""},"\/usr\/share\/grub\/themes\/catppuccin-mocha-grub-theme\/theme.txt":{"visit_log":[],"filetype":"text","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/pyvenv.cfg":{"visit_log":[],"filetype":"cfg","git_project_name":""},"\/home\/archer\/.config\/surfraw\/conf":{"visit_log":[{"entry":1726594518,"exit":1726594534,"keystrokes":71,"elapsed_time_sec":16}],"filetype":"","git_project_name":""},"\/home\/archer\/.ssh\/known_hosts":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/bin\/pip":{"visit_log":[],"filetype":"python","git_project_name":""},"\/home\/archer\/.config\/hypr\/hyprpaper.conf":{"visit_log":[{"entry":1726599682,"exit":1726599704,"keystrokes":1,"elapsed_time_sec":22},{"entry":1726601136,"exit":1726601176,"keystrokes":18,"elapsed_time_sec":40},{"entry":1726601523,"exit":1726601535,"keystrokes":3,"elapsed_time_sec":12},{"entry":1726601590,"exit":1726601601,"keystrokes":2,"elapsed_time_sec":11}],"filetype":"conf","git_project_name":""},"\/home\/archer\/.config\/rofi\/bluetooth.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/Downloads\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/dev\/cpu_dma_latency":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/scripts\/launcher_t6":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/launcher.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/kitty\/kitty.conf":{"visit_log":[{"entry":1726937326,"exit":1726937335,"keystrokes":40,"elapsed_time_sec":9},{"entry":1726937354,"exit":1726937360,"keystrokes":48,"elapsed_time_sec":6}],"filetype":"conf","git_project_name":""},"\/home\/archer\/.local\/bin\/lockctl\/caps-lock.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/usr\/share\/grub\/themes\/sudo":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/.ssh\/id_ed25519":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.ssh\/known_hosts.old":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/dotfiles\/kitty\/kitty.conf":{"visit_log":[],"filetype":"conf","git_project_name":"dotfiles"},"\/home\/archer\/bin\/element-wayland.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/nvim\/lua\/plugins\/toggle-term.lua":{"visit_log":[],"filetype":"lua","git_project_name":""},"\/usr\/share\/sddm\/themes\/catppuccin-mocha\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/X11\/Xresources":{"visit_log":[],"filetype":"xdefaults","git_project_name":""},"\/home\/archer\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-1.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/powermenu\/type-5\/powermenu.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/ayush\/.cache\/Homebrew\/Logs\/dbus\/post_install.01.dbus-uuidgen":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.local\/bin\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/data.txt":{"visit_log":[],"filetype":"text","git_project_name":""},"\/home\/archer\/.config\/rofi\/onedark.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/.config\/hypr\/hyprland.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/Downloads\/ChatModel\/myenv\/pyvenv.cfg":{"visit_log":[],"filetype":"cfg","git_project_name":""},"\/home\/ayush\/.ssh\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/rofi\/applets\/bin\/powermenu.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/ayush\/Documents\/My Things\/Development\/AyushDumasia\/README.md":{"visit_log":[],"filetype":"markdown","git_project_name":"AyushDumasia"},"term:\/\/~\/Documents\/t3_tutorial\/first\/\/6371:\/bin\/zsh;#toggleterm#1":{"visit_log":[],"filetype":"toggleterm","git_project_name":""},"\/home\/ayush\/.config\/i3\/config":{"visit_log":[],"filetype":"i3config","git_project_name":""},"\/home\/archer\/setup.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/rofi\/themes\/oxide.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/X11\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/wlogout\/style.css":{"visit_log":[],"filetype":"css","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/__pycache__\/chat.cpython-310.pyc":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/init.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/.config\/wlogout\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/ayush\/.ssh\/new.pub":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/wlogout\/layout":{"visit_log":[],"filetype":"","git_project_name":""},"\/usr\/local\/bin\/dunst":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/hyprdots\/total.txt":{"visit_log":[{"entry":1726831030,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726831030,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727076937,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727076937,"exit":1727077206,"keystrokes":416,"elapsed_time_sec":269}],"filetype":"text","git_project_name":"hyprdots"},"\/home\/archer\/.config\/mpd\/mpd.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/usr\/share\/nvim\/runtime\/doc\/help.txt":{"visit_log":[],"filetype":"help","git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-6\/launcher.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.local\/bin\/brightnessctl\/brightness-up.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/client\/src\/assets\/data.js":{"visit_log":[],"filetype":"javascript","git_project_name":"EdChat"},"\/usr\/share\/rofi\/themes\/catppuccin.rasi":{"visit_log":[{"entry":1726507975,"exit":1726508289,"keystrokes":152,"elapsed_time_sec":314},{"entry":1727609491,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/client\/index.html":{"visit_log":[{"entry":1726979795,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"html","git_project_name":"EdChat"},"\/home\/archer\/hyprdots\/mainPackages.txt":{"visit_log":[{"entry":1726828960,"exit":1726829014,"keystrokes":111,"elapsed_time_sec":54},{"entry":1726829497,"exit":1726829507,"keystrokes":153,"elapsed_time_sec":10},{"entry":1726829516,"exit":1726829617,"keystrokes":330,"elapsed_time_sec":101},{"entry":1726829639,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726829692,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726830041,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726830045,"exit":1726830427,"keystrokes":557,"elapsed_time_sec":382},{"entry":1726830854,"keystrokes":0,"elapsed_time_sec":0},{"entry":1726830855,"exit":1726830969,"keystrokes":155,"elapsed_time_sec":114}],"filetype":"text","git_project_name":"hyprdots"},"\/home\/archer\/.config\/rofi\/launchers\/type-7\/style-3.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/scrollbar.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/.config\/surfraw\/neo-tree filesystem [1]":{"visit_log":[],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/.config\/rofi\/images\/b.png":{"visit_log":[],"filetype":"","git_project_name":""},"oil:\/\/\/home\/archer\/.config\/tmux\/":{"visit_log":[],"filetype":"oil","git_project_name":""},"\/home\/archer\/.config\/rofi\/colors.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/etc\/cron.d\/0hourly":{"visit_log":[{"entry":1726492036,"exit":1726492065,"keystrokes":84,"elapsed_time_sec":29},{"entry":1726492149,"exit":1726492159,"keystrokes":1,"elapsed_time_sec":10}],"filetype":"crontab","git_project_name":""},"oil:\/\/\/etc\/cron.daily\/":{"visit_log":[],"filetype":"oil","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/venv\/lib\/python3.12\/site-packages\/pip\/__init__.py":{"visit_log":[],"filetype":"python","git_project_name":""},"oil:\/\/\/home\/archer\/.config\/rofi\/":{"visit_log":[],"filetype":"oil","git_project_name":""},"\/home\/archer\/Downloads\/Default.code-profile":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/coq-nvim.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/.config\/qt6ct\/qt6ct.conf":{"visit_log":[{"entry":1726720288,"exit":1726720339,"keystrokes":13,"elapsed_time_sec":51}],"filetype":"conf","git_project_name":""},"\/home\/archer\/.bashrc":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/spotify-tui\/client.yml":{"visit_log":[{"entry":1727452793,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727452794,"exit":1727452810,"keystrokes":2,"elapsed_time_sec":16},{"entry":1727452834,"exit":1727452897,"keystrokes":1,"elapsed_time_sec":63}],"filetype":"yaml","git_project_name":""},"\/home\/archer\/Downloads\/temp.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/clipman\/clipman.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/Downloads\/Chatbot\/app.py":{"visit_log":[],"filetype":"python","git_project_name":""},"\/home\/archer\/Projects\/GIT_THINGS\/.git\/HEAD":{"visit_log":[{"entry":1726683113,"exit":1726683164,"keystrokes":1,"elapsed_time_sec":51}],"filetype":"git","git_project_name":"GIT_THINGS"},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/comment.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/Projects\/hyprdots\/README.md":{"visit_log":[],"filetype":"markdown","git_project_name":"hyprdots"},"\/home\/archer\/.config\/waybar\/scripts\/network.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/rofi\/launchers\/type-6\/style-2.rasi":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/archer\/.config\/rofi\/wifi.sh":{"visit_log":[],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/hypridle\/hypridle.conf":{"visit_log":[],"filetype":"conf","git_project_name":""},"\/home\/archer\/Projects\/EdChat\/.git\/MERGE_MSG":{"visit_log":[{"entry":1726423114,"exit":1726423123,"keystrokes":0,"elapsed_time_sec":9}],"filetype":"gitcommit","git_project_name":"EdChat"},"\/dev\/rfkill":{"visit_log":[],"filetype":"","git_project_name":""},"\/home\/ayush\/dotfiles\/nvim\/lua\/plugins\/tagbar.lua":{"visit_log":[],"filetype":"lua","git_project_name":"dotfiles"},"\/home\/archer\/.ssh\/neo-tree filesystem [1]":{"visit_log":[{"entry":1726659421,"keystrokes":5,"elapsed_time_sec":0},{"entry":1726659424,"exit":1726683941,"keystrokes":59,"elapsed_time_sec":24517}],"filetype":"neo-tree","git_project_name":""},"\/home\/archer\/hyprdots\/waybar\/.config\/waybar\/scripts\/change-wallpaper.sh":{"visit_log":[{"entry":1726659159,"keystrokes":0,"elapsed_time_sec":0},{"entry":1727590534,"exit":1727590599,"keystrokes":201,"elapsed_time_sec":65},{"entry":1727601235,"keystrokes":0,"elapsed_time_sec":0}],"filetype":"sh","git_project_name":""},"\/home\/archer\/.config\/hypr\/current_wallpaper_index":{"visit_log":[],"filetype":"","git_project_name":""}}} \ No newline at end of file diff --git a/waybar/.config/waybar/config.jsonc b/waybar/.config/waybar/config.jsonc index 8c895e6..0237ba4 100644 --- a/waybar/.config/waybar/config.jsonc +++ b/waybar/.config/waybar/config.jsonc @@ -3,7 +3,7 @@ "margin-left": 8, "margin-right": 8, "margin-top": 4, - "margin-bottom": 2, + "margin-bottom": 1, "modules-left": [ "custom/launcher", "hyprland/workspaces", @@ -13,7 +13,7 @@ ], "modules-center": ["clock"], "modules-right": [ - "hyprland/window", + // "hyprland/window", "custom/update", "custom/wallpaper", "pulseaudio",