1
0
Fork 0

multiple fixes

This commit is contained in:
J. Elfring 2023-12-25 15:48:01 +01:00
parent 7471338de1
commit ff24a8794e
9 changed files with 55 additions and 11 deletions

View file

@ -10,5 +10,11 @@ font:
family: EnvyCodeR
style: Italic
cursor:
style:
shape: Beam
vi_mode_style:
shape: Underline
import:
- ~/.config/alacritty/active_colourscheme.yml

View file

@ -169,7 +169,7 @@
;;rest ; Emacs as a REST client
;;rst ; ReST in peace
;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
;;(rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
(rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
;;scala ; java, but good
;;(scheme +guile) ; a fully conniving family of lisps
sh ; she sells {ba,z,fi}sh shells on the C xor

22
simpleDots/bin/server.py Executable file
View file

@ -0,0 +1,22 @@
#!/usr/bin/env python3
import http.server as SimpleHTTPServer
import socketserver as SocketServer
import logging
PORT = 8000
class GetHandler(
SimpleHTTPServer.SimpleHTTPRequestHandler
):
def do_GET(self):
logging.error(self.headers)
SimpleHTTPServer.SimpleHTTPRequestHandler.do_GET(self)
Handler = GetHandler
httpd = SocketServer.TCPServer(("", PORT), Handler)
httpd.serve_forever()

View file

@ -7,6 +7,9 @@
#
###############################################################################
export MOZ_USE_XINPUT2=1
test -x ~/.local/bin/startAltBrowserPrivat.sh && (~/.local/bin/startAltBrowserPrivat.sh $@) && exit 0
test -x /usr/bin/firefox && (/usr/bin/firefox --private-window $@ &) && exit 0
test -x /usr/bin/chromium && (/usr/bin/chromium --force-dark-mode --incognito $@ &) && exit 0

View file

@ -7,6 +7,10 @@
#
###############################################################################
export MOZ_USE_XINPUT2=1
test -x ~/.local/bin/startBrowser.sh && (~/.local/bin/startBrowser.sh $@) && exit 0
test -x /usr/bin/firefox && (/usr/bin/firefox $@ &) && exit 0
test -x /usr/bin/chromium && (/usr/bin/chromium --force-dark-mode $@ &) && exit 0

View file

@ -270,6 +270,7 @@ exec_always --no-startup-id /usr/bin/autotiling
## Window Config
for_window [class="smplayer"] floating enable
for_window [instance="x3270"] floating enable
for_window [class="Argon"] floating enable
for_window [class="Vlc"] floating enable
for_window [class="Ghidra"] floating enable

View file

@ -92,9 +92,9 @@ cmap w!! w !sudo tee > /dev/null %
command! -nargs=* -complete=help Help vertical belowright help <args>
" Different Cursorshapes for the modes
let &t_SI = "\<Esc>[6 q"
let &t_SR = "\<Esc>[4 q"
let &t_EI = "\<Esc>[2 q"
"let &t_SI = "\<Esc>[6 q"
"let &t_SR = "\<Esc>[4 q"
"let &t_EI = "\<Esc>[2 q"
" ==================== Remap Keys ====================
" Remaps % to tab so navigate to matching brackets

View file

@ -1,6 +1,6 @@
## Start Keyring-Daemon
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
export SSH_AUTH_SOCK
#eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
#export SSH_AUTH_SOCK
## Import exports
source ~/.exports
@ -15,3 +15,6 @@ test -f ~/.local/Xresources && xrdb -merge ~/.local/Xresources
test -x ~/.screenlayout/.default && ~/.screenlayout/.default
test -x ~/.fehbg && ~/.fehbg
## Add fonts
xset fp+ /usr/share/fonts/3270

View file

@ -2,11 +2,16 @@
#+BEGIN_EXAMPLE
$fierfox-profile/user.js
user_pref("privacy.donottrackheader.enabled", "true" ); // Send Do-not-track
user_pref("findbar.highlightAll", "true" ); // Highlight all partial results in search
user_pref("browser.sessionstore.max_resumed_crashes", "-1" ); // Do not show "Upps, we could not recover"
user_pref("browser.fixup.fallback-to-https", "false"); // Do not try https after http failed
user_pref("extensions.pocket.enabled", "false"); // Disable Pocket
user_pref("privacy.donottrackheader.enabled", true ); // Send Do-not-track
user_pref("findbar.highlightAll", true ); // Highlight all partial results in search
user_pref("browser.sessionstore.max_resumed_crashes", -1 ); // Do not show "Upps, we could not recover"
user_pref("browser.fixup.fallback-to-https", false ); // Do not try https after http failed
user_pref("extensions.pocket.enabled", false ); // Disable Pocket
user_pref("browser.vpn_promo.enabled", false ); // Hide VPN adds
user_pref("cookiebanners.service.mode", 2 );
user_pref("cookiebanners.service.mode.privateBrowsing", 2 );
user_pref("cookiebanners.ui.desktop.enabled", true );
user_pref("signon.firefoxRelay.feature", "0" ) ;
#+END_EXAMPLE