parent
dfaf0c37be
commit
845a9a8c3d
After Width: | Height: | Size: 357 KiB |
@ -0,0 +1,471 @@
|
||||
;==========================================================
|
||||
;
|
||||
;
|
||||
; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗
|
||||
; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗
|
||||
; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝
|
||||
; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗
|
||||
; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║
|
||||
; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
|
||||
;
|
||||
;
|
||||
; To learn more about how to configure Polybar
|
||||
; go to https://github.com/polybar/polybar
|
||||
;
|
||||
; The README contains a lot of information
|
||||
;
|
||||
;==========================================================
|
||||
|
||||
[colors]
|
||||
background = #cc24273a
|
||||
foreground = #cad3f5
|
||||
blue = #8aadf4
|
||||
green = #a6da95
|
||||
red = #ed8796
|
||||
yellow = #eed49f
|
||||
disabled = #5b6078
|
||||
|
||||
[bar/top]
|
||||
width = 100%
|
||||
height = 24pt
|
||||
radius = 0
|
||||
|
||||
; dpi = 96
|
||||
|
||||
background = ${colors.background}
|
||||
foreground = ${colors.foreground}
|
||||
|
||||
line-size = 3pt
|
||||
|
||||
border-size = 4pt
|
||||
border-color = #00000000
|
||||
|
||||
padding-left = 0
|
||||
padding-right = 1
|
||||
|
||||
module-margin = 1
|
||||
|
||||
separator = |
|
||||
separator-foreground = ${colors.disabled}
|
||||
|
||||
font-0 = Iosevka Nerd Font;2
|
||||
; font-1 = monospace;2
|
||||
|
||||
modules-left = xworkspaces xwindow
|
||||
modules-right = pulseaudio memory cpu wlan eth battery date
|
||||
|
||||
cursor-click = pointer
|
||||
cursor-scroll = ns-resize
|
||||
|
||||
enable-ipc = true
|
||||
|
||||
tray-position = right
|
||||
|
||||
; wm-restack = generic
|
||||
wm-restack = bspwm
|
||||
; wm-restack = i3
|
||||
|
||||
; override-redirect = true
|
||||
|
||||
[module/battery]
|
||||
type = internal/battery
|
||||
|
||||
; This is useful in case the battery never reports 100% charge
|
||||
; Default: 100
|
||||
full-at = 99
|
||||
|
||||
; format-low once this charge percentage is reached
|
||||
; Default: 10
|
||||
; New in version 3.6.0
|
||||
low-at = 15
|
||||
|
||||
; Use the following command to list batteries and adapters:
|
||||
; $ ls -1 /sys/class/power_supply/
|
||||
battery = BAT0
|
||||
adapter = ADP1
|
||||
|
||||
; If an inotify event haven't been reported in this many
|
||||
; seconds, manually poll for new values.
|
||||
;
|
||||
; Needed as a fallback for systems that don't report events
|
||||
; on sysfs/procfs.
|
||||
;
|
||||
; Disable polling by setting the interval to 0.
|
||||
;
|
||||
; Default: 5
|
||||
poll-interval = 5
|
||||
|
||||
; Formatting
|
||||
format-charging = <animation-charging> <label-charging>
|
||||
format-charging-foreground = ${colors.yellow}
|
||||
|
||||
format-discharging = <ramp-capacity> <label-discharging>
|
||||
format-discharging-foreground = ${colors.yellow}
|
||||
|
||||
format-full = <ramp-capacity> <label-full>
|
||||
format-full-foreground = ${colors.green}
|
||||
|
||||
format-low = <label-low> <animation-low>
|
||||
format-low-foreground = ${colors.red}
|
||||
|
||||
label-charging = " %percentage%%"
|
||||
label-charging-foreground = ${colors.foreground}
|
||||
|
||||
label-discharging = " %percentage%%"
|
||||
label-discharging-foreground = ${colors.foreground}
|
||||
|
||||
label-full = " %percentage%%"
|
||||
label-full-foreground = ${colors.foreground}
|
||||
|
||||
label-low = " %percentage%%"
|
||||
label-low-foreground = ${colors.foreground}
|
||||
|
||||
; Only applies if <ramp-capacity> is used
|
||||
ramp-capacity-0 =
|
||||
ramp-capacity-1 =
|
||||
ramp-capacity-2 =
|
||||
ramp-capacity-3 =
|
||||
ramp-capacity-4 =
|
||||
|
||||
; Only applies if <bar-capacity> is used
|
||||
bar-capacity-width = 10
|
||||
|
||||
; Only applies if <animation-charging> is used
|
||||
animation-charging-0 =
|
||||
animation-charging-1 =
|
||||
animation-charging-2 =
|
||||
animation-charging-3 =
|
||||
animation-charging-4 =
|
||||
; Framerate in milliseconds
|
||||
animation-charging-framerate = 750
|
||||
|
||||
; Only applies if <animation-discharging> is used
|
||||
animation-discharging-0 =
|
||||
animation-discharging-1 =
|
||||
animation-discharging-2 =
|
||||
animation-discharging-3 =
|
||||
animation-discharging-4 =
|
||||
; Framerate in milliseconds
|
||||
animation-discharging-framerate = 500
|
||||
|
||||
; Only applies if <animation-low> is used
|
||||
; New in version 3.6.0
|
||||
animation-low-0 = !
|
||||
animation-low-1 =
|
||||
animation-low-framerate = 200
|
||||
|
||||
[module/xworkspaces]
|
||||
type = internal/xworkspaces
|
||||
|
||||
label-active = %name%
|
||||
label-active-background = ${colors.background}
|
||||
label-active-underline= ${colors.green}
|
||||
label-active-padding = 1
|
||||
|
||||
label-occupied = %name%
|
||||
label-occupied-padding = 1
|
||||
|
||||
label-urgent = %name%
|
||||
label-urgent-background = ${colors.red}
|
||||
label-urgent-padding = 1
|
||||
|
||||
label-empty = %name%
|
||||
label-empty-foreground = ${colors.disabled}
|
||||
label-empty-padding = 1
|
||||
|
||||
[module/xwindow]
|
||||
type = internal/xwindow
|
||||
label = %title:0:60:...%
|
||||
|
||||
[module/filesystem]
|
||||
type = internal/fs
|
||||
interval = 25
|
||||
|
||||
mount-0 = /
|
||||
|
||||
label-mounted = %{F#89B4FA}%mountpoint%%{F-} %percentage_used%%
|
||||
|
||||
label-unmounted = %mountpoint% not mounted
|
||||
label-unmounted-foreground = ${colors.disabled}
|
||||
|
||||
[module/pulseaudio]
|
||||
type = internal/pulseaudio
|
||||
|
||||
; Sink to be used, if it exists (find using `pacmd list-sinks`, name field)
|
||||
; If not, uses default sink
|
||||
; sink = alsa_output.pci-0000_12_00.3.analog-stereo
|
||||
|
||||
; Use PA_VOLUME_UI_MAX (~153%) if true, or PA_VOLUME_NORM (100%) if false
|
||||
; Default: true
|
||||
use-ui-max = false
|
||||
|
||||
; Interval for volume increase/decrease (in percent points)
|
||||
; Default: 5
|
||||
interval = 5
|
||||
|
||||
; Available tags:
|
||||
; <label-volume> (default)
|
||||
; <ramp-volume>
|
||||
; <bar-volume>
|
||||
format-volume = "墳 <label-volume>"
|
||||
format-volume-foreground = ${colors.green}
|
||||
|
||||
; Available tags:
|
||||
; <label-muted> (default)
|
||||
; <ramp-volume>
|
||||
; <bar-volume>
|
||||
format-muted = "婢 <label-muted>"
|
||||
format-muted-foreground = ${colors.red}
|
||||
|
||||
; Available tokens:
|
||||
; %percentage% (default)
|
||||
; %decibels%
|
||||
label-volume = %percentage%%
|
||||
label-volume-foreground = ${colors.foreground}
|
||||
|
||||
; Available tokens:
|
||||
; %percentage% (default)
|
||||
; %decibels%
|
||||
label-muted = mute
|
||||
label-muted-foreground = ${colors.disabled}
|
||||
|
||||
; Only applies if <ramp-volume> is used
|
||||
ramp-volume-0 = 🔈
|
||||
ramp-volume-1 = 🔉
|
||||
ramp-volume-2 = 🔊
|
||||
|
||||
; Right and Middle click
|
||||
click-right = pavucontrol
|
||||
; click-middle =
|
||||
|
||||
[module/xkeyboard]
|
||||
type = internal/xkeyboard
|
||||
blacklist-0 = num lock
|
||||
|
||||
label-layout = %layout%
|
||||
label-layout-foreground = ${colors.blue}
|
||||
|
||||
label-indicator-padding = 2
|
||||
label-indicator-margin = 1
|
||||
label-indicator-foreground = ${colors.background}
|
||||
label-indicator-background = ${colors.green}
|
||||
|
||||
[module/memory]
|
||||
type = internal/memory
|
||||
|
||||
; Seconds to sleep between updates
|
||||
; Default: 1
|
||||
interval = 3
|
||||
|
||||
; Default: 90
|
||||
; New in version 3.6.0
|
||||
warn-percentage = 95
|
||||
; Available tags:
|
||||
; <label> (default)
|
||||
; <bar-used>
|
||||
; <bar-free>
|
||||
; <ramp-used>
|
||||
; <ramp-free>
|
||||
; <bar-swap-used>
|
||||
; <bar-swap-free>
|
||||
; <ramp-swap-used>
|
||||
; <ramp-swap-free>
|
||||
format = " <label>"
|
||||
format-foreground = ${colors.green}
|
||||
|
||||
; Format used when RAM reaches warn-percentage
|
||||
; If not defined, format is used instead.
|
||||
; Available tags:
|
||||
; <label-warn>
|
||||
; <bar-used>
|
||||
; <bar-free>
|
||||
; <ramp-used>
|
||||
; <ramp-free>
|
||||
; <bar-swap-used>
|
||||
; <bar-swap-free>
|
||||
; <ramp-swap-used>
|
||||
; <ramp-swap-free>
|
||||
; New in version 3.6.0
|
||||
format-warn = " <label-warn>"
|
||||
format-warn-foreground = ${colors.red}
|
||||
|
||||
; Available tokens:
|
||||
; %percentage_used% (default)
|
||||
; %percentage_free%
|
||||
; %used% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %free% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %total% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %gb_used%
|
||||
; %gb_free%
|
||||
; %gb_total%
|
||||
; %mb_used%
|
||||
; %mb_free%
|
||||
; %mb_total%
|
||||
; %percentage_swap_used%
|
||||
; %percentage_swap_free%
|
||||
; %swap_total% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %swap_free% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %swap_used% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %gb_swap_total%
|
||||
; %gb_swap_free%
|
||||
; %gb_swap_used%
|
||||
; %mb_swap_total%
|
||||
; %mb_swap_free%
|
||||
; %mb_swap_used%
|
||||
label = %gb_used%
|
||||
label-foreground = ${colors.foreground}
|
||||
|
||||
; Available tokens:
|
||||
; %percentage_used% (default)
|
||||
; %percentage_free%
|
||||
; %used% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %free% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %total% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %gb_used%
|
||||
; %gb_free%
|
||||
; %gb_total%
|
||||
; %mb_used%
|
||||
; %mb_free%
|
||||
; %mb_total%
|
||||
; %percentage_swap_used%
|
||||
; %percentage_swap_free%
|
||||
; %swap_total% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %swap_free% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %swap_used% (Switches between KiB, MiB, and GiB) (New in version 3.6.0)
|
||||
; %gb_swap_total%
|
||||
; %gb_swap_free%
|
||||
; %gb_swap_used%
|
||||
; %mb_swap_total%
|
||||
; %mb_swap_free%
|
||||
; %mb_swap_used%
|
||||
; New in version 3.6.0
|
||||
label-warn = %gb_used%
|
||||
label-warn-foreground = ${colors.foreground}
|
||||
|
||||
; Only applies if <bar-used> is used
|
||||
bar-used-indicator =
|
||||
bar-used-width = 50
|
||||
bar-used-foreground-0 = ${colors.green}
|
||||
bar-used-foreground-1 = ${colors.blue}
|
||||
bar-used-foreground-2 = ${colors.yellow}
|
||||
bar-used-foreground-3 = ${colors.red}
|
||||
bar-used-fill = ▐
|
||||
bar-used-empty = ▐
|
||||
bar-used-empty-foreground = ${colors.disabled}
|
||||
|
||||
; Only applies if <ramp-used> is used
|
||||
ramp-used-0 = ▁
|
||||
ramp-used-1 = ▂
|
||||
ramp-used-2 = ▃
|
||||
ramp-used-3 = ▄
|
||||
ramp-used-4 = ▅
|
||||
ramp-used-5 = ▆
|
||||
ramp-used-6 = ▇
|
||||
ramp-used-7 = █
|
||||
|
||||
; Only applies if <ramp-free> is used
|
||||
ramp-free-0 = ▁
|
||||
ramp-free-1 = ▂
|
||||
ramp-free-2 = ▃
|
||||
ramp-free-3 = ▄
|
||||
ramp-free-4 = ▅
|
||||
ramp-free-5 = ▆
|
||||
ramp-free-6 = ▇
|
||||
ramp-free-7 = █
|
||||
|
||||
[module/cpu]
|
||||
type = internal/cpu
|
||||
|
||||
; Seconds to sleep between updates
|
||||
; Default: 1
|
||||
interval = 0.5
|
||||
|
||||
; Default: 80
|
||||
; New in version 3.6.0
|
||||
warn-percentage = 95
|
||||
; Available tags:
|
||||
; <label> (default)
|
||||
; <bar-load>
|
||||
; <ramp-load>
|
||||
; <ramp-coreload>
|
||||
format = " <label>"
|
||||
format-foreground = ${colors.green}
|
||||
|
||||
; Format used when average CPU load (same as %percentage%) reaches warn-percentage
|
||||
; If not defined, format is used instead.
|
||||
; Available tags:
|
||||
; <label-warn>
|
||||
; <bar-load>
|
||||
; <ramp-load>
|
||||
; <ramp-coreload>
|
||||
; New in version 3.6.0
|
||||
format-warn = " <label-warn>"
|
||||
format-warn-foreground = ${colors.red}
|
||||
|
||||
; Available tokens:
|
||||
; %percentage% (default) - total cpu load averaged over all cores
|
||||
; %percentage-sum% - Cumulative load on all cores
|
||||
; %percentage-cores% - load percentage for each core
|
||||
; %percentage-core[1-9]% - load percentage for specific core
|
||||
label = %percentage%%
|
||||
label-foreground = ${colors.foreground}
|
||||
|
||||
; Available tokens:
|
||||
; %percentage% (default) - total cpu load averaged over all cores
|
||||
; %percentage-sum% - Cumulative load on all cores
|
||||
; %percentage-cores% - load percentage for each core
|
||||
; %percentage-core[1-9]% - load percentage for specific core
|
||||
; New in version 3.6.0
|
||||
label-warn = %percentage%%
|
||||
label-warn-foreground = ${colors.red}
|
||||
|
||||
; Spacing (number of spaces, pixels, points) between individual per-core ramps
|
||||
ramp-coreload-spacing = 1
|
||||
ramp-coreload-0 = ▁
|
||||
ramp-coreload-1 = ▂
|
||||
ramp-coreload-2 = ▃
|
||||
ramp-coreload-3 = ▄
|
||||
ramp-coreload-4 = ▅
|
||||
ramp-coreload-5 = ▆
|
||||
ramp-coreload-6 = ▇
|
||||
ramp-coreload-7 = █
|
||||
|
||||
[network-base]
|
||||
type = internal/network
|
||||
interval = 5
|
||||
format-connected = <label-connected>
|
||||
format-disconnected = <label-disconnected>
|
||||
|
||||
[module/wlan]
|
||||
inherit = network-base
|
||||
interface-type = wireless
|
||||
label-connected = "%{F#A6E3A1}直 %{F-} %essid%"
|
||||
label-disconnected = "%{F#F38BA8}睊 %{F#7F849C} disconnected"
|
||||
|
||||
click-right = kitty -e nmtui
|
||||
|
||||
[module/eth]
|
||||
inherit = network-base
|
||||
interface-type = wired
|
||||
label-connected = "%{F#A6E3A1} %{F-}"
|
||||
label-disconnected = "%{F#F38BA8} %{F#7F849C} disconnected"
|
||||
|
||||
[module/date]
|
||||
type = internal/date
|
||||
interval = 1
|
||||
|
||||
date = %H:%M
|
||||
date-alt = %Y-%m-%d %H:%M:%S
|
||||
|
||||
format = " <label>"
|
||||
format-foreground = ${colors.green}
|
||||
|
||||
label = "%date%"
|
||||
label-foreground = ${colors.foreground}
|
||||
|
||||
[settings]
|
||||
screenchange-reload = true
|
||||
pseudo-transparency = true
|
||||
|
||||
; vim:ft=dosini
|
||||
[bar/mybar]
|
@ -0,0 +1,39 @@
|
||||
;-------------------------
|
||||
; Catppuccin Mocha Palette
|
||||
; Maintainer: justTOBBI
|
||||
;--------------------------
|
||||
|
||||
[colors]
|
||||
base = #1e1e2e
|
||||
mantle = #181825
|
||||
crust = #11111b
|
||||
|
||||
text = #cdd6f4
|
||||
subtext0 = #a6adc8
|
||||
subtext1 = #bac2de
|
||||
|
||||
surface0 = #313244
|
||||
surface1 = #45475a
|
||||
surface2 = #585b70
|
||||
|
||||
overlay0 = #6c7086
|
||||
overlay1 = #7f849c
|
||||
overlay2 = #9399b2
|
||||
|
||||
|
||||
blue = #89b4fa
|
||||
lavender = #b4befe
|
||||
sapphire = #74c7ec
|
||||
sky = #89dceb
|
||||
teal = #94e2d5
|
||||
green = #a6e3a1
|
||||
yellow = #f9e2af
|
||||
peach = #fab387
|
||||
maroon = #eba0ac
|
||||
red = #f38ba8
|
||||
mauve = #cba6f7
|
||||
pink = #f5c2e7
|
||||
flamingo = #f2cdcd
|
||||
rosewater = #f5e0dc
|
||||
|
||||
transparent = #FF00000
|
@ -1,21 +0,0 @@
|
||||
Error: /usr/local/share/lite-xl/plugins/lite-xl-terminal/init.lua:337: attempt to index local 'str' (a nil value)
|
||||
stack traceback:
|
||||
/usr/local/share/lite-xl/plugins/lite-xl-terminal/init.lua:337: in function 'sanitise'
|
||||
/usr/local/share/lite-xl/plugins/lite-xl-terminal/init.lua:432: in function 'display_string'
|
||||
/usr/local/share/lite-xl/plugins/lite-xl-terminal/init.lua:358: in function 'update'
|
||||
/usr/local/share/lite-xl/core/rootview.lua:516: in function 'update'
|
||||
/usr/local/share/lite-xl/core/rootview.lua:523: in function 'update'
|
||||
/usr/local/share/lite-xl/core/rootview.lua:524: in function 'update'
|
||||
/usr/local/share/lite-xl/core/rootview.lua:523: in function 'update'
|
||||
/usr/local/share/lite-xl/core/rootview.lua:524: in function 'update'
|
||||
/usr/local/share/lite-xl/core/rootview.lua:524: in function 'update'
|
||||
/usr/local/share/lite-xl/core/rootview.lua:1082: in function 'update'
|
||||
/usr/local/share/lite-xl/plugins/autocomplete.lua:410: in function 'root_view_update'
|
||||
/usr/local/share/lite-xl/plugins/treeview.lua:398: in function 'root_view_update'
|
||||
/usr/local/share/lite-xl/plugins/contextmenu.lua:26: in function 'update'
|
||||
/usr/local/share/lite-xl/core/init.lua:1529: in function 'step'
|
||||
/usr/local/share/lite-xl/core/init.lua:1596: in function </usr/local/share/lite-xl/core/init.lua:1592>
|
||||
(...tail calls...)
|
||||
[string "local core..."]:9: in function <[string "local core..."]:2>
|
||||
[C]: in function 'xpcall'
|
||||
[string "local core..."]:2: in main chunk
|
@ -1,50 +0,0 @@
|
||||
-- put user settings here
|
||||
-- this module will be loaded after everything else when the application starts
|
||||
-- it will be automatically reloaded when saved
|
||||
|
||||
local core = require "core"
|
||||
local keymap = require "core.keymap"
|
||||
local config = require "core.config"
|
||||
local style = require "core.style"
|
||||
|
||||
------------------------------ Themes ----------------------------------------
|
||||
|
||||
-- light theme:
|
||||
-- core.reload_module("colors.summer")
|
||||
|
||||
--------------------------- Key bindings -------------------------------------
|
||||
|
||||
-- key binding:
|
||||
-- keymap.add { ["ctrl+escape"] = "core:quit" }
|
||||
|
||||
|
||||
------------------------------- Fonts ----------------------------------------
|
||||
|
||||
-- customize fonts:
|
||||
-- style.font = renderer.font.load(DATADIR .. "/fonts/FiraSans-Regular.ttf", 14 * SCALE)
|
||||
-- style.code_font = renderer.font.load(DATADIR .. "/fonts/JetBrainsMono-Regular.ttf", 14 * SCALE)
|
||||
--
|
||||
-- font names used by lite:
|
||||
-- style.font : user interface
|
||||
-- style.big_font : big text in welcome screen
|
||||
-- style.icon_font : icons
|
||||
-- style.icon_big_font : toolbar icons
|
||||
-- style.code_font : code
|
||||
--
|
||||
-- the function to load the font accept a 3rd optional argument like:
|
||||
--
|
||||
-- {antialiasing="grayscale", hinting="full"}
|
||||
--
|
||||
-- possible values are:
|
||||
-- antialiasing: grayscale, subpixel
|
||||
-- hinting: none, slight, full
|
||||
|
||||
------------------------------ Plugins ----------------------------------------
|
||||
|
||||
-- enable or disable plugin loading setting config entries:
|
||||
|
||||
-- enable plugins.trimwhitespace, otherwise it is disable by default:
|
||||
-- config.plugins.trimwhitespace = true
|
||||
--
|
||||
-- disable detectindent, otherwise it is enabled by default
|
||||
-- config.plugins.detectindent = false
|
@ -1 +0,0 @@
|
||||
return {recents={[5]="/home/kacperks/projects",[1]="/home/kacperks/projects/20secgj",[7]="/home/kacperks/projects/GeoCube",[2]="/home/kacperks/.minetest/games/coconut_collection/mods/ksnpc",[3]="/home/kacperks/projects/Voxeler/Game",[4]="/home/kacperks/projects/cs-lua",[6]="/home/kacperks/projects/Voxeler"}, window={[1]=1882,[2]=1130,[3]=1939,[4]=19,["n"]=4}, window_mode="normal", previous_find={[2]="include",[1]="LUA_VTRUE",[3]="true"}, previous_replace={}}
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks/projects/20secgj", documents = {["type"]="leaf",["views"]={[1]={["selection"]={[1]=1,[2]=1,[3]=1,[4]=1},["active"]=false,["scroll"]={["y"]=0,["x"]=0},["type"]="doc",["filename"]="main.cpp",["text"]=false},[2]={["selection"]={[1]=8,[2]=1,[3]=8,[4]=1},["active"]=false,["scroll"]={["y"]=0,["x"]=0},["type"]="doc",["filename"]="player.hpp",["text"]=false}},["active_view"]=2}, directories = {} }
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks/Desktop", documents = {["type"]="leaf",["views"]={}}, directories = {} }
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks/projects/Voxeler/Game", documents = {["active_view"]=2,["type"]="leaf",["views"]={[1]={["text"]=false,["scroll"]={["x"]=0,["y"]=0},["active"]=false,["type"]="doc",["selection"]={[1]=44,[2]=45,[3]=44,[4]=39},["filename"]="CMakeLists.txt"},[2]={["text"]=false,["scroll"]={["x"]=0,["y"]=0},["active"]=false,["type"]="doc",["selection"]={[1]=1,[2]=1,[3]=1,[4]=1},["filename"]="src/engine/audio/AudioBijoux.hpp"}}}, directories = {} }
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks/projects/GeoCube", documents = {["active_view"]=2,["views"]={[1]={["type"]="doc",["active"]=false,["text"]="_",["selection"]={[1]=1,[2]=2,[3]=1,[4]=2},["scroll"]={["y"]=0,["x"]=0}},[2]={["filename"]="index.html",["type"]="doc",["active"]=false,["text"]=false,["selection"]={[1]=212,[2]=8,[3]=212,[4]=8},["scroll"]={["y"]=3356,["x"]=0}}},["type"]="leaf"}, directories = {} }
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks/projects/Voxeler", documents = {["type"]="leaf",["views"]={[1]={["selection"]={[1]=26,[2]=1,[3]=26,[4]=1},["filename"]="Game/src/app.cpp",["text"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["active"]=false},[2]={["selection"]={[1]=1,[2]=49,[3]=1,[4]=49},["filename"]="Game/CMakeLists.txt",["text"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["active"]=true},[3]={["selection"]={[1]=1,[2]=1,[3]=1,[4]=1},["filename"]="Game/3rdparty/bgfx.cmake/bgfx/scripts/bgfx.doxygen",["text"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["active"]=false},[4]={["selection"]={[1]=18,[2]=2,[3]=18,[4]=2},["filename"]="Game/3rdparty/bgfx.cmake/bgfx/scripts/bgfx-codegen.lua",["text"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["active"]=false},[5]={["selection"]={[1]=1,[2]=1,[3]=1,[4]=1},["filename"]="Game/3rdparty/bgfx.cmake/CMakeLists.txt",["text"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["active"]=false}},["active_view"]=2}, directories = {} }
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks/Downloads/lite-xl/bin", documents = {["type"]="leaf",["views"]={}}, directories = {} }
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks/projects/cs-lua", documents = {["type"]="leaf",["views"]={[1]={["filename"]="src/lzio.o",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[2]={["filename"]="src/lzio.h",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[3]={["filename"]="src/lzio.c",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=392.27800369263},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[4]={["filename"]="src/lua.h",["active"]=true,["type"]="doc",["scroll"]={["x"]=0,["y"]=742.6643252373},["text"]=false,["selection"]={[1]=405,[2]=1,[3]=405,[4]=1}},[5]={["filename"]="src/lparser.h",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=2942.0850276947},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[6]={["filename"]="src/lmathlib.c",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=147.10425138474},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[7]={["filename"]="src/lapi.h",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[8]={["filename"]="src/lapi.c",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=1667.1815156937},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[9]={["filename"]="src/lauxlib.c",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[10]={["filename"]="src/lcode.c",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=4805.4055452347},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[11]={["filename"]="src/lobject.h",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=6374.5175600052},["text"]=false,["selection"]={[1]=228,[2]=1,[3]=228,[4]=1}},[12]={["filename"]="src/lobject.c",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=784.55600738525},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[13]={["filename"]="src/lparser.c",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=3726.64103508},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[14]={["filename"]="src/lopcodes.o",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[15]={["filename"]="src/lopnames.h",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[16]={["filename"]="src/lopcodes.h",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[17]={["filename"]="src/lopcodes.c",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[18]={["filename"]="src/lapi.o",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[19]={["filename"]="src/lauxlib.h",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=249},["text"]=false,["selection"]={[1]=32,[2]=1,[3]=32,[4]=1}},[20]={["filename"]="src/llex.h",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=700},["text"]=false,["selection"]={[1]=37,[2]=30,[3]=37,[4]=26}},[21]={["filename"]="src/lstate.h",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=1572},["text"]=false,["selection"]={[1]=98,[2]=8,[3]=98,[4]=4}},[22]={["filename"]="src/luac",["active"]=false,["type"]="doc",["scroll"]={["x"]=0,["y"]=0},["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}}},["active_view"]=4}, directories = {} }
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks", documents = {["type"]="leaf",["views"]={[1]={["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1},["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["filename"]="projects/Voxeler/Game/src/game/api_requests.hpp",["active"]=false},[2]={["text"]=false,["selection"]={[1]=21,[2]=1,[3]=21,[4]=1},["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["filename"]="projects/Voxeler/Game/CMakeLists.txt",["active"]=false},[3]={["text"]=false,["selection"]={[1]=1,[2]=1,[3]=1,[4]=1},["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["filename"]="projects/Voxeler/Game/3rdparty/CMakeLists.txt",["active"]=false},[4]={["text"]=false,["selection"]={[1]=26,[2]=23,[3]=26,[4]=23},["type"]="doc",["scroll"]={["y"]=0,["x"]=1.5},["filename"]="projects/Voxeler/README.MD",["active"]=false},[5]={["text"]=false,["selection"]={[1]=39,[2]=9,[3]=39,[4]=9},["type"]="doc",["scroll"]={["y"]=147.10425138474,["x"]=0},["filename"]="projects/Voxeler/Game/src/engine/resource/resource.hpp",["active"]=false},[6]={["text"]=false,["selection"]={[1]=17,[2]=17,[3]=17,[4]=17},["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["filename"]="projects/Voxeler/Game/src/engine/resource/resource.cpp",["active"]=false},[7]={["text"]=false,["selection"]={[1]=22,[2]=1,[3]=22,[4]=1},["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["filename"]="projects/Voxeler/Game/src/app.cpp",["active"]=false},[8]={["text"]=false,["selection"]={[1]=17,[2]=36,[3]=17,[4]=36},["type"]="doc",["scroll"]={["y"]=98.069500923157,["x"]=0},["filename"]="projects/Voxeler/Game/src/engine/core/engine.hpp",["active"]=false},[9]={["text"]=false,["selection"]={[1]=19,[2]=2,[3]=19,[4]=2},["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["filename"]="projects/Voxeler/Game/src/engine/core/engine.cpp",["active"]=false}},["active_view"]=2}, directories = {} }
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks/.minetest/games/coconut_collection/mods/ksnpc", documents = {["type"]="leaf",["views"]={[1]={["filename"]="init.lua",["text"]=false,["active"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["selection"]={[1]=39,[2]=27,[3]=39,[4]=27}},[2]={["filename"]="person.lua",["text"]=false,["active"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[3]={["filename"]="gangsta.lua",["text"]=false,["active"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[4]={["filename"]="policeman.lua",["text"]=false,["active"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["selection"]={[1]=1,[2]=1,[3]=1,[4]=1}},[5]={["filename"]="README.txt",["text"]=false,["active"]=false,["type"]="doc",["scroll"]={["y"]=0,["x"]=0},["selection"]={[1]=4,[2]=89,[3]=4,[4]=89}},[6]={["filename"]="trader.lua",["text"]=false,["active"]=false,["type"]="doc",["scroll"]={["y"]=378,["x"]=0},["selection"]={[1]=19,[2]=1,[3]=19,[4]=1}}},["active_view"]=6}, directories = {} }
|
@ -1 +0,0 @@
|
||||
return { path = "/home/kacperks/projects", documents = {["views"]={[1]={["text"]=false,["scroll"]={["x"]=0,["y"]=196.13900184631},["selection"]={[1]=16,[2]=25,[3]=16,[4]=25},["filename"]="Voxeler/Game/src/app.cpp",["type"]="doc",["active"]=false},[2]={["text"]=false,["scroll"]={["x"]=0,["y"]=0},["selection"]={[1]=1,[2]=1,[3]=1,[4]=1},["filename"]="Voxeler/Game/3rdparty/bgfx.cmake/bgfx/examples/00-helloworld/logo.h",["type"]="doc",["active"]=false},[3]={["text"]=false,["scroll"]={["x"]=0,["y"]=0},["selection"]={[1]=6,[2]=25,[3]=8,[4]=24},["filename"]="Voxeler/Game/3rdparty/bgfx.cmake/bgfx/examples/00-helloworld/helloworld.cpp",["type"]="doc",["active"]=false},[4]={["text"]=false,["scroll"]={["x"]=0,["y"]=49.034750461578},["selection"]={[1]=9,[2]=1,[3]=9,[4]=1},["filename"]="Voxeler/Game/CMakeLists.txt",["type"]="doc",["active"]=false},[5]={["text"]=false,["scroll"]={["x"]=0,["y"]=0},["selection"]={[1]=17,[2]=1,[3]=17,[4]=1},["filename"]="Voxeler/Game/3rdparty/bgfx.cmake/bgfx/examples/common/imgui/imgui.h",["type"]="doc",["active"]=false}},["type"]="leaf",["active_view"]=5}, directories = {} }
|
Loading…
Reference in new issue