generation 516 25.11.20250714.62e0f05
This commit is contained in:
@@ -119,6 +119,7 @@ in {
|
||||
sage
|
||||
yq
|
||||
semgrep
|
||||
# texlive.combined.scheme-full
|
||||
|
||||
# security
|
||||
aflplusplus
|
||||
|
||||
@@ -181,6 +181,31 @@ in {
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
name = "verus";
|
||||
bookmarks = [
|
||||
{
|
||||
name = "verus playground";
|
||||
url = "https://play.verus-lang.org/?version=stable&mode=basic&edition=2021";
|
||||
}
|
||||
{
|
||||
name = "verus docs";
|
||||
url = "https://verus-lang.github.io/verus/guide/verus_macro_intro.html";
|
||||
}
|
||||
{
|
||||
name = "verus zulip";
|
||||
url = "https://verus-lang.zulipchat.com/";
|
||||
}
|
||||
{
|
||||
name = "vstd docs";
|
||||
url = "https://verus-lang.github.io/verus/verusdoc/vstd/index.html";
|
||||
}
|
||||
{
|
||||
name = "core docs";
|
||||
url = "https://doc.rust-lang.org/1.88.0/core/index.html";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
name = "cal";
|
||||
url = "https://calendar.google.com/";
|
||||
|
||||
@@ -13,7 +13,7 @@ vim.g.vimtex_quickfix_mode = 0
|
||||
vim.g.vimtex_quickfix_enabled = 0
|
||||
|
||||
-- Compiler backend.
|
||||
vim.g.vimtex_compiler_method = 'latexrun'
|
||||
vim.g.vimtex_compiler_method = 'latexmk'
|
||||
|
||||
-- Set the local leader (default is "\"; here we change it to comma).
|
||||
vim.g.maplocalleader = ','
|
||||
|
||||
25
home/scripts/bspwm/add-3840p-hdmi.sh
Normal file
25
home/scripts/bspwm/add-3840p-hdmi.sh
Normal file
@@ -0,0 +1,25 @@
|
||||
PRIMARY="$(xrandr --query | awk '/ connected primary/{print $1; exit}')"
|
||||
[ -z "$PRIMARY" ] && PRIMARY="$(xrandr --query | awk '/ connected/{print $1; exit}')"
|
||||
bspc monitor "$PRIMARY" -d 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
|
||||
if [[ $(xrandr -q | grep 'HDMI-1 connected') ]]; then
|
||||
xrandr --output "$PRIMARY" --primary --auto --scale 1x1 --rotate normal --output HDMI-1 --mode 3840x2160 --rotate normal --right-of "$PRIMARY"
|
||||
bspc monitor "$PRIMARY" -d 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
bspc monitor HDMI-1 -d 20
|
||||
xinput map-to-output "TPPS/2 Elan TrackPoint" "eDP-1"
|
||||
xinput map-to-output "Synaptics TM3289-002" "eDP-1"
|
||||
else
|
||||
xrandr --output HDMI-1 --off
|
||||
# Remove nodes
|
||||
while bspc node 20: --kill; do
|
||||
:
|
||||
done
|
||||
# Remove workspaces
|
||||
bspc desktop -r 20
|
||||
# Remove monitor
|
||||
bspc monitor HDMI-1 -r
|
||||
|
||||
bspc monitor "$PRIMARY" -d 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
xinput map-to-output "TPPS/2 Elan TrackPoint" "all"
|
||||
xinput map-to-output "Synaptics TM3289-002" "all"
|
||||
fi
|
||||
@@ -19,7 +19,7 @@ else
|
||||
# Remove monitor
|
||||
bspc monitor DP-2 -r
|
||||
|
||||
bspc monitor "$PRIMARY" -d 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20
|
||||
bspc monitor "$PRIMARY" -d 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
xinput map-to-output "TPPS/2 Elan TrackPoint" "all"
|
||||
xinput map-to-output "Synaptics TM3289-002" "all"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user