Compare commits

...

4 commits

Author SHA1 Message Date
fd72dda637 blendr 2025-03-03 22:29:02 +01:00
3b44a4bf6f a 2025-03-03 22:23:19 +01:00
4aea9c0118 meow 2025-03-03 22:21:05 +01:00
2531839c4f update vencord.css 2025-03-03 22:19:47 +01:00
12 changed files with 97 additions and 61 deletions

View file

@ -9,7 +9,7 @@ end
awful.spawn("picom -b")
awful.spawn("/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1") -- authentication popup for obs virtual camera etc
awful.spawn("redshift")
-- awful.spawn("redshift")
awful.spawn("sxhkd")
if not is_laptop then

View file

@ -200,7 +200,7 @@ local function set_wallpaper(s)
if type(wallpaper) == "function" then
wallpaper = wallpaper(s)
end
gears.wallpaper.centered(wallpaper, s)
gears.wallpaper.maximized(wallpaper, s)
end
end

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

View file

@ -102,7 +102,7 @@ theme.menu_border_color = "#ff8844"
-- theme.titlebar_maximized_button_normal_active = themes_path.."default/titlebar/maximized_normal_active.png"
-- theme.titlebar_maximized_button_focus_active = themes_path.."default/titlebar/maximized_focus_active.png"
theme.wallpaper = theme_path .. "background.png"
theme.wallpaper = theme_path .. "background.jpg"
-- You can use your own layout icons like this:
-- theme.layout_fairh = themes_path.."default/layouts/fairhw.png"

View file

@ -1,41 +0,0 @@
import bpy
op = bpy.context.active_operator
op.filepath = '/home/crispypin/proj/blender/untitled.fbx'
op.use_selection = False
op.use_visible = False
op.use_active_collection = False
op.global_scale = 1.0
op.apply_unit_scale = True
op.apply_scale_options = 'FBX_SCALE_UNITS'
op.use_space_transform = True
op.bake_space_transform = False
op.object_types = {'MESH', 'ARMATURE', 'EMPTY'}
op.use_mesh_modifiers = True
op.use_mesh_modifiers_render = True
op.mesh_smooth_type = 'OFF'
op.colors_type = 'SRGB'
op.prioritize_active_color = False
op.use_subsurf = False
op.use_mesh_edges = False
op.use_tspace = False
op.use_triangles = False
op.use_custom_props = False
op.add_leaf_bones = True
op.primary_bone_axis = 'Y'
op.secondary_bone_axis = 'X'
op.use_armature_deform_only = False
op.armature_nodetype = 'NULL'
op.bake_anim = True
op.bake_anim_use_all_bones = True
op.bake_anim_use_nla_strips = True
op.bake_anim_use_all_actions = True
op.bake_anim_force_startend_keying = True
op.bake_anim_step = 1.0
op.bake_anim_simplify_factor = 1.0
op.path_mode = 'RELATIVE'
op.embed_textures = False
op.batch_mode = 'OFF'
op.use_batch_own_dir = True
op.axis_forward = '-Z'
op.axis_up = 'Y'

View file

@ -1,4 +1,4 @@
#? Config file for btop v. 1.2.13
#? Config file for btop v. 1.3.2
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
@ -37,6 +37,9 @@ graph_symbol = "braille"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_cpu = "default"
# Graph symbol to use for graphs in gpu box, "default", "braille", "block" or "tty".
graph_symbol_gpu = "default"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_mem = "default"
@ -46,7 +49,7 @@ graph_symbol_net = "default"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_proc = "default"
#* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace.
#* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace.
shown_boxes = "mem cpu proc"
#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
@ -86,6 +89,9 @@ proc_left = False
#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop).
proc_filter_kernel = False
#* In tree-view, always accumulate child process resources in the parent process.
proc_aggregate = False
#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available.
#* Select from a list of detected attributes from the options menu.
cpu_graph_upper = "total"
@ -94,6 +100,9 @@ cpu_graph_upper = "total"
#* Select from a list of detected attributes from the options menu.
cpu_graph_lower = "total"
#* If gpu info should be shown in the cpu box. Available values = "Auto", "On" and "Off".
show_gpu_info = "Auto"
#* Toggles if the lower CPU graph should be inverted.
cpu_invert_lower = True
@ -207,6 +216,33 @@ show_battery = True
#* Which battery to use if multiple are present. "Auto" for auto detection.
selected_battery = "Auto"
#* Show power stats of battery next to charge indicator.
show_battery_watts = True
#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
log_level = "WARNING"
log_level = "WARNING"
#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards.
nvml_measure_pcie_speeds = True
#* Horizontally mirror the GPU graph.
gpu_mirror_graph = True
#* Custom gpu0 model name, empty string to disable.
custom_gpu_name0 = ""
#* Custom gpu1 model name, empty string to disable.
custom_gpu_name1 = ""
#* Custom gpu2 model name, empty string to disable.
custom_gpu_name2 = ""
#* Custom gpu3 model name, empty string to disable.
custom_gpu_name3 = ""
#* Custom gpu4 model name, empty string to disable.
custom_gpu_name4 = ""
#* Custom gpu5 model name, empty string to disable.
custom_gpu_name5 = ""

