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