summaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-10-13 10:43:49 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2023-10-13 10:43:49 -0400
commita66988a6e884273b13a12a85ab80dd08e8a7ce4a (patch)
treeda3373a6e92b203c132eeb9e61cbeca53915d710 /.local
parent1d1039dfd58c3295c03f98a1890fb67f1bf98a46 (diff)
Lots of changes
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/crontog5
-rwxr-xr-x.local/bin/makewall28
-rwxr-xr-x.local/bin/remaps2
-rwxr-xr-x.local/bin/shortcutgen2
-rw-r--r--.local/share/fonts/ApercuMono/FontsFree-Net-ApercuMono.ttfbin26076 -> 0 bytes
-rw-r--r--.local/share/fonts/FontAwesome/Font Awesome 5 Brands-Regular-400.otfbin475468 -> 0 bytes
-rw-r--r--.local/share/fonts/FontAwesome/Font Awesome 5 Free-Regular-400.otfbin97112 -> 0 bytes
-rw-r--r--.local/share/fonts/FontAwesome/Font Awesome 5 Free-Solid-900.otfbin591244 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/LigLinLibertineMONerdFont-Mono.otfbin2228592 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/Linux Libertine Display O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otfbin2409036 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/Linux Libertine Initials O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otfbin2427180 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/Linux Libertine Mono O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otfbin2171272 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/Linux Libertine O Bold Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otfbin2366768 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/Linux Libertine O Bold Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otfbin2444348 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/Linux Libertine O Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otfbin2463516 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/Linux Libertine O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otfbin2549016 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/Linux Libertine O Semibold Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otfbin2427508 -> 0 bytes
-rw-r--r--.local/share/fonts/linux-libertine/Linux Libertine O Semibold Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otfbin2376724 -> 0 bytes
18 files changed, 30 insertions, 7 deletions
diff --git a/.local/bin/crontog b/.local/bin/crontog
deleted file mode 100755
index 93c2d30..0000000
--- a/.local/bin/crontog
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-# Toggles all cronjobs off/on.
-# Stores disabled crontabs in ~/.consaved until restored.
-
-([ -f ~/.config/cronsaved ] && crontab - < ~/.config/cronsaved && rm ~/.config/cronsaved && notify-send "🕓 Cronjobs re-enabled.") || ( crontab -l > ~/.config/cronsaved && crontab -r && notify-send "🕓 Cronjobs saved and disabled.")
diff --git a/.local/bin/makewall b/.local/bin/makewall
new file mode 100755
index 0000000..f0fc854
--- /dev/null
+++ b/.local/bin/makewall
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+wallDir="$XDG_CONFIG_HOME/wallpapers"
+
+# Acquire the list of connected displays
+displays=$(xrandr | grep " connected" | sed 's/^\([a-Z,0-9,-]*\).*/\1/')
+
+# If there is a wallpaper with a filename matching the display
+# name, set it as the wallpaper for that display.
+# ex: DP-1.jpg and DP-1.png are both valid filenames
+# Otherwise, set the wallpaper to the default wallpaper
+# (default.png or default.jpg)
+setDisplay() {
+ case $(ls $wallDir) in
+ *"$1"*)
+ wall=$(ls $wallDir | grep "$1" | head -n 1)
+ xwallpaper --output $1 --zoom $wallDir/$wall ;;
+ *)
+ wall=$(ls $wallDir | grep "default" | head -n 1)
+ xwallpaper --output $1 --zoom $wallDir/$wall ;;
+ esac
+}
+
+# Set the wallpaper for each display
+for display in $displays; do
+ setDisplay $display
+done
+
diff --git a/.local/bin/remaps b/.local/bin/remaps
index 595022d..ed6ae43 100755
--- a/.local/bin/remaps
+++ b/.local/bin/remaps
@@ -9,5 +9,3 @@ setxkbmap -option caps:super
killall xcape 2>/dev/null ; xcape -e 'Super_L=Escape'
# Map the menu button to right super as well.
xmodmap -e 'keycode 135 = Super_R'
-# Software fix for key bounce (debouncing)
-xkbset bo 50
diff --git a/.local/bin/shortcutgen b/.local/bin/shortcutgen
index e5817d9..0020ec9 100755
--- a/.local/bin/shortcutgen
+++ b/.local/bin/shortcutgen
@@ -53,6 +53,8 @@ vifmy=$( echo "$vifm" | sed "
s/|/:copy/")
echo "$vifmcd\n\n$vifmv\n\n$vifmy" > ~/.cache/vifm-shortcuts
+
+
# #---Testing---# #
# echo "$raw" | sed "s/[A-z,a-z,0-9]*\s*|//"
diff --git a/.local/share/fonts/ApercuMono/FontsFree-Net-ApercuMono.ttf b/.local/share/fonts/ApercuMono/FontsFree-Net-ApercuMono.ttf
deleted file mode 100644
index 22dfdff..0000000
--- a/.local/share/fonts/ApercuMono/FontsFree-Net-ApercuMono.ttf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/FontAwesome/Font Awesome 5 Brands-Regular-400.otf b/.local/share/fonts/FontAwesome/Font Awesome 5 Brands-Regular-400.otf
deleted file mode 100644
index 8ba7054..0000000
--- a/.local/share/fonts/FontAwesome/Font Awesome 5 Brands-Regular-400.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Regular-400.otf b/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Regular-400.otf
deleted file mode 100644
index 3ec6277..0000000
--- a/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Regular-400.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Solid-900.otf b/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Solid-900.otf
deleted file mode 100644
index cac31d8..0000000
--- a/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Solid-900.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/LigLinLibertineMONerdFont-Mono.otf b/.local/share/fonts/linux-libertine/LigLinLibertineMONerdFont-Mono.otf
deleted file mode 100644
index 8e6ba56..0000000
--- a/.local/share/fonts/linux-libertine/LigLinLibertineMONerdFont-Mono.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/Linux Libertine Display O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf b/.local/share/fonts/linux-libertine/Linux Libertine Display O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
deleted file mode 100644
index 570e7fa..0000000
--- a/.local/share/fonts/linux-libertine/Linux Libertine Display O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/Linux Libertine Initials O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf b/.local/share/fonts/linux-libertine/Linux Libertine Initials O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
deleted file mode 100644
index b09b0aa..0000000
--- a/.local/share/fonts/linux-libertine/Linux Libertine Initials O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/Linux Libertine Mono O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf b/.local/share/fonts/linux-libertine/Linux Libertine Mono O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
deleted file mode 100644
index e89e93d..0000000
--- a/.local/share/fonts/linux-libertine/Linux Libertine Mono O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/Linux Libertine O Bold Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf b/.local/share/fonts/linux-libertine/Linux Libertine O Bold Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
deleted file mode 100644
index 42e3e12..0000000
--- a/.local/share/fonts/linux-libertine/Linux Libertine O Bold Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/Linux Libertine O Bold Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf b/.local/share/fonts/linux-libertine/Linux Libertine O Bold Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
deleted file mode 100644
index b95d56c..0000000
--- a/.local/share/fonts/linux-libertine/Linux Libertine O Bold Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/Linux Libertine O Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf b/.local/share/fonts/linux-libertine/Linux Libertine O Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
deleted file mode 100644
index 479207a..0000000
--- a/.local/share/fonts/linux-libertine/Linux Libertine O Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/Linux Libertine O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf b/.local/share/fonts/linux-libertine/Linux Libertine O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
deleted file mode 100644
index 42277fb..0000000
--- a/.local/share/fonts/linux-libertine/Linux Libertine O Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/Linux Libertine O Semibold Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf b/.local/share/fonts/linux-libertine/Linux Libertine O Semibold Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
deleted file mode 100644
index c13de2b..0000000
--- a/.local/share/fonts/linux-libertine/Linux Libertine O Semibold Italic Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
+++ /dev/null
Binary files differ
diff --git a/.local/share/fonts/linux-libertine/Linux Libertine O Semibold Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf b/.local/share/fonts/linux-libertine/Linux Libertine O Semibold Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
deleted file mode 100644
index 71c646f..0000000
--- a/.local/share/fonts/linux-libertine/Linux Libertine O Semibold Nerd Font Plus Font Awesome Plus Font Awesome Extension Plus Octicons Plus Power Symbols Plus Font Logos (Font Linux) Plus Material Design Icons Plus Weather Icons.otf
+++ /dev/null
Binary files differ