View file

@ -11,7 +11,8 @@
- link:
~/.config/alacritty/alacritty.yml: alacritty.yml
~/.config/awesome: awesome
~/.config/blender: blender
~/.config/blender/4.3/config/userpref.blend: blender/userpref.blend
~/.config/blender/4.3/config/startup.blend: blender/startup.blend
~/.config/btop/btop.conf: btop.conf
~/.config/f3d: f3d
~/.config/fastfetch/config.conf: fastfetch.conf

View file

@ -0,0 +1,3 @@
LD_PRELOAD="" %command% -nosplash -skipintro -useallavailablecores
LD_PRELOAD="" fixes 55 min lag bug

View file

@ -10,17 +10,45 @@ https://github.com/ETBCOR/nasin-nanpa/releases
--font-code: Consolas, monospace, "nasin-nanpa";
}
/* server discovery button */
.footer_d71945,
/* shop button in DM page */
li.channel_c91bad.container_d91ad9:has(>div>a[href="/shop"]),
/* nitro button in DM page */
div:has(>li>div>a[href="/store"]),
/* apps launcher next to chat box */
.channelAppLauncher_df39bd,
/* chat box buttons */
small {
font-size: 1em !important;
color: #dbf !important;
}
div[aria-label="Help"],
.footer__214dc, /* server discovery button */
div:has(>a[href="/store"]),
div:has(>a[href="/shop"]),
button[aria-label="Apps"],
button[aria-label="Send a gift"],
button[aria-label="Open sticker picker"]
{
display: none;
}
body {
/* rotate: 1deg; */
/* animation: spin 60s linear infinite; */
/* animation: squish 2s infinite; */
}
@keyframes squish {
0% {
scale: 80% 100%;
}
50% {
scale: 100% 80%;
}
100% {
scale: 80% 100%;
}
}
@keyframes spin {
100% {
transform:rotate(360deg);
/* scale: 0.8; */
}
}

View file

@ -9,12 +9,21 @@
#--output HDMI-A-1 --mode 1920x1080 --pos 0x0 --rotate normal --set TearFree on \
#--output VGA-1-1 --mode 1280x1024 --pos 3840x0 --rotate normal
# no left screen, 2-monitor setup
# no left screen, cursed 2-monitor setup
# xrandr \
# --output DisplayPort-0 --primary --mode 1920x1080 --pos 1920x0 --rotate normal --set TearFree on \
# --output DisplayPort-1 --off \
# --output HDMI-A-1 --off \
# --output VGA-1-1 --mode 1280x1024 --pos 3840x0 --rotate normal
xrandr \
--output DisplayPort-0 --primary --mode 1920x1080 --pos 1920x0 --rotate normal --set TearFree on \
--output DisplayPort-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal \
--output DisplayPort-1 --off \
--output HDMI-A-1 --off \
--output VGA-1-1 --mode 1280x1024 --pos 3840x0 --rotate normal
--output DisplayPort-2 --off \
--output HDMI-A-0 --mode 1280x1024 --pos 1920x0 --rotate normal
# bind super to super+esc, for menubar toggle with one key
xcape -e "Super_L=Super_L|Escape"