[Misc] switching to new repo for org files
@ -1,2 +0,0 @@
|
||||
--theme="Nord"
|
||||
--map-syntax='.spacemacs*:Lisp'
|
@ -1,56 +0,0 @@
|
||||
alias s systemctl $*
|
||||
|
||||
alias nmcli nmcli -p -c auto $*
|
||||
|
||||
alias chgrp chgrp --preserve-root $*
|
||||
alias chmod chmod --preserve-root $*
|
||||
alias chown chown --preserve-root $*
|
||||
|
||||
alias df df -H $*
|
||||
alias du du -ch $*
|
||||
|
||||
alias grep grep --color=auto $*
|
||||
alias lsl exa -halg@ --group-directories-first --git $*
|
||||
alias lns ln -si $*
|
||||
alias mkdir mkdir -p $*
|
||||
|
||||
alias rm rm -I $*
|
||||
alias rmd rm --preserve-root -Ir $*
|
||||
alias rmdf rm --preserve-root -Irf $*
|
||||
alias rmf rm --preserve-root -If $*
|
||||
|
||||
alias cdebug cmake -DCMAKE_BUILD_TYPE=Debug $*
|
||||
alias crelease cmake -DCMAKE_BUILD_TYPE=Release $*
|
||||
alias g++ g++ -Wall -std=c++17 $*
|
||||
alias gcc gcc -Wall -std=c11 $*
|
||||
alias clang++ clang++ -Wall -std=c++17 $*
|
||||
alias clang clang -Wall -std=c11 $*
|
||||
|
||||
alias dcd docker-compose down
|
||||
alias dcu docker-compose up
|
||||
alias dcud docker-compose up -d
|
||||
alias dcp docker-compose pull
|
||||
|
||||
alias flac youtube-dl -x --audio-format flac --audio-quality 0 $*
|
||||
alias mp3 youtube-dl -x --audio-format flac --audio-quality 0 $*
|
||||
alias wget wget -c $*
|
||||
alias rsync rsync -ruvtEhl --progress $*
|
||||
|
||||
alias remove sudo pacman -Rsc $*
|
||||
|
||||
alias gpumeminfo grep -i --color memory /var/log/Xorg.0.log
|
||||
alias diskspace sudo df -h | grep -E "sd|lv|Size" | sort
|
||||
alias meminfo free -m -l -t
|
||||
alias cpuinfo lscpu
|
||||
alias pscpu ps auxf | sort -nr -k 3
|
||||
alias pscpu10 ps auxf | sort -nr -k 3 | head -10
|
||||
alias psmem ps auxf | sort -nr -k 4
|
||||
alias psmem10 ps auxf | sort -nr -k 4 | head -10
|
||||
|
||||
alias q exit
|
||||
alias exti exit
|
||||
alias exi exit
|
||||
alias clean clear
|
||||
|
||||
alias less view-file $1
|
||||
alias bat view-file $1
|
@ -1,138 +0,0 @@
|
||||
# -*- indent-tabs-mode: t; -*-
|
||||
|
||||
[user]
|
||||
email = lucien@phundrak.com
|
||||
name = Lucien Cartier-Tilet
|
||||
signingkey = BD7789E705CB8DCA
|
||||
|
||||
[core]
|
||||
editor = emacsclient -c -a emacs
|
||||
whitespace = fix,-indent-with-non-tab,trailing-space
|
||||
excludesfile = /home/phundrak/.gitignore_global
|
||||
|
||||
[pull]
|
||||
rebase = true
|
||||
|
||||
[init]
|
||||
defaultBranch = main
|
||||
|
||||
[color]
|
||||
ui = auto
|
||||
|
||||
[web]
|
||||
browser = firefox
|
||||
|
||||
[alias]
|
||||
a = add --all
|
||||
aca = !git add --all && git commit --amend
|
||||
acan = !git add --all && git commit --amend --no-edit
|
||||
b = branch
|
||||
bd = branch -d
|
||||
bdd = branch -D
|
||||
c = commit -S
|
||||
ca = commit -Sa
|
||||
can = commit -Sa --no-edit
|
||||
cm = commit -Sm
|
||||
cam = commit -Sam
|
||||
co = checkout
|
||||
cob = checkout -b
|
||||
cod = checkout develop
|
||||
cl = clone
|
||||
cl1 = clone --depth 1
|
||||
f = fetch
|
||||
fp = fetch --prune
|
||||
ps = push
|
||||
psf = push --force-with-lease
|
||||
pso = push origin
|
||||
psfo = push --force-with-lease origin
|
||||
pushall = !git remote | xargs -L1 git push
|
||||
psl = !git remote | xargs -L1 git push
|
||||
pullall = !git remote | xargs -L1 git pull
|
||||
pll = !git remote | xargs -L1 git pull
|
||||
pl = pull
|
||||
pb = pull --rebase
|
||||
r = rebase
|
||||
ra = rebase --abort
|
||||
rc = rebase --continue
|
||||
rd = rebase develop
|
||||
ri = rebase -i
|
||||
rmf = rm -f
|
||||
rmd = rm -r
|
||||
rmdf = rm -rf
|
||||
sm = submodule
|
||||
sms = submodule status
|
||||
sma = submodule add
|
||||
smu = submodule update
|
||||
smui = submodule update --init
|
||||
smuir = submodule update --init --recursive
|
||||
st = stash
|
||||
stc = stash clear
|
||||
stp = stash pop
|
||||
stw = stash show
|
||||
u = reset --
|
||||
unstage = reset --
|
||||
d = diff -w
|
||||
l = log --oneline --graph --decorate
|
||||
s = status
|
||||
staged = diff --cached
|
||||
upstream = !git push -u origin HEAD
|
||||
|
||||
[sendemail]
|
||||
smtpserver = mail.phundrak.com
|
||||
smtpuser = lucien@phundrak.com
|
||||
smtpencryption = tls
|
||||
smtpserverport = 587
|
||||
|
||||
[credentials "smtp://lucien@phundrak.com@mail.phundrak.com:587"]
|
||||
helper = "secret-tool lookup password email_lucien-phundrak-com"
|
||||
|
||||
[magithub]
|
||||
online = true
|
||||
[magithub "status"]
|
||||
includeStatusHeader = true
|
||||
includePullRequestsSection = true
|
||||
includeIssuesSection = true
|
||||
|
||||
[gpg]
|
||||
program = gpg2
|
||||
[commit]
|
||||
gpgsign = true
|
||||
|
||||
[merge]
|
||||
tool = ediff
|
||||
|
||||
[mergetool.ediff]
|
||||
cmd = emacs --eval \" (progn (defun ediff-write-merge-buffer () (let ((file ediff-merge-store-file)) (set-buffer ediff-buffer-C) (write-region (point-min) (point-max) file) (message \\\"Merge buffer saved in: %s\\\" file) (set-buffer-modified-p nil) (sit-for 1))) (setq ediff-quit-hook 'kill-emacs ediff-quit-merge-hook 'ediff-write-merge-buffer) (ediff-merge-files-with-ancestor \\\"$LOCAL\\\" \\\"$REMOTE\\\" \\\"$BASE\\\" nil \\\"$MERGED\\\"))\"
|
||||
|
||||
[pager]
|
||||
diff = delta
|
||||
log = delta
|
||||
reflog = delta
|
||||
show = delta
|
||||
|
||||
[delta]
|
||||
features = side-by-side line-numbers decorations
|
||||
whitespace-error-style = 22 reverse
|
||||
|
||||
[delta "decorations"]
|
||||
commit-decoration-style = bold yellow box ul
|
||||
file-style = bold yellow ul
|
||||
file-decoration-style = none
|
||||
|
||||
[interactive]
|
||||
diffFilter = delta --color-only
|
||||
|
||||
[github]
|
||||
user = phundrak
|
||||
|
||||
[url "https://phundrak@github.com"]
|
||||
insteadOf = https://github.com
|
||||
|
||||
[url "https://phundrak@labs.phundrak.com"]
|
||||
insteadOf = https://labs.phundrak.com
|
||||
|
||||
[filter "lfs"]
|
||||
required = true
|
||||
clean = git-lfs clean -- %f
|
||||
smudge = git-lfs smudge -- %f
|
||||
process = git-lfs filter-process
|
@ -1,50 +0,0 @@
|
||||
# vim:ft=kitty
|
||||
## name: Nord
|
||||
## author: Connor Holyday
|
||||
## license: MIT
|
||||
## upstream: https://raw.githubusercontent.com/connorholyday/nord-kitty/master/nord.conf
|
||||
## blurb: An arctic, north-bluish clean and elegant Kitty theme.
|
||||
|
||||
# Nord Colorscheme for Kitty
|
||||
# Based on:
|
||||
# - https://gist.github.com/marcusramberg/64010234c95a93d953e8c79fdaf94192
|
||||
# - https://github.com/arcticicestudio/nord-hyper
|
||||
|
||||
foreground #D8DEE9
|
||||
background #2E3440
|
||||
selection_foreground #000000
|
||||
selection_background #FFFACD
|
||||
url_color #0087BD
|
||||
cursor #81A1C1
|
||||
|
||||
# black
|
||||
color0 #3B4252
|
||||
color8 #4C566A
|
||||
|
||||
# red
|
||||
color1 #BF616A
|
||||
color9 #BF616A
|
||||
|
||||
# green
|
||||
color2 #A3BE8C
|
||||
color10 #A3BE8C
|
||||
|
||||
# yellow
|
||||
color3 #EBCB8B
|
||||
color11 #EBCB8B
|
||||
|
||||
# blue
|
||||
color4 #81A1C1
|
||||
color12 #81A1C1
|
||||
|
||||
# magenta
|
||||
color5 #B48EAD
|
||||
color13 #B48EAD
|
||||
|
||||
# cyan
|
||||
color6 #88C0D0
|
||||
color14 #8FBCBB
|
||||
|
||||
# white
|
||||
color7 #E5E9F0
|
||||
color15 #ECEFF4
|
@ -1,101 +0,0 @@
|
||||
[Added Associations]
|
||||
application/epub+zip=emacsclient.desktop;firefox.desktop;
|
||||
application/octet-stream=emacsclient.desktop;
|
||||
application/pdf=org.pwmt.zathura.desktop;xreader.desktop;
|
||||
application/vnd.rar=org.gnome.FileRoller.desktop;
|
||||
application/x-7z-compressed=org.gnome.FileRoller.desktop;
|
||||
application/x-alpm-package=org.gnome.FileRoller.desktop;
|
||||
application/x-apple-diskimage=org.gnome.FileRoller.desktop
|
||||
application/x-bzip=org.gnome.FileRoller.desktop;
|
||||
application/x-cd-image=org.gnome.FileRoller.desktop;
|
||||
application/x-compressed-tar=org.gnome.FileRoller.desktop;
|
||||
application/x-java-archive=javaws.desktop;org.gnome.FileRoller.desktop;
|
||||
application/x-java-jnlp-file=javaws.desktop;
|
||||
application/x-shellscript=emacsclient.desktop;
|
||||
application/x-wine-extension-ini=emacsclient.desktop;
|
||||
application/x-xz-compressed-tar=org.gnome.FileRoller.desktop;
|
||||
application/xhtml+xml=firefox.desktop;
|
||||
application/zip=org.gnome.FileRoller.desktop;
|
||||
audio/mpeg=mpv.desktop;
|
||||
audio/x-mod=mpv.desktop;
|
||||
audio/x-wav=mpv.desktop;
|
||||
image/bmp=nsxiv.desktop;nomacs.desktop;
|
||||
image/gif=nsxiv.desktop;nomacs.desktop;
|
||||
image/jpeg=nsxiv.desktop;nomacs.desktop;com.github.weclaw1.ImageRoll.desktop;
|
||||
image/png=nsxiv.desktop;nomacs.desktop;com.github.weclaw1.ImageRoll.desktop;
|
||||
image/svg+xml=nsxiv.desktop;emacsclient.desktop;nomacs.desktop;org.nomacs.ImageLounge.desktop;org.inkscape.Inkscape.desktop;
|
||||
image/vnd.djvu+multipage=org.pwmt.zathura.desktop;
|
||||
image/webp=nsxiv.desktop;nomacs.desktop;
|
||||
image/x-canon-cr2=nomacs.desktop;
|
||||
inode/directory=nemo.desktop;
|
||||
text/csv=libreoffice-calc.desktop;emacsclient.desktop;
|
||||
text/html=emacsclient.desktop;firefox.desktop;
|
||||
text/markdown=emacsclient.desktop;
|
||||
text/mml=firefox.desktop;
|
||||
text/plain=emacsclient.desktop;sent.desktop;
|
||||
text/troff=emacsclient.desktop;
|
||||
text/vtt=emacsclient.desktop;
|
||||
text/x-csrc=emacsclient.desktop;
|
||||
text/x-java=emacsclient.desktop;
|
||||
text/x-matlab=emacsclient.desktop;
|
||||
text/x-python=emacsclient.desktop;
|
||||
text/xml=firefox.desktop;
|
||||
video/3gpp=mpv.desktop;
|
||||
video/mp4=mpv.desktop;
|
||||
video/mpeg=mpv.desktop;
|
||||
video/webm=mpv.desktop;
|
||||
video/x-matroska=mpv.desktop;
|
||||
video/x-ms-wmv=mpv.desktop;
|
||||
video/x-msvideo=mpv.desktop;
|
||||
x-scheme-handler/https=firefox.desktop;
|
||||
x-scheme-handler/mailto=mu4e.desktop
|
||||
application/vnd.openxmlformats-officedocument.wordprocessingml.document=libreoffice-writer.desktop;
|
||||
audio/x-ms-wma=mpv.desktop;
|
||||
application/x-mobipocket-ebook=FBReader.desktop;
|
||||
application/json=emacsclient.desktop;
|
||||
|
||||
[Default Applications]
|
||||
application/epub+zip=emacsclient.desktop
|
||||
application/octet-stream=emacsclient.desktop
|
||||
application/pdf=org.pwmt.zathura.desktop
|
||||
application/x-wine-extension-ini=emacsclient.desktop
|
||||
application/xhtml+xml=firefox.desktop
|
||||
application/xml=emacsclient.desktop
|
||||
audio/mpeg=mpv.desktop
|
||||
audio/x-mod=mpv.desktop
|
||||
audio/x-wav=mpv.desktop
|
||||
image/bmp=com.github.weclaw1.ImageRoll.desktop
|
||||
image/gif=com.github.weclaw1.ImageRoll.desktop
|
||||
image/jpeg=com.github.weclaw1.ImageRoll.desktop
|
||||
image/png=com.github.weclaw1.ImageRoll.desktop
|
||||
image/svg+xml=com.github.weclaw1.ImageRoll.desktop
|
||||
image/vnd.djvu+multipage=org.pwmt.zathura.desktop
|
||||
image/webp=com.github.weclaw1.ImageRoll.desktop
|
||||
image/x-canon-cr2=com.github.weclaw1.ImageRoll.desktop
|
||||
inode/directory=nemo.desktop
|
||||
text/csv=emacsclient.desktop
|
||||
text/html=firefox.desktop
|
||||
text/markdown=emacsclient.desktop
|
||||
text/mml=firefox.desktop
|
||||
text/plain=sent.desktop
|
||||
text/xml=firefox.desktop
|
||||
video/mp4=mpv.desktop
|
||||
video/mpeg=mpv.desktop
|
||||
video/webm=mpv.desktop
|
||||
video/x-matroska=mpv.desktop
|
||||
video/x-msvideo=mpv.desktop
|
||||
x-scheme-handler/about=firefox.desktop
|
||||
x-scheme-handler/discord-474605546457137157=discord-474605546457137157.desktop
|
||||
x-scheme-handler/http=firefox.desktop
|
||||
x-scheme-handler/https=firefox.desktop
|
||||
x-scheme-handler/lbry=lbry.desktop
|
||||
x-scheme-handler/magnet=qBittorrent.desktop
|
||||
x-scheme-handler/mailto=mu4e.desktop
|
||||
x-scheme-handler/unknown=firefox.desktop
|
||||
application/vnd.openxmlformats-officedocument.wordprocessingml.document=libreoffice-writer.desktop
|
||||
x-scheme-handler/discord-693493612754763907=discord-693493612754763907.desktop
|
||||
audio/x-ms-wma=mpv.desktop
|
||||
x-scheme-handler/flashpoint=flashpoint-launcher.desktop
|
||||
x-scheme-handler/msteams=teams.desktop
|
||||
application/x-mobipocket-ebook=FBReader.desktop
|
||||
application/json=emacsclient.desktop
|
@ -1,184 +0,0 @@
|
||||
# mpv keybindings
|
||||
#
|
||||
# Location of user-defined bindings: ~/.config/mpv/input.conf
|
||||
#
|
||||
# Lines starting with # are comments. Use SHARP to assign the # key.
|
||||
# Copy this file and uncomment and edit the bindings you want to change.
|
||||
#
|
||||
# List of commands and further details: DOCS/man/input.rst
|
||||
# List of special keys: --input-keylist
|
||||
# Keybindings testing mode: mpv --input-test --force-window --idle
|
||||
#
|
||||
# Use 'ignore' to unbind a key fully (e.g. 'ctrl+a ignore').
|
||||
#
|
||||
# Strings need to be quoted and escaped:
|
||||
# KEY show-text "This is a single backslash: \\ and a quote: \" !"
|
||||
#
|
||||
# You can use modifier-key combinations like Shift+Left or Ctrl+Alt+x with
|
||||
# the modifiers Shift, Ctrl, Alt and Meta (may not work on the terminal).
|
||||
#
|
||||
# The default keybindings are hardcoded into the mpv binary.
|
||||
# You can disable them completely with: --no-input-default-bindings
|
||||
|
||||
# Developer note:
|
||||
# On compilation, this file is baked into the mpv binary, and all lines are
|
||||
# uncommented (unless '#' is followed by a space) - thus this file defines the
|
||||
# default key bindings.
|
||||
|
||||
# If this is enabled, treat all the following bindings as default.
|
||||
#default-bindings start
|
||||
|
||||
#MBTN_LEFT ignore # don't do anything
|
||||
#MBTN_LEFT_DBL cycle fullscreen # toggle fullscreen on/off
|
||||
#MBTN_RIGHT cycle pause # toggle pause on/off
|
||||
|
||||
# Mouse wheels, touchpad or other input devices that have axes
|
||||
# if the input devices supports precise scrolling it will also scale the
|
||||
# numeric value accordingly
|
||||
#WHEEL_UP seek 10
|
||||
#WHEEL_DOWN seek -10
|
||||
#WHEEL_LEFT add volume -2
|
||||
#WHEEL_RIGHT add volume 2
|
||||
|
||||
## Seek units are in seconds, but note that these are limited by keyframes
|
||||
#RIGHT seek 5
|
||||
#LEFT seek -5
|
||||
#UP seek 60
|
||||
#DOWN seek -60
|
||||
# Do smaller, always exact (non-keyframe-limited), seeks with shift.
|
||||
# Don't show them on the OSD (no-osd).
|
||||
#Shift+RIGHT no-osd seek 1 exact
|
||||
#Shift+LEFT no-osd seek -1 exact
|
||||
#Shift+UP no-osd seek 5 exact
|
||||
#Shift+DOWN no-osd seek -5 exact
|
||||
# Skip to previous/next subtitle (subject to some restrictions; see manpage)
|
||||
#Ctrl+LEFT no-osd sub-seek -1
|
||||
#Ctrl+RIGHT no-osd sub-seek 1
|
||||
#PGUP add chapter 1 # skip to next chapter
|
||||
#PGDWN add chapter -1 # skip to previous chapter
|
||||
#Shift+PGUP seek 600
|
||||
#Shift+PGDWN seek -600
|
||||
#[ multiply speed 0.9091 # scale playback speed
|
||||
#] multiply speed 1.1
|
||||
#{ multiply speed 0.5
|
||||
#} multiply speed 2.0
|
||||
#BS set speed 1.0 # reset speed to normal
|
||||
#q quit
|
||||
Q quit-watch-later
|
||||
#q {encode} quit 4
|
||||
#ESC set fullscreen no
|
||||
#ESC {encode} quit 4
|
||||
#p cycle pause # toggle pause/playback mode
|
||||
#. frame-step # advance one frame and pause
|
||||
#, frame-back-step # go back by one frame and pause
|
||||
#SPACE cycle pause
|
||||
#> playlist-next # skip to next file
|
||||
#ENTER playlist-next # skip to next file
|
||||
#< playlist-prev # skip to previous file
|
||||
#O no-osd cycle-values osd-level 3 1 # cycle through OSD mode
|
||||
#o show-progress
|
||||
P show-progress
|
||||
#z add sub-delay -0.1 # subtract 100 ms delay from subs
|
||||
#x add sub-delay +0.1 # add
|
||||
#ctrl++ add audio-delay 0.100 # this changes audio/video sync
|
||||
#ctrl+- add audio-delay -0.100
|
||||
#9 add volume -2
|
||||
/ add volume -2
|
||||
#0 add volume 2
|
||||
* add volume 2
|
||||
m cycle mute
|
||||
#1 add contrast -1
|
||||
#2 add contrast 1
|
||||
#3 add brightness -1
|
||||
#4 add brightness 1
|
||||
#5 add gamma -1
|
||||
#6 add gamma 1
|
||||
#7 add saturation -1
|
||||
#8 add saturation 1
|
||||
#Alt+0 set window-scale 0.5
|
||||
#Alt+1 set window-scale 1.0
|
||||
#Alt+2 set window-scale 2.0
|
||||
# toggle deinterlacer (automatically inserts or removes required filter)
|
||||
#d cycle deinterlace
|
||||
#r add sub-pos -1 # move subtitles up
|
||||
#t add sub-pos +1 # down
|
||||
#v cycle sub-visibility
|
||||
# stretch SSA/ASS subtitles with anamorphic videos to match historical
|
||||
#V cycle sub-ass-vsfilter-aspect-compat
|
||||
# switch between applying no style overrides to SSA/ASS subtitles, and
|
||||
# overriding them almost completely with the normal subtitle style
|
||||
#u cycle-values sub-ass-override "force" "no"
|
||||
#j cycle sub # cycle through subtitles
|
||||
#J cycle sub down # ...backwards
|
||||
#SHARP cycle audio # switch audio streams
|
||||
#_ cycle video
|
||||
#T cycle ontop # toggle video window ontop of other windows
|
||||
#f cycle fullscreen # toggle fullscreen
|
||||
#s async screenshot # take a screenshot
|
||||
#S async screenshot video # ...without subtitles
|
||||
#Ctrl+s async screenshot window # ...with subtitles and OSD, and scaled
|
||||
#Alt+s screenshot each-frame # automatically screenshot every frame
|
||||
#w add panscan -0.1 # zoom out with -panscan 0 -fs
|
||||
#e add panscan +0.1 # in
|
||||
# cycle video aspect ratios; "-1" is the container aspect
|
||||
#A cycle-values video-aspect "16:9" "4:3" "2.35:1" "-1"
|
||||
#POWER quit
|
||||
#PLAY cycle pause
|
||||
#PAUSE cycle pause
|
||||
#PLAYPAUSE cycle pause
|
||||
#STOP quit
|
||||
#FORWARD seek 60
|
||||
#REWIND seek -60
|
||||
#NEXT playlist-next
|
||||
#PREV playlist-prev
|
||||
#VOLUME_UP add volume 2
|
||||
#VOLUME_DOWN add volume -2
|
||||
#MUTE cycle mute
|
||||
#CLOSE_WIN quit
|
||||
#CLOSE_WIN {encode} quit 4
|
||||
#E cycle edition # next edition
|
||||
#l ab-loop # Set/clear A-B loop points
|
||||
#L cycle-values loop-file "inf" "no" # toggle infinite looping
|
||||
#ctrl+c quit 4
|
||||
|
||||
# Apple Remote section
|
||||
#AR_PLAY cycle pause
|
||||
#AR_PLAY_HOLD quit
|
||||
#AR_CENTER cycle pause
|
||||
#AR_CENTER_HOLD quit
|
||||
#AR_NEXT seek 10
|
||||
#AR_NEXT_HOLD seek 120
|
||||
#AR_PREV seek -10
|
||||
#AR_PREV_HOLD seek -120
|
||||
#AR_MENU show-progress
|
||||
#AR_MENU_HOLD cycle mute
|
||||
#AR_VUP add volume 2
|
||||
#AR_VUP_HOLD add chapter 1
|
||||
#AR_VDOWN add volume -2
|
||||
#AR_VDOWN_HOLD add chapter -1
|
||||
|
||||
#
|
||||
# Legacy bindings (may or may not be removed in the future)
|
||||
#
|
||||
#! add chapter -1 # skip to previous chapter
|
||||
#@ add chapter 1 # next
|
||||
|
||||
#
|
||||
# Not assigned by default
|
||||
# (not an exhaustive list of unbound commands)
|
||||
#
|
||||
|
||||
# ? add sub-scale +0.1 # increase subtitle font size
|
||||
# ? add sub-scale -0.1 # decrease subtitle font size
|
||||
# ? sub-step -1 # immediately display next subtitle
|
||||
# ? sub-step +1 # previous
|
||||
# ? cycle angle # switch DVD/Bluray angle
|
||||
# ? add balance -0.1 # adjust audio balance in favor of left
|
||||
# ? add balance 0.1 # right
|
||||
# ? cycle sub-forced-only # toggle DVD forced subs
|
||||
# ? cycle program # cycle transport stream programs
|
||||
# ? stop # stop playback (quit or enter idle mode)
|
||||
I vf toggle format=yuv420p,vapoursynth=~~/motioninterpolation.vpy:4:4
|
||||
M vf toggle hflip
|
||||
|
||||
Ctrl+r cycle_values video-rotate "90" "180" "270" "0"
|
@ -1,153 +0,0 @@
|
||||
#
|
||||
# Example mpv configuration file
|
||||
#
|
||||
# Warning:
|
||||
#
|
||||
# The commented example options usually do _not_ set the default values. Call
|
||||
# mpv with --list-options to see the default values for most options. There is
|
||||
# no builtin or example mpv.conf with all the defaults.
|
||||
#
|
||||
#
|
||||
# Configuration files are read system-wide from /usr/local/etc/mpv.conf
|
||||
# and per-user from ~/.config/mpv/mpv.conf, where per-user settings override
|
||||
# system-wide settings, all of which are overridden by the command line.
|
||||
#
|
||||
# Configuration file settings and the command line options use the same
|
||||
# underlying mechanisms. Most options can be put into the configuration file
|
||||
# by dropping the preceding '--'. See the man page for a complete list of
|
||||
# omeone explain to me how est of at least 10 milliptions.
|
||||
#
|
||||
# Lines starting with '#' are comments and are ignored.
|
||||
#
|
||||
# See the CONFIGURATION FILES section in the man page
|
||||
# for a detailed description of the syntax.
|
||||
#
|
||||
# Profiles should be placed at the bottom of the configuration file to ensure
|
||||
# that settings wanted as defaults are not restricted to specific profiles.
|
||||
|
||||
input-ipc-server=/tmp/mpvsocket
|
||||
|
||||
##################
|
||||
# video settings #
|
||||
##################
|
||||
|
||||
# Start in fullscreen mode by default.
|
||||
#fs=yes
|
||||
|
||||
# force starting with centered window
|
||||
geometry=50%:50%
|
||||
|
||||
# don't allow a new window to have a size larger than 90% of the screen size
|
||||
autofit-larger=90%x90%
|
||||
|
||||
# Do not close the window on exit.
|
||||
keep-open=no
|
||||
|
||||
# Do not wait with showing the video window until it has loaded. (This will
|
||||
# resize the window once video is loaded. Also always shows a window with
|
||||
# audio.)
|
||||
force-window=immediate
|
||||
|
||||
# Disable the On Screen Controller (OSC).
|
||||
osc=yes
|
||||
|
||||
# Keep the player window on top of all other windows.
|
||||
#ontop=yes
|
||||
|
||||
# Specify high quality video rendering preset (for OpenGL VO only)
|
||||
# Can cause performance problems with some drivers and GPUs.
|
||||
# profile=opengl-hq
|
||||
# scale=ewa_lanczossharp
|
||||
# cscale=ewa_lanczossharp
|
||||
# video-sync=display-resample
|
||||
# interpolation
|
||||
# tscale=oversample
|
||||
|
||||
# Force video to lock on the display's refresh rate, and change video and audio
|
||||
# speed to some degree to ensure synchronous playback - can cause problems
|
||||
# with some drivers and desktop environments.
|
||||
video-sync=display-resample
|
||||
|
||||
# Enable hardware decoding if available. Often, this does not work with all
|
||||
# video outputs, but should work well with default settings on most systems.
|
||||
# If performance or energy usage is an issue, forcing the vdpau or vaapi VOs
|
||||
# may or may not help.
|
||||
hwdec=auto-copy
|
||||
|
||||
##################
|
||||
# audio settings #
|
||||
##################
|
||||
|
||||
# Specify default audio device. You can list devices with: --audio-device=help
|
||||
# The option takes the device string (the stuff between the '...').
|
||||
#audio-device=alsa/default
|
||||
|
||||
# Do not filter audio to keep pitch when changing playback speed.
|
||||
#audio-pitch-correction=no
|
||||
|
||||
# Output 5.1 audio natively, and upmix/downmix audio with a different format.
|
||||
#audio-channels=5.1
|
||||
# Disable any automatic remix, _if_ the audio output accepts the audio format.
|
||||
# of the currently played file. See caveats mentioned in the manpage.
|
||||
# (The default is "auto-safe", see manpage.)
|
||||
#audio-channels=auto
|
||||
|
||||
##################
|
||||
# other settings #
|
||||
##################
|
||||
|
||||
# Pretend to be a web browser. Might fix playback with some streaming sites,
|
||||
# but also will break with shoutcast streams.
|
||||
#user-agent="Mozilla/5.0"
|
||||
|
||||
# cache settings
|
||||
#
|
||||
# Use 150MB input cache by default. The cache is enabled for network streams only.
|
||||
#cache-default=153600
|
||||
#
|
||||
# Use 150MB input cache for everything, even local files.
|
||||
#cache=153600
|
||||
#
|
||||
# Disable the behavior that the player will pause if the cache goes below a
|
||||
# certain fill size.
|
||||
#cache-pause=no
|
||||
#
|
||||
# Read ahead about 5 seconds of audio and video packets.
|
||||
#demuxer-readahead-secs=5.0
|
||||
#
|
||||
# Raise readahead from demuxer-readahead-secs to this value if a cache is active.
|
||||
#cache-secs=50.0
|
||||
|
||||
# Display English subtitles if available.
|
||||
slang=en,fr
|
||||
|
||||
# Play English audio if available, fall back to French otherwise.
|
||||
alang=en,fr
|
||||
|
||||
# Change subtitle encoding. For Arabic subtitles use 'cp1256'.
|
||||
# If the file seems to be valid UTF-8, prefer UTF-8.
|
||||
# (You can add '+' in front of the codepage to force it.)
|
||||
sub-codepage=UTF-8
|
||||
|
||||
# You can also include other configuration files.
|
||||
#include=/path/to/the/file/you/want/to/include
|
||||
|
||||
############
|
||||
# Profiles #
|
||||
############
|
||||
|
||||
# The options declared as part of profiles override global default settings,
|
||||
# but only take effect when the profile is active.
|
||||
|
||||
# The following profile can be enabled on the command line with: --profile=eye-cancer
|
||||
|
||||
[eye-cancer]
|
||||
sharpen=5
|
||||
|
||||
[qualitatif]
|
||||
profile=opengl-hq
|
||||
scale=ewa_lanczossharp
|
||||
cscale=ewa_lanczossharp
|
||||
video-sync=display-resample
|
||||
interpolation
|
||||
tscale=oversample
|
@ -1,357 +0,0 @@
|
||||
# -*- mode: conf -*-
|
||||
##############################################################################
|
||||
## This is the example configuration file. Copy it to $HOME/.ncmpcpp/config ##
|
||||
## or $XDG_CONFIG_HOME/ncmpcpp/config and set up your preferences. ##
|
||||
##############################################################################
|
||||
#
|
||||
##### directories ######
|
||||
ncmpcpp_directory = ~/.config/ncmpcpp
|
||||
lyrics_directory = ~/.lyrics
|
||||
|
||||
##### MPD #####
|
||||
mpd_host = localhost
|
||||
mpd_port = 6600
|
||||
mpd_music_dir = ~/Music
|
||||
mpd_connection_timeout = 5
|
||||
mpd_crossfade_time = 0
|
||||
|
||||
##### music visualizer #####
|
||||
# visualizer_fifo_path = /tmp/mpd.fifo
|
||||
visualizer_output_name = "my_fifo"
|
||||
visualizer_in_stereo = yes
|
||||
# visualizer_sync_interval = 10
|
||||
visualizer_type = "spectrum" ## Available values: spectrum, wave, wave_filled, ellipse.
|
||||
visualizer_look = "+|"
|
||||
visualizer_color = blue, cyan, green, yellow, magenta, red
|
||||
|
||||
##### system encoding #####
|
||||
system_encoding = "UTF-8"
|
||||
|
||||
##### delays #####
|
||||
#playlist_disable_highlight_delay = 5
|
||||
#message_delay_time = 5
|
||||
|
||||
##### song format #####
|
||||
##
|
||||
## For a song format you can use:
|
||||
##
|
||||
## %l - length
|
||||
## %f - filename
|
||||
## %D - directory
|
||||
## %a - artist
|
||||
## %A - album artist
|
||||
## %t - title
|
||||
## %b - album
|
||||
## %y - date
|
||||
## %n - track number (01/12 -> 01)
|
||||
## %N - full track info (01/12 -> 01/12)
|
||||
## %g - genre
|
||||
## %c - composer
|
||||
## %p - performer
|
||||
## %d - disc
|
||||
## %C - comment
|
||||
## %P - priority
|
||||
## $R - begin right alignment
|
||||
##
|
||||
## If you want to make sure that a part of the format is displayed only when
|
||||
## certain tags are present, you can archieve it by grouping them with brackets,
|
||||
## e.g. '{%a - %t}' will be evaluated to 'ARTIST - TITLE' if both tags are
|
||||
## present or '' otherwise. It is also possible to define a list of alternatives
|
||||
## by providing several groups and separating them with '|', e.g. '{%t}|{%f}'
|
||||
## will be evaluated to 'TITLE' or 'FILENAME' if the former is not present.
|
||||
##
|
||||
## Note: If you want to set limit on maximal length of a tag, just put the
|
||||
## appropriate number between % and character that defines tag type, e.g. to
|
||||
## make album take max. 20 terminal cells, use '%20b'.
|
||||
##
|
||||
## In addition, formats support markers used for text attributes. They are
|
||||
## followed by character '$'. After that you can put:
|
||||
##
|
||||
## - 0 - default window color (discards all other colors)
|
||||
## - 1 - black
|
||||
## - 2 - red
|
||||
## - 3 - green
|
||||
## - 4 - yellow
|
||||
## - 5 - blue
|
||||
## - 6 - magenta
|
||||
## - 7 - cyan
|
||||
## - 8 - white
|
||||
## - 9 - end of current color
|
||||
## - b - bold text
|
||||
## - u - underline text
|
||||
## - r - reverse colors
|
||||
## - a - use alternative character set
|
||||
##
|
||||
## If you don't want to use a non-color attribute anymore, just put it again,
|
||||
## but this time insert character '/' between '$' and attribute character, e.g.
|
||||
## {$b%t$/b}|{$r%f$/r} will display bolded title tag or filename with reversed
|
||||
## colors.
|
||||
##
|
||||
## If you want to use 256 colors and/or background colors in formats (the naming
|
||||
## scheme is described below in section about color definitions), it can be done
|
||||
## with the syntax $(COLOR), e.g. to set the artist tag to one of the
|
||||
## non-standard colors and make it have yellow background, you need to write
|
||||
## $(197_yellow)%a$(end). Note that for standard colors this is interchangable
|
||||
## with attributes listed above.
|
||||
##
|
||||
## Note: colors can be nested.
|
||||
##
|
||||
#
|
||||
song_list_format = (6)[]{} (23)[red]{a} (26)[yellow]{t|f} (40)[green]{b} (4)[blue]{l}
|
||||
#song_status_format = {{%a{ "%b"{ (%y)}} - }{%t}}|{%f}
|
||||
#song_library_format = {%n - }{%t}|{%f}
|
||||
#alternative_header_first_line_format = $b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b
|
||||
#alternative_header_second_line_format = {{$4$b%a$/b$9}{ - $7%b$9}{ ($4%y$9)}}|{%D}
|
||||
#current_item_prefix = $(yellow)$r
|
||||
#current_item_suffix = $/r$(end)
|
||||
#current_item_inactive_column_prefix = $(white)$r
|
||||
#current_item_inactive_column_suffix = $/r$(end)
|
||||
now_playing_prefix = $b
|
||||
now_playing_suffix = $8$/b
|
||||
#browser_playlist_prefix = "$2playlist$9 "
|
||||
#selected_item_prefix = $6
|
||||
#selected_item_suffix = $9
|
||||
#modified_item_prefix = $3> $9
|
||||
#song_window_title_format = {%a - }{%t}|{%f}
|
||||
|
||||
##
|
||||
## Note: Below variables are used for sorting songs in browser. The sort mode
|
||||
## determines how songs are sorted, and can be used in combination with a sort
|
||||
## format to specify a custom sorting format. Available values for
|
||||
## browser_sort_mode are "name", "mtime", "format" and "noop".
|
||||
##
|
||||
#
|
||||
#browser_sort_mode = name
|
||||
#browser_sort_format = {%a - }{%t}|{%f} {(%l)}
|
||||
|
||||
##### columns settings #####
|
||||
##
|
||||
## syntax of song columns list format is "column column etc."
|
||||
##
|
||||
## - syntax for each column is:
|
||||
##
|
||||
## (width of the column)[color of the column]{displayed tag}
|
||||
##
|
||||
## Note: Width is by default in %, if you want a column to have fixed size, add
|
||||
## 'f' after the value, e.g. (10)[white]{a} will be the column that take 10% of
|
||||
## screen (so the real width will depend on actual screen size), whereas
|
||||
## (10f)[white]{a} will take 10 terminal cells, no matter how wide the screen
|
||||
## is.
|
||||
##
|
||||
## - color is optional (if you want the default one, leave the field empty).
|
||||
##
|
||||
## Note: You can give a column additional attributes by putting appropriate
|
||||
## character after displayed tag character. Available attributes are:
|
||||
##
|
||||
## - r - column will be right aligned
|
||||
## - E - if tag is empty, empty tag marker won't be displayed
|
||||
##
|
||||
## You can also:
|
||||
##
|
||||
## - give a column custom name by putting it after attributes, separated with
|
||||
## character ':', e.g. {lr:Length} gives you right aligned column of lengths
|
||||
## named "Length".
|
||||
##
|
||||
## - define sequence of tags, that have to be displayed in case predecessor is
|
||||
## empty in a way similar to the one in classic song format, i.e. using '|'
|
||||
## character, e.g. {a|c|p:Owner} creates column named "Owner" that tries to
|
||||
## display artist tag and then composer and performer if previous ones are not
|
||||
## available.
|
||||
##
|
||||
song_columns_list_format = (6)[]{} (23)[red]{a} (26)[yellow]{t|f} (40)[green]{b} (4)[blue]{l}
|
||||
|
||||
##### various settings #####
|
||||
|
||||
##
|
||||
## Note: Custom command that will be executed each time song changes. Useful for
|
||||
## notifications etc.
|
||||
##
|
||||
#execute_on_song_change = "~/.ncmpcpp/art.sh"
|
||||
#song_list_format = " $2%t $R$5%a "
|
||||
|
||||
##
|
||||
## Note: Custom command that will be executed each time player state changes.
|
||||
## The environment variable MPD_PLAYER_STATE is set to the current state (either
|
||||
## unknown, play, pause, or stop) for its duration.
|
||||
##
|
||||
#execute_on_player_state_change = ""
|
||||
#playlist_show_mpd_host = no
|
||||
#playlist_show_remaining_time = no
|
||||
playlist_shorten_total_times = yes
|
||||
#playlist_separate_albums = no
|
||||
|
||||
##
|
||||
## Note: Possible display modes: classic, columns.
|
||||
##
|
||||
playlist_display_mode = columns
|
||||
browser_display_mode = "columns"
|
||||
search_engine_display_mode = "columns"
|
||||
playlist_editor_display_mode = "columns"
|
||||
#discard_colors_if_item_is_selected = yes
|
||||
#show_duplicate_tags = yes
|
||||
#incremental_seeking = yes
|
||||
#seek_time = 1
|
||||
#volume_change_step = 2
|
||||
autocenter_mode = yes
|
||||
centered_cursor = yes
|
||||
|
||||
##
|
||||
## Note: You can specify third character which will be used to build 'empty'
|
||||
## part of progressbar.
|
||||
##
|
||||
progressbar_look = "─> "
|
||||
#default_place_to_search_in = database ## Available values: database, playlist.
|
||||
#user_interface = classic ## Available values: classic, alternative.
|
||||
#data_fetching_delay = yes
|
||||
#media_library_primary_tag = artist ## Available values: artist, album_artist, date, genre, composer, performer.
|
||||
#media_library_albums_split_by_date = yes
|
||||
#default_find_mode = wrapped ## Available values: wrapped, normal.
|
||||
#default_tag_editor_pattern = %n - %t
|
||||
header_visibility = no
|
||||
statusbar_visibility = no
|
||||
titles_visibility = no
|
||||
#header_text_scrolling = yes
|
||||
#cyclic_scrolling = no
|
||||
#lines_scrolled = 2
|
||||
#lyrics_fetchers = lyricwiki, azlyrics, genius, sing365, lyricsmania, metrolyrics, justsomelyrics, jahlyrics, plyrics, tekstowo, internet
|
||||
#follow_now_playing_lyrics = no
|
||||
#fetch_lyrics_for_current_song_in_background = no
|
||||
#store_lyrics_in_song_dir = no
|
||||
#generate_win32_compatible_filenames = yes
|
||||
allow_for_physical_item_deletion = yes
|
||||
|
||||
##
|
||||
## Note: If you set this variable, ncmpcpp will try to get info from last.fm in
|
||||
## language you set and if it fails, it will fall back to english. Otherwise it
|
||||
## will use english the first time.
|
||||
##
|
||||
## Note: Language has to be expressed as an ISO 639 alpha-2 code.
|
||||
##
|
||||
lastfm_preferred_language = en
|
||||
space_add_mode = add_remove
|
||||
#show_hidden_files_in_local_browser = no
|
||||
|
||||
##
|
||||
## How shall screen switcher work?
|
||||
##
|
||||
## - "previous" - switch between the current and previous screen.
|
||||
## - "screen1,...,screenN" - switch between given sequence of screens.
|
||||
##
|
||||
## Screens available for use: help, playlist, browser, search_engine,
|
||||
## media_library, playlist_editor, tag_editor, outputs, visualizer, clock,
|
||||
## lyrics, last_fm.
|
||||
##
|
||||
#screen_switcher_mode = playlist, browser
|
||||
|
||||
##
|
||||
## Note: You can define startup screen by choosing screen from the list above.
|
||||
##
|
||||
#startup_screen = playlist
|
||||
|
||||
##
|
||||
## Note: You can define startup slave screen by choosing screen from the list
|
||||
## above or an empty value for no slave screen.
|
||||
##
|
||||
#startup_slave_screen = ""
|
||||
#startup_slave_screen_focus = no
|
||||
|
||||
##
|
||||
## Default width of locked screen (in %). Acceptable values are from 20 to 80.
|
||||
##
|
||||
locked_screen_width_part = 50
|
||||
ask_for_locked_screen_width_part = yes
|
||||
jump_to_now_playing_song_at_start = yes
|
||||
ask_before_clearing_playlists = yes
|
||||
clock_display_seconds = no
|
||||
display_volume_level = yes
|
||||
display_bitrate = no
|
||||
display_remaining_time = yes
|
||||
|
||||
## Available values: none, basic, extended, perl.
|
||||
regular_expressions = extended
|
||||
|
||||
##
|
||||
## Note: if below is enabled, ncmpcpp will ignore leading "The" word while
|
||||
## sorting items in browser, tags in media library, etc.
|
||||
##
|
||||
ignore_leading_the = yes
|
||||
|
||||
##
|
||||
## Note: if below is enabled, ncmpcpp will ignore diacritics while searching and
|
||||
## filtering lists. This takes an effect only if boost was compiled with ICU
|
||||
## support.
|
||||
##
|
||||
ignore_diacritics = yes
|
||||
#block_search_constraints_change_if_items_found = yes
|
||||
mouse_support = no
|
||||
#mouse_list_scroll_whole_page = yes
|
||||
#empty_tag_marker = <empty>
|
||||
tags_separator = " ; "
|
||||
#tag_editor_extended_numeration = no
|
||||
#media_library_sort_by_mtime = no
|
||||
enable_window_title = yes
|
||||
|
||||
##
|
||||
## Note: You can choose default search mode for search engine. Available modes
|
||||
## are:
|
||||
##
|
||||
## - 1 - use mpd built-in searching (no regexes, pattern matching)
|
||||
##
|
||||
## - 2 - use ncmpcpp searching (pattern matching with support for regexes, but
|
||||
## if your mpd is on a remote machine, downloading big database to process
|
||||
## it can take a while
|
||||
##
|
||||
## - 3 - match only exact values (this mode uses mpd function for searching in
|
||||
## database and local one for searching in current playlist)
|
||||
##
|
||||
search_engine_default_search_mode = 1
|
||||
external_editor = emacsclient -c
|
||||
## Note: set to yes if external editor is a console application.
|
||||
use_console_editor = yes
|
||||
|
||||
##### colors definitions #####
|
||||
##
|
||||
## It is possible to set a background color by setting a color value
|
||||
## "<foreground>_<background>", e.g. red_black will set foregound color to red
|
||||
## and background color to black.
|
||||
##
|
||||
## In addition, for terminals that support 256 colors it is possible to set one
|
||||
## of them by using a number in range [1, 256] instead of color name, e.g.
|
||||
## numerical value corresponding to red_black is 2_1. To find out if the
|
||||
## terminal supports 256 colors, run ncmpcpp and check out the bottom of the
|
||||
## help screen for list of available colors and their numerical values.
|
||||
##
|
||||
## What is more, there are two special values for the background color:
|
||||
## "transparent" and "current". The first one explicitly sets the background to
|
||||
## be transparent, while the second one allows you to preserve current
|
||||
## background color and change only the foreground one. It's used implicitly
|
||||
## when background color is not specified.
|
||||
##
|
||||
## Moreover, it is possible to attach format information to selected color
|
||||
## variables by appending to their end a colon followed by one or more format
|
||||
## flags, e.g. black:b or red:ur. The following variables support this syntax:
|
||||
## visualizer_color, color1, color2, empty_tag_color, volume_color,
|
||||
## state_line_color, state_flags_color, progressbar_color,
|
||||
## progressbar_elapsed_color, player_state_color, statusbar_time_color,
|
||||
## alternative_ui_separator_color.
|
||||
##
|
||||
## Note: due to technical limitations of older ncurses version, if 256 colors
|
||||
## are used there is a possibility that you'll be able to use only colors with
|
||||
## transparent background.
|
||||
colors_enabled = yes
|
||||
#empty_tag_color = cyan
|
||||
#header_window_color = default
|
||||
volume_color = default
|
||||
#state_line_color = default
|
||||
#state_flags_color = default:b
|
||||
#main_window_color = yellow
|
||||
#color1 = white
|
||||
#color2 = green
|
||||
progressbar_color = "black"
|
||||
progressbar_elapsed_color = "white"
|
||||
statusbar_color = "white"
|
||||
#statusbar_time_color = default:b
|
||||
#player_state_color = default:b
|
||||
#alternative_ui_separator_color = black:b
|
||||
#window_border_color = green
|
||||
#active_window_border = red
|
@ -1,423 +0,0 @@
|
||||
from __future__ import annotations
|
||||
from typing import Callable, Any
|
||||
|
||||
import os
|
||||
import time
|
||||
import logging
|
||||
import psutil
|
||||
import subprocess
|
||||
import dbus
|
||||
import docker
|
||||
|
||||
docker_client = docker.from_env()
|
||||
|
||||
from newm.layout import Layout
|
||||
from newm.helper import BacklightManager, WobRunner, PaCtl
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
debug_windows = False
|
||||
|
||||
|
||||
def run_shell(command: str):
|
||||
"""Run a shell command asynchronously
|
||||
If the shell command doesn't already end with "&", add it.
|
||||
"""
|
||||
if not command.endswith("&"):
|
||||
command = command + " &"
|
||||
os.system(command)
|
||||
|
||||
|
||||
def command_is_running(command: str):
|
||||
for proc in psutil.process_iter():
|
||||
try:
|
||||
cmdline = proc.cmdline()
|
||||
except psutil.NoSuchProcess:
|
||||
continue
|
||||
if command in cmdline[0]:
|
||||
return True
|
||||
return False
|
||||
|
||||
|
||||
def on_reconfigure():
|
||||
run_shell('notify-send newm "Reloaded config"')
|
||||
|
||||
|
||||
def on_startup():
|
||||
run_shell("mpc stop")
|
||||
run_shell("dunst")
|
||||
run_shell("pactl load-module module-switch-on-connect")
|
||||
run_shell("xfce-polkit")
|
||||
run_shell("kdeconnectd")
|
||||
os.system(
|
||||
"systemctl --user import-environment DISPLAY \
|
||||
WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
|
||||
)
|
||||
os.system(
|
||||
"dbus-update-activation-environment && \
|
||||
dbus-update-activation-environment --systemd DISPLAY \
|
||||
WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
|
||||
)
|
||||
|
||||
|
||||
with open("{}/.cache/wallpaper".format(os.environ["HOME"])) as wp_cache:
|
||||
background = {
|
||||
"path": wp_cache.read().strip(),
|
||||
"anim": True,
|
||||
}
|
||||
|
||||
pywm = {
|
||||
"xkb_layout": "fr",
|
||||
"xkb_variant": "bepo_afnor",
|
||||
"xkb_options": "caps:ctrl_modifier",
|
||||
"enable_xwayland": True,
|
||||
"natural_scroll": False,
|
||||
"focus_follows_mouse": True,
|
||||
"encourage_csd": False,
|
||||
}
|
||||
|
||||
outputs = [
|
||||
{"name": "eDP-1", "mHz": 120_000},
|
||||
{
|
||||
"name": "HDMI-A-1",
|
||||
"pos_x": -2560,
|
||||
"pos_y": 0,
|
||||
"width": 2560,
|
||||
"height": 1080,
|
||||
},
|
||||
]
|
||||
|
||||
wob_runner = WobRunner("wob -a bottom -M 100")
|
||||
backlight_manager = BacklightManager(anim_time=1.0, bar_display=wob_runner)
|
||||
kbdlight_manager = BacklightManager(
|
||||
args="--device='*::kbd_backlight'", anim_time=1.0, bar_display=wob_runner
|
||||
)
|
||||
|
||||
|
||||
def synchronous_update() -> None:
|
||||
backlight_manager.update()
|
||||
kbdlight_manager.update()
|
||||
|
||||
|
||||
def rules(m_view):
|
||||
blur_apps = ("kitty", "wofi", "rofi", "emacsclient", "emacs")
|
||||
float_apps = ("Rofi", "xfce-polkit")
|
||||
nonfloat_apps = ("discord", "Discord")
|
||||
m_rules = {}
|
||||
if m_view.app_id in blur_apps:
|
||||
m_rules.update({"blur": {"radius": 6, "passes": 2}})
|
||||
if m_view.app_id in float_apps:
|
||||
m_rules.update({"float": True})
|
||||
if m_view.app_id in nonfloat_apps:
|
||||
m_rules.update({"float": False})
|
||||
if debug_windows:
|
||||
with open("/tmp/newm_windows.txt", "a", encoding="utf-8") as file:
|
||||
file.write(f"{str(m_view.app_id)}\t{m_rules}\n")
|
||||
return m_rules
|
||||
|
||||
|
||||
pactl = PaCtl(0, wob_runner)
|
||||
|
||||
focus = {
|
||||
"animate_on_change": False,
|
||||
"distance": 6,
|
||||
"width": 2,
|
||||
"color": "#5E81ACDD",
|
||||
"anim_time": 0.1,
|
||||
}
|
||||
|
||||
view = {
|
||||
"corner_radius": 8,
|
||||
"padding": 20,
|
||||
"rules": rules,
|
||||
"floating_min_size": False,
|
||||
}
|
||||
|
||||
|
||||
leader: str = "L-Spc "
|
||||
|
||||
|
||||
def key_bindings(layout: Layout) -> list[tuple[str, Callable[[], Any]]]:
|
||||
return [
|
||||
("L-Return", lambda: os.system("kitty &")),
|
||||
(leader + "a r b", lambda: run_shell("bluetooth-connect")),
|
||||
(
|
||||
leader + "a r r",
|
||||
lambda: run_shell("rofi -combi-modi drun,window -show combi"),
|
||||
),
|
||||
(leader + "a b", lambda: run_shell("firefox")),
|
||||
(leader + "a d", lambda: run_shell("discord")),
|
||||
(leader + "a e", lambda: run_shell("emacsclient -c")),
|
||||
(leader + "l", layout.ensure_locked),
|
||||
(leader + "w f", layout.toggle_fullscreen),
|
||||
(leader + "w v", layout.toggle_focused_view_floating),
|
||||
(leader + "w +", lambda: layout.basic_scale(1)),
|
||||
(leader + "w -", lambda: layout.basic_scale(-1)),
|
||||
("L-o", layout.move_workspace),
|
||||
("L-O", layout.move_workspace),
|
||||
(leader + "w c", lambda: layout.move(-1, 0)),
|
||||
(leader + "w t", lambda: layout.move(0, 1)),
|
||||
(leader + "w s", lambda: layout.move(0, -1)),
|
||||
(leader + "w r", lambda: layout.move(1, 0)),
|
||||
(leader + "w n", lambda: layout.move_in_stack(1)),
|
||||
("L-Tab", lambda: layout.move_in_stack(1)),
|
||||
(leader + "w p", lambda: layout.move_in_stack(-1)),
|
||||
(leader + "w C", lambda: layout.move_focused_view(-1, 0)),
|
||||
(leader + "w T", lambda: layout.move_focused_view(0, 1)),
|
||||
(leader + "w S", lambda: layout.move_focused_view(0, -1)),
|
||||
(leader + "w R", lambda: layout.move_focused_view(1, 0)),
|
||||
(leader + "b d", layout.close_focused_view),
|
||||
(leader + "q l", lambda: layout.ensure_locked(dim=False)),
|
||||
(leader + "q q", layout.terminate),
|
||||
(leader + "u", layout.update_config),
|
||||
("L-c", lambda: layout.move(-1, 0)),
|
||||
("L-t", lambda: layout.move(0, 1)),
|
||||
("L-s", lambda: layout.move(0, -1)),
|
||||
("L-r", lambda: layout.move(1, 0)),
|
||||
("L-plus", lambda: layout.basic_scale(-1)),
|
||||
("L-minus", lambda: layout.basic_scale(1)),
|
||||
("L-C", lambda: layout.move_focused_view(-1, 0)),
|
||||
("L-T", lambda: layout.move_focused_view(0, 1)),
|
||||
("L-S", lambda: layout.move_focused_view(0, -1)),
|
||||
("L-R", lambda: layout.move_focused_view(1, 0)),
|
||||
(leader + "w r c", lambda: layout.resize_focused_view(-1, 0)),
|
||||
(leader + "w r t", lambda: layout.resize_focused_view(0, 1)),
|
||||
(leader + "w r s", lambda: layout.resize_focused_view(0, -1)),
|
||||
(leader + "w r r", lambda: layout.resize_focused_view(1, 0)),
|
||||
("L-", lambda: layout.toggle_overview(only_active_workspace=True)),
|
||||
(
|
||||
"XF86MonBrightnessUp",
|
||||
lambda: backlight_manager.set(backlight_manager.get() + 0.1),
|
||||
),
|
||||
(
|
||||
"XF86MonBrightnessDown",
|
||||
lambda: backlight_manager.set(backlight_manager.get() - 0.1),
|
||||
),
|
||||
(
|
||||
"XF86KbdBrightnessUp",
|
||||
lambda: kbdlight_manager.set(kbdlight_manager.get() + 0.1),
|
||||
),
|
||||
(
|
||||
"XF86KbdBrightnessDown",
|
||||
lambda: kbdlight_manager.set(kbdlight_manager.get() - 0.1),
|
||||
),
|
||||
("XF86AudioPlay", lambda: run_shell("playerctl play-pause")),
|
||||
("XF86AudioPause", lambda: run_shell("playerctl pause")),
|
||||
("XF86AudioStop", lambda: run_shell("playerctl stop")),
|
||||
("XF86AudioPrev", lambda: run_shell("playerctl previous")),
|
||||
("XF86AudioNext", lambda: run_shell("playerctl next")),
|
||||
("XF86AudioForward", lambda: run_shell("playerctl position +1")),
|
||||
("XF86AudioRewind", lambda: run_shell("playerctl position -1")),
|
||||
("XF86AudioRaiseVolume", lambda: pactl.volume_adj(5)),
|
||||
("XF86AudioLowerVolume", lambda: pactl.volume_adj(-5)),
|
||||
("XF86AudioMute", pactl.mute),
|
||||
("Print", lambda: run_shell("env XDG_CURRENT_DESKTOP=Sway flameshot gui")),
|
||||
]
|
||||
|
||||
|
||||
battery_icons = {
|
||||
100: {True: "", False: ""},
|
||||
90: {True: "", False: ""},
|
||||
80: {True: "", False: ""},
|
||||
70: {True: "", False: ""},
|
||||
60: {True: "", False: ""},
|
||||
50: {True: "", False: ""},
|
||||
40: {True: "", False: ""},
|
||||
30: {True: "", False: ""},
|
||||
20: {True: "", False: ""},
|
||||
10: {True: "", False: ""},
|
||||
0: {True: "", False: ""},
|
||||
}
|
||||
|
||||
|
||||
def battery_status() -> str:
|
||||
battery = psutil.sensors_battery()
|
||||
percent = format(battery.percent, ".1f")
|
||||
minutes = battery.secsleft // 60
|
||||
remaining = "{0:0>2}:{1:0>2}".format(minutes // 60, minutes % 60)
|
||||
icon = battery_icons[(int(float(percent)) // 10) * 10][battery.power_plugged]
|
||||
return f"{icon} {percent}% ({remaining})"
|
||||
|
||||
|
||||
def unread_emails() -> str:
|
||||
unread = subprocess.run(
|
||||
["mu", "find", "flag:unread AND (maildir:/Inbox OR maildir:/Junk)"],
|
||||
capture_output=True,
|
||||
text=True,
|
||||
check=True,
|
||||
).stdout
|
||||
nbr_unread: int = len(str(unread).strip().split("\n"))
|
||||
return f" {nbr_unread}"
|
||||
|
||||
|
||||
def cpu_usage() -> str:
|
||||
cpu: str = format(psutil.cpu_percent(interval=1), ".1f")
|
||||
return f" {cpu}%"
|
||||
|
||||
|
||||
def mem_usage() -> str:
|
||||
mem: str = format(psutil.virtual_memory().percent, ".1f")
|
||||
return f" {mem}%"
|
||||
|
||||
|
||||
def get_bluetooth_devices() -> str:
|
||||
import xml.etree.ElementTree as ET
|
||||
|
||||
bus = dbus.SystemBus()
|
||||
service_name = "org.bluez"
|
||||
|
||||
# Verify if bluetooth is turned on
|
||||
proxy = bus.get_object(service_name, "/org/bluez/hci0")
|
||||
props = dbus.Interface(proxy, "org.freedesktop.DBus.Properties")
|
||||
if not props.Get("org.bluez.Adapter1", "Powered"):
|
||||
return ""
|
||||
|
||||
# Grab all known devices
|
||||
bt_intro_iface = dbus.Interface(proxy, "org.freedesktop.DBus.Introspectable")
|
||||
bt_intro = str(bt_intro_iface.Introspect())
|
||||
root_node = ET.fromstring(bt_intro)
|
||||
known_devices = [n.get("name") for n in root_node.findall("node")]
|
||||
|
||||
# Check if all devices are connected
|
||||
counter = 0
|
||||
for device in known_devices:
|
||||
object_path = f"/org/bluez/hci0/{device}"
|
||||
proxy = bus.get_object(service_name, object_path)
|
||||
props = dbus.Interface(proxy, "org.freedesktop.DBus.Properties")
|
||||
if props.Get("org.bluez.Device1", "Connected"):
|
||||
counter = counter + 1
|
||||
return f" {counter}"
|
||||
|
||||
|
||||
def get_wifi_name(iface) -> str:
|
||||
bus = dbus.SystemBus()
|
||||
service_name = "org.freedesktop.NetworkManager"
|
||||
proxy = bus.get_object(service_name, "/org/freedesktop/NetworkManager/Settings")
|
||||
|
||||
# Get the device object path based on interface name
|
||||
proxy = bus.get_object(service_name, "/org/freedesktop/NetworkManager")
|
||||
nm = dbus.Interface(proxy, "org.freedesktop.NetworkManager")
|
||||
devpath = nm.GetDeviceByIpIface(iface)
|
||||
|
||||
# Get a proxy to the wifi device and get the active access point's object path
|
||||
proxy = bus.get_object(service_name, devpath)
|
||||
props = dbus.Interface(proxy, "org.freedesktop.DBus.Properties")
|
||||
active_ap_path = props.Get(
|
||||
"org.freedesktop.NetworkManager.Device.Wireless", "ActiveAccessPoint"
|
||||
)
|
||||
if active_ap_path == "/":
|
||||
return ""
|
||||
|
||||
# Get the active access point's SSID and BSSID
|
||||
ap_proxy = bus.get_object(service_name, active_ap_path)
|
||||
ap_props = dbus.Interface(ap_proxy, "org.freedesktop.DBus.Properties")
|
||||
raw_ssid = ap_props.Get("org.freedesktop.NetworkManager.AccessPoint", "Ssid")
|
||||
ssid = b"".join([bytes([v]) for v in raw_ssid]).decode("utf-8")
|
||||
return ssid
|
||||
|
||||
|
||||
def get_local_address(wifi_iface, eth_iface) -> str:
|
||||
if_addrs = psutil.net_if_addrs()
|
||||
wifi = if_addrs.get(wifi_iface)
|
||||
eth = if_addrs.get(eth_iface)
|
||||
wifi_addr = wifi[0].address if wifi else ""
|
||||
eth_addr = eth[0].address if eth else ""
|
||||
wifi_addr = wifi_addr if not ":" in wifi_addr else ""
|
||||
eth_addr = eth_addr if not ":" in eth_addr else ""
|
||||
return wifi_addr or eth_addr
|
||||
|
||||
|
||||
def get_network() -> str:
|
||||
wifi_interface = "wlp8s0"
|
||||
eth_interface = "enp9s0f1"
|
||||
network_name = get_wifi_name(wifi_interface)
|
||||
network_name = f" {network_name}" if network_name else " eth"
|
||||
addr = get_local_address(wifi_interface, eth_interface)
|
||||
return f"{network_name} ({addr})" if addr else "睊 disconnected"
|
||||
|
||||
|
||||
def get_playerctl_bus():
|
||||
bus = dbus.SessionBus()
|
||||
service_name = "org.mpris.MediaPlayer2.playerctld"
|
||||
service_props = "org.mpris.MediaPlayer2.Player"
|
||||
proxy = bus.get_object(service_name, "/org/mpris/MediaPlayer2")
|
||||
return (service_props, proxy)
|
||||
|
||||
|
||||
def get_currently_playing():
|
||||
(service_props, proxy) = get_playerctl_bus()
|
||||
props = dbus.Interface(proxy, "org.freedesktop.DBus.Properties")
|
||||
metadata = props.Get(service_props, "Metadata")
|
||||
status = str(props.Get(service_props, "PlaybackStatus"))
|
||||
if status != "Playing":
|
||||
return ""
|
||||
artist = ", ".join(metadata.get("xesam:artist"))
|
||||
title = metadata.get("xesam:title")
|
||||
return f" {artist} — {title}"
|
||||
|
||||
|
||||
def display_docker() -> str:
|
||||
containers = docker_client.containers.list(sparse=True)
|
||||
return f" {len(containers)}"
|
||||
|
||||
|
||||
def get_time() -> str:
|
||||
return time.strftime("%a %Y-%m-%d %X")
|
||||
|
||||
|
||||
def bar_text() -> str:
|
||||
return " | ".join(
|
||||
[
|
||||
f
|
||||
for f in [
|
||||
get_currently_playing(),
|
||||
# get_network(),
|
||||
display_docker(),
|
||||
# get_bluetooth_devices(),
|
||||
unread_emails(),
|
||||
cpu_usage(),
|
||||
mem_usage(),
|
||||
get_time(),
|
||||
battery_status(),
|
||||
]
|
||||
if f
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
def max_width(strings: list[str]) -> int:
|
||||
r_max_width: int = 0
|
||||
for s in strings:
|
||||
if len(s) > r_max_width:
|
||||
r_max_width = len(s)
|
||||
return r_max_width
|
||||
|
||||
|
||||
panels = {
|
||||
"lock": {
|
||||
"cmd": "kitty -e newm-panel-basic lock",
|
||||
},
|
||||
"launcher": {"cmd": "kitty -e newm-panel-basic launcher"},
|
||||
"top_bar": {
|
||||
"native": {
|
||||
"font": "JetBrainsMono Nerd Font",
|
||||
"enabled": True,
|
||||
"texts": lambda: [
|
||||
bar_text(),
|
||||
],
|
||||
},
|
||||
},
|
||||
"bottom_bar": {
|
||||
"native": {
|
||||
"enabled": False,
|
||||
"texts": lambda: ["newm", "powered by pywm"],
|
||||
"color": (0.5, 0.5, 0.5, 0.1),
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
energy = {
|
||||
"idle_callback": backlight_manager.callback,
|
||||
"idle_times": [5 * 60, 30 * 60, 24 * 60 * 60],
|
||||
}
|
@ -1,96 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# Number of commands to save in the command history. 0: no history / -1:
|
||||
# unlimited
|
||||
# Type: Int
|
||||
c.completion.cmd_history_max_items = 200
|
||||
|
||||
# Delay (in milliseconds) before updating completions after typing a
|
||||
# character.
|
||||
# Type: Int
|
||||
c.completion.delay = 150
|
||||
|
||||
# Default filesystem autocomplete suggestions for :open. The elements of
|
||||
# this list show up in the completion window under the Filesystem
|
||||
# category when the command line contains `:open` but no argument.
|
||||
# Type: List of String
|
||||
c.completion.favorite_paths = []
|
||||
|
||||
# Height (in pixels or as percentage of the window) of the completion.
|
||||
# Type: PercOrInt
|
||||
c.completion.height = '33%'
|
||||
|
||||
# Minimum amount of characters needed to update completions.
|
||||
# Type: Int
|
||||
c.completion.min_chars = 2
|
||||
|
||||
# Which categories to show (in which order) in the :open completion.
|
||||
# Type: FlagList
|
||||
# Valid values:
|
||||
# - searchengines
|
||||
# - quickmarks
|
||||
# - bookmarks
|
||||
# - history
|
||||
# - filesystem
|
||||
c.completion.open_categories = [
|
||||
'searchengines',
|
||||
'quickmarks',
|
||||
'bookmarks',
|
||||
'history',
|
||||
'filesystem'
|
||||
]
|
||||
|
||||
# Move on to the next part when there's only one possible completion
|
||||
# left.
|
||||
# Type: Bool
|
||||
c.completion.quick = True
|
||||
|
||||
# Padding (in pixels) of the scrollbar handle in the completion window.
|
||||
# Type: Int
|
||||
c.completion.scrollbar.padding = 1
|
||||
|
||||
# Width (in pixels) of the scrollbar in the completion window.
|
||||
# Type: Int
|
||||
c.completion.scrollbar.width = 5
|
||||
|
||||
# When to show the autocompletion window.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - always: Whenever a completion is available.
|
||||
# - auto: Whenever a completion is requested.
|
||||
# - never: Never.
|
||||
c.completion.show = 'always'
|
||||
|
||||
# Shrink the completion to be smaller than the configured size if there
|
||||
# are no scrollbars.
|
||||
# Type: Bool
|
||||
c.completion.shrink = True
|
||||
|
||||
# Format of timestamps (e.g. for the history completion). See
|
||||
# https://sqlite.org/lang_datefunc.html and
|
||||
# https://docs.python.org/3/library/datetime.html#strftime-strptime-
|
||||
# behavior for allowed substitutions, qutebrowser uses both sqlite and
|
||||
# Python to format its timestamps.
|
||||
# Type: String
|
||||
c.completion.timestamp_format = '%Y-%m-%d %H:%M'
|
||||
|
||||
# Execute the best-matching command on a partial match.
|
||||
# Type: Bool
|
||||
c.completion.use_best_match = True
|
||||
|
||||
# A list of patterns which should not be shown in the history. This only
|
||||
# affects the completion. Matching URLs are still saved in the history
|
||||
# (and visible on the `:history` page), but hidden in the completion.
|
||||
# Changing this setting will cause the completion history to be
|
||||
# regenerated on the next start, which will take a short while.
|
||||
# Type: List of UrlPattern
|
||||
c.completion.web_history.exclude = []
|
||||
|
||||
# Number of URLs to show in the web history. 0: no history / -1:
|
||||
# unlimited
|
||||
# Type: Int
|
||||
c.completion.web_history.max_items = -1
|
@ -1,45 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
|
||||
# This is here so configs done via the GUI are still loaded.
|
||||
# Remove it to not load settings done via the GUI.
|
||||
config.load_autoconfig(False)
|
||||
|
||||
# Aliases for commands. The keys of the given dictionary are the
|
||||
# aliases, while the values are the commands they map to.
|
||||
# Type: Dict
|
||||
c.aliases = {
|
||||
'w': 'session-save',
|
||||
'q': 'close',
|
||||
'qa': 'quit',
|
||||
'wq': 'quit --save',
|
||||
'wqa': 'quit --save'
|
||||
}
|
||||
|
||||
# Time interval (in milliseconds) between auto-saves of
|
||||
# config/cookies/etc.
|
||||
# Type: Int
|
||||
c.auto_save.interval = 15000
|
||||
|
||||
# Enable smooth scrolling for web pages. Note smooth scrolling does not
|
||||
# work with the `:scroll-px` command.
|
||||
# Type: Bool
|
||||
c.scrolling.smooth = True
|
||||
|
||||
c.spellcheck.languages = [
|
||||
'en-US',
|
||||
'fr-FR',
|
||||
]
|
||||
|
||||
config.source('completion.py')
|
||||
config.source('content.py')
|
||||
config.source('downloads.py')
|
||||
config.source('editor.py')
|
||||
config.source('keybinds.py')
|
||||
config.source('fileselect.py')
|
||||
config.source('hints.py')
|
||||
config.source('input.py')
|
||||
config.source('statusbar.py')
|
||||
config.source('tabs.py')
|
||||
config.source('url.py')
|
||||
config.source('window.py')
|
||||
config.source('nord.py')
|
@ -1,488 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# Automatically start playing `<video>` elements.
|
||||
# Type: Bool
|
||||
c.content.autoplay = False
|
||||
|
||||
# List of URLs to ABP-style adblocking rulesets. Only used when Brave's
|
||||
# ABP-style adblocker is used (see `content.blocking.method`). You can
|
||||
# find an overview of available lists here:
|
||||
# https://adblockplus.org/en/subscriptions - note that the special
|
||||
# `subscribe.adblockplus.org` links aren't handled by qutebrowser, you
|
||||
# will instead need to find the link to the raw `.txt` file (e.g. by
|
||||
# extracting it from the `location` parameter of the subscribe URL and
|
||||
# URL-decoding it).
|
||||
# Type: List of Url
|
||||
c.content.blocking.adblock.lists = [
|
||||
# AdBlock sources
|
||||
"https://easylist.to/easylist/easylist.txt",
|
||||
"https://easylist.to/easylist/easyprivacy.txt"
|
||||
# uBlock sources
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt",
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badlists.txt",
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badware.txt",
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt",
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters-2020.txt",
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters-2021.txt",
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/lan-block.txt",
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt",
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/resource-abuse.txt",
|
||||
"https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/unbreak.txt",
|
||||
]
|
||||
|
||||
# Enable the ad/host blocker
|
||||
# Type: Bool
|
||||
c.content.blocking.enabled = True
|
||||
|
||||
# Block subdomains of blocked hosts. Note: If only a single subdomain is
|
||||
# blocked but should be allowed, consider using
|
||||
# `content.blocking.whitelist` instead.
|
||||
# Type: Bool
|
||||
c.content.blocking.hosts.block_subdomains = True
|
||||
|
||||
# List of URLs to host blocklists for the host blocker. Only used when
|
||||
# the simple host-blocker is used (see `content.blocking.method`). The
|
||||
# file can be in one of the following formats: - An `/etc/hosts`-like
|
||||
# file - One host per line - A zip-file of any of the above, with either
|
||||
# only one file, or a file named `hosts` (with any extension). It's
|
||||
# also possible to add a local file or directory via a `file://` URL. In
|
||||
# case of a directory, all files in the directory are read as adblock
|
||||
# lists. The file `~/.config/qutebrowser/blocked-hosts` is always read
|
||||
# if it exists.
|
||||
# Type: List of Url
|
||||
c.content.blocking.hosts.lists = [
|
||||
"https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts",
|
||||
]
|
||||
|
||||
# Which method of blocking ads should be used. Support for Adblock Plus
|
||||
# (ABP) syntax blocklists using Brave's Rust library requires the
|
||||
# `adblock` Python package to be installed, which is an optional
|
||||
# dependency of qutebrowser. It is required when either `adblock` or
|
||||
# `both` are selected.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - auto: Use Brave's ABP-style adblocker if available, host blocking otherwise
|
||||
# - adblock: Use Brave's ABP-style adblocker
|
||||
# - hosts: Use hosts blocking
|
||||
# - both: Use both hosts blocking and Brave's ABP-style adblocker
|
||||
c.content.blocking.method = "auto"
|
||||
|
||||
# A list of patterns that should always be loaded, despite being blocked
|
||||
# by the ad-/host-blocker. Local domains are always exempt from
|
||||
# adblocking. Note this whitelists otherwise blocked requests, not
|
||||
# first-party URLs. As an example, if `example.org` loads an ad from
|
||||
# `ads.example.org`, the whitelist entry could be
|
||||
# `https://ads.example.org/*`. If you want to disable the adblocker on a
|
||||
# given page, use the `content.blocking.enabled` setting with a URL
|
||||
# pattern instead.
|
||||
# Type: List of UrlPattern
|
||||
c.content.blocking.whitelist = [
|
||||
"https://*.phundrak.com/*",
|
||||
]
|
||||
|
||||
# Enable support for the HTML 5 web application cache feature. An
|
||||
# application cache acts like an HTTP cache in some sense. For documents
|
||||
# that use the application cache via JavaScript, the loader engine will
|
||||
# first ask the application cache for the contents, before hitting the
|
||||
# network.
|
||||
# Type: Bool
|
||||
c.content.cache.appcache = True
|
||||
|
||||
# Maximum number of pages to hold in the global memory page cache. The
|
||||
# page cache allows for a nicer user experience when navigating forth or
|
||||
# back to pages in the forward/back history, by pausing and resuming up
|
||||
# to _n_ pages. For more information about the feature, please refer to:
|
||||
# https://webkit.org/blog/427/webkit-page-cache-i-the-basics/
|
||||
# Type: Int
|
||||
c.content.cache.maximum_pages = 0
|
||||
|
||||
# Size (in bytes) of the HTTP network cache. Null to use the default
|
||||
# value. With QtWebEngine, the maximum supported value is 2147483647 (~2
|
||||
# GB).
|
||||
# Type: Int
|
||||
c.content.cache.size = None
|
||||
|
||||
# Allow websites to read canvas elements. Note this is needed for some
|
||||
# websites to work properly.
|
||||
# Type: Bool
|
||||
c.content.canvas_reading = True
|
||||
|
||||
# Which cookies to accept. With QtWebEngine, this setting also controls
|
||||
# other features with tracking capabilities similar to those of cookies;
|
||||
# including IndexedDB, DOM storage, filesystem API, service workers, and
|
||||
# AppCache. Note that with QtWebKit, only `all` and `never` are
|
||||
# supported as per-domain values. Setting `no-3rdparty` or `no-
|
||||
# unknown-3rdparty` per-domain on QtWebKit will have the same effect as
|
||||
# `all`. If this setting is used with URL patterns, the pattern gets
|
||||
# applied to the origin/first party URL of the page making the request,
|
||||
# not the request URL. With QtWebEngine 5.15.0+, paths will be stripped
|
||||
# from URLs, so URL patterns using paths will not match. With
|
||||
# QtWebEngine 5.15.2+, subdomains are additionally stripped as well, so
|
||||
# you will typically need to set this setting for `example.com` when the
|
||||
# cookie is set on `somesubdomain.example.com` for it to work properly.
|
||||
# To debug issues with this setting, start qutebrowser with `--debug
|
||||
# --logfilter network --debug-flag log-cookies` which will show all
|
||||
# cookies being set.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - all: Accept all cookies.
|
||||
# - no-3rdparty: Accept cookies from the same origin only. This is known to break some sites, such as GMail.
|
||||
# - no-unknown-3rdparty: Accept cookies from the same origin only, unless a cookie is already set for the domain. On QtWebEngine, this is the same as no-3rdparty.
|
||||
# - never: Don't accept cookies at all.
|
||||
c.content.cookies.accept = "all"
|
||||
|
||||
# Store cookies.
|
||||
# Type: Bool
|
||||
c.content.cookies.store = True
|
||||
|
||||
# Default encoding to use for websites. The encoding must be a string
|
||||
# describing an encoding such as _utf-8_, _iso-8859-1_, etc.
|
||||
# Type: String
|
||||
c.content.default_encoding = "utf-8"
|
||||
|
||||
# Allow websites to share screen content.
|
||||
# Type: BoolAsk
|
||||
# Valid values:
|
||||
# - true
|
||||
# - false
|
||||
# - ask
|
||||
c.content.desktop_capture = "ask"
|
||||
|
||||
# Try to pre-fetch DNS entries to speed up browsing.
|
||||
# Type: Bool
|
||||
c.content.dns_prefetch = True
|
||||
|
||||
# Expand each subframe to its contents. This will flatten all the frames
|
||||
# to become one scrollable page.
|
||||
# Type: Bool
|
||||
c.content.frame_flattening = False
|
||||
|
||||
# Set fullscreen notification overlay timeout in milliseconds. If set to
|
||||
# 0, no overlay will be displayed.
|
||||
# Type: Int
|
||||
c.content.fullscreen.overlay_timeout = 3000
|
||||
|
||||
# Limit fullscreen to the browser window (does not expand to fill the
|
||||
# screen).
|
||||
# Type: Bool
|
||||
c.content.fullscreen.window = True
|
||||
|
||||
# Allow websites to request geolocations.
|
||||
# Type: BoolAsk
|
||||
# Valid values:
|
||||
# - true
|
||||
# - false
|
||||
# - ask
|
||||
c.content.geolocation = "ask"
|
||||
|
||||
# Value to send in the `Accept-Language` header. Note that the value
|
||||
# read from JavaScript is always the global value.
|
||||
# Type: String
|
||||
c.content.headers.accept_language = (
|
||||
"en-US,en-UK,en-GB,en;q=0.9, fr-Fr,fr;q=0.8, ja,es;q=0.5, *;q=0.2"
|
||||
)
|
||||
|
||||
# Custom headers for qutebrowser HTTP requests.
|
||||
# Type: Dict
|
||||
c.content.headers.custom = {}
|
||||
|
||||
# Value to send in the `DNT` header. When this is set to true,
|
||||
# qutebrowser asks websites to not track your identity. If set to null,
|
||||
# the DNT header is not sent at all.
|
||||
# Type: Bool
|
||||
c.content.headers.do_not_track = True
|
||||
|
||||
# When to send the Referer header. The Referer header tells websites
|
||||
# from which website you were coming from when visiting them. Note that
|
||||
# with QtWebEngine, websites can override this preference by setting the
|
||||
# `Referrer-Policy:` header, so that any websites visited from them get
|
||||
# the full referer. No restart is needed with QtWebKit.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - always: Always send the Referer.
|
||||
# - never: Never send the Referer. This is not recommended, as some sites may break.
|
||||
# - same-domain: Only send the Referer for the same domain. This will still protect your privacy, but shouldn't break any sites. With QtWebEngine, the referer will still be sent for other domains, but with stripped path information.
|
||||
c.content.headers.referer = "same-domain"
|
||||
|
||||
# User agent to send. The following placeholders are defined: *
|
||||
# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`:
|
||||
# The underlying WebKit version (set to a fixed value with
|
||||
# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for
|
||||
# QtWebEngine. * `{qt_version}`: The underlying Qt version. *
|
||||
# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for
|
||||
# QtWebEngine. * `{upstream_browser_version}`: The corresponding
|
||||
# Safari/Chrome version. * `{qutebrowser_version}`: The currently
|
||||
# running qutebrowser version. The default value is equal to the
|
||||
# unchanged user agent of QtWebKit/QtWebEngine. Note that the value
|
||||
# read from JavaScript is always the global value. With QtWebEngine
|
||||
# between 5.12 and 5.14 (inclusive), changing the value exposed to
|
||||
# JavaScript requires a restart.
|
||||
# Type: FormatString
|
||||
c.content.headers.user_agent = "Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {qt_key}/{qt_version} {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}"
|
||||
|
||||
# Enable hyperlink auditing (`<a ping>`).
|
||||
# Type: Bool
|
||||
c.content.hyperlink_auditing = False
|
||||
|
||||
# Load images automatically in web pages.
|
||||
# Type: Bool
|
||||
c.content.images = True
|
||||
|
||||
# Show javascript alerts.
|
||||
# Type: Bool
|
||||
c.content.javascript.alert = True
|
||||
|
||||
# Allow JavaScript to close tabs.
|
||||
# Type: Bool
|
||||
c.content.javascript.can_close_tabs = False
|
||||
|
||||
# Allow JavaScript to open new tabs without user interaction.
|
||||
# Type: Bool
|
||||
c.content.javascript.can_open_tabs_automatically = False
|
||||
|
||||
# Enable JavaScript.
|
||||
# Type: Bool
|
||||
c.content.javascript.enabled = True
|
||||
|
||||
# Log levels to use for JavaScript console logging messages. When a
|
||||
# JavaScript message with the level given in the dictionary key is
|
||||
# logged, the corresponding dictionary value selects the qutebrowser
|
||||
# logger to use. On QtWebKit, the "unknown" setting is always used. The
|
||||
# following levels are valid: `none`, `debug`, `info`, `warning`,
|
||||
# `error`.
|
||||
# Type: Dict
|
||||
c.content.javascript.log = {
|
||||
"unknown": "debug",
|
||||
"info": "debug",
|
||||
"warning": "debug",
|
||||
"error": "debug",
|
||||
}
|
||||
|
||||
# Use the standard JavaScript modal dialog for `alert()` and
|
||||
# `confirm()`.
|
||||
# Type: Bool
|
||||
c.content.javascript.modal_dialog = False
|
||||
|
||||
# Show javascript prompts.
|
||||
# Type: Bool
|
||||
c.content.javascript.prompt = True
|
||||
|
||||
# Allow locally loaded documents to access other local URLs.
|
||||
# Type: Bool
|
||||
c.content.local_content_can_access_file_urls = True
|
||||
|
||||
# Allow locally loaded documents to access remote URLs.
|
||||
# Type: Bool
|
||||
c.content.local_content_can_access_remote_urls = False
|
||||
|
||||
# Enable support for HTML 5 local storage and Web SQL.
|
||||
# Type: Bool
|
||||
c.content.local_storage = True
|
||||
|
||||
# Allow websites to record audio.
|
||||
# Type: BoolAsk
|
||||
# Valid values:
|
||||
# - true
|
||||
# - false
|
||||
# - ask
|
||||
c.content.media.audio_capture = "ask"
|
||||
|
||||
# Allow websites to record audio and video.
|
||||
# Type: BoolAsk
|
||||
# Valid values:
|
||||
# - true
|
||||
# - false
|
||||
# - ask
|
||||
c.content.media.audio_video_capture = "ask"
|
||||
|
||||
# Allow websites to record video.
|
||||
# Type: BoolAsk
|
||||
# Valid values:
|
||||
# - true
|
||||
# - false
|
||||
# - ask
|
||||
c.content.media.video_capture = "ask"
|
||||
|
||||
# Allow websites to lock your mouse pointer.
|
||||
# Type: BoolAsk
|
||||
# Valid values:
|
||||
# - true
|
||||
# - false
|
||||
# - ask
|
||||
c.content.mouse_lock = "ask"
|
||||
|
||||
# Automatically mute tabs. Note that if the `:tab-mute` command is used,
|
||||
# the mute status for the affected tab is now controlled manually, and
|
||||
# this setting doesn't have any effect.
|
||||
# Type: Bool
|
||||
c.content.mute = False
|
||||
|
||||
# Netrc-file for HTTP authentication. If unset, `~/.netrc` is used.
|
||||
# Type: File
|
||||
c.content.netrc_file = None
|
||||
|
||||
# Allow websites to show notifications.
|
||||
# Type: BoolAsk
|
||||
# Valid values:
|
||||
# - true
|
||||
# - false
|
||||
# - ask
|
||||
c.content.notifications.enabled = "ask"
|
||||
|
||||
# What notification presenter to use for web notifications. Note that
|
||||
# not all implementations support all features of notifications: - With
|
||||
# PyQt 5.14, any setting other than `qt` does not support the `click`
|
||||
# and `close` events, as well as the `tag` option to replace existing
|
||||
# notifications. - The `qt` and `systray` options only support showing
|
||||
# one notification at the time and ignore the `tag` option to replace
|
||||
# existing notifications. - The `herbe` option only supports showing one
|
||||
# notification at the time and doesn't show icons. - The `messages`
|
||||
# option doesn't show icons and doesn't support the `click` and
|
||||
# `close` events.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - auto: Tries `libnotify`, `systray` and `messages`, uses the first one available without showing error messages.
|
||||
# - qt: Use Qt's native notification presenter, based on a system tray icon. Switching from or to this value requires a restart of qutebrowser. Recommended over `systray` on PyQt 5.14.
|
||||
# - libnotify: Shows messages via DBus in a libnotify-compatible way. If DBus isn't available, falls back to `systray` or `messages`, but shows an error message.
|
||||
# - systray: Use a notification presenter based on a systray icon. Falls back to `libnotify` or `messages` if not systray is available. This is a reimplementation of the `qt` setting value, but with the possibility to switch to it at runtime.
|
||||
# - messages: Show notifications as qutebrowser messages. Most notification features aren't available.
|
||||
# - herbe: (experimental!) Show notifications using herbe (github.com/dudik/herbe). Most notification features aren't available.
|
||||
c.content.notifications.presenter = "auto"
|
||||
|
||||
# Whether to show the origin URL for notifications. Note that URL
|
||||
# patterns with this setting only get matched against the origin part of
|
||||
# the URL, so e.g. paths in patterns will never match. Note that with
|
||||
# the `qt` presenter, origins are never shown.
|
||||
# Type: Bool
|
||||
c.content.notifications.show_origin = True
|
||||
|
||||
# Allow pdf.js to view PDF files in the browser. Note that the files can
|
||||
# still be downloaded by clicking the download button in the pdf.js
|
||||
# viewer.
|
||||
# Type: Bool
|
||||
c.content.pdfjs = True
|
||||
|
||||
# Allow websites to request persistent storage quota via
|
||||
# `navigator.webkitPersistentStorage.requestQuota`.
|
||||
# Type: BoolAsk
|
||||
# Valid values:
|
||||
# - true
|
||||
# - false
|
||||
# - ask
|
||||
c.content.persistent_storage = "ask"
|
||||
|
||||
# Enable plugins in Web pages.
|
||||
# Type: Bool
|
||||
c.content.plugins = False
|
||||
|
||||
# Request websites to minimize non-essentials animations and motion.
|
||||
# This results in the `prefers-reduced-motion` CSS media query to
|
||||
# evaluate to `reduce` (rather than `no-preference`). On Windows, if
|
||||
# this setting is set to False, the system-wide animation setting is
|
||||
# considered.
|
||||
# Type: Bool
|
||||
c.content.prefers_reduced_motion = False
|
||||
|
||||
# Draw the background color and images also when the page is printed.
|
||||
# Type: Bool
|
||||
c.content.print_element_backgrounds = True
|
||||
|
||||
# Open new windows in private browsing mode which does not record
|
||||
# visited pages.
|
||||
# Type: Bool
|
||||
c.content.private_browsing = False
|
||||
|
||||
# Proxy to use. In addition to the listed values, you can use a
|
||||
# `socks://...` or `http://...` URL. Note that with QtWebEngine, it will
|
||||
# take a couple of seconds until the change is applied, if this value is
|
||||
# changed at runtime. Authentication for SOCKS proxies isn't supported
|
||||
# due to Chromium limitations.
|
||||
# Type: Proxy
|
||||
# Valid values:
|
||||
# - system: Use the system wide proxy.
|
||||
# - none: Don't use any proxy
|
||||
c.content.proxy = "system"
|
||||
|
||||
# Send DNS requests over the configured proxy.
|
||||
# Type: Bool
|
||||
c.content.proxy_dns_requests = True
|
||||
|
||||
# Allow websites to register protocol handlers via
|
||||
# `navigator.registerProtocolHandler`.
|
||||
# Type: BoolAsk
|
||||
# Valid values:
|
||||
# - true
|
||||
# - false
|
||||
# - ask
|
||||
c.content.register_protocol_handler = "ask"
|
||||
|
||||
# Enable quirks (such as faked user agent headers) needed to get
|
||||
# specific sites to work properly.
|
||||
# Type: Bool
|
||||
c.content.site_specific_quirks.enabled = True
|
||||
|
||||
# Disable a list of named quirks. The js-string-replaceall quirk is
|
||||
# needed for Nextcloud Calendar < 2.2.0 with QtWebEngine < 5.15.3.
|
||||
# However, the workaround is not fully compliant to the ECMAScript spec
|
||||
# and might cause issues on other websites, so it's disabled by default.
|
||||
# Type: FlagList
|
||||
# Valid values:
|
||||
# - ua-whatsapp
|
||||
# - ua-google
|
||||
# - ua-slack
|
||||
# - ua-googledocs
|
||||
# - js-whatsapp-web
|
||||
# - js-discord
|
||||
# - js-string-replaceall
|
||||
# - js-globalthis
|
||||
# - js-object-fromentries
|
||||
# - misc-krunker
|
||||
# - misc-mathml-darkmode
|
||||
c.content.site_specific_quirks.skip = ["js-string-replaceall"]
|
||||
|
||||
# How to proceed on TLS certificate errors.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - ask: Ask how to proceed for every certificate error (unless non-overridable due to HSTS).
|
||||
# - ask-block-thirdparty: Ask how to proceed for normal page loads, but silently block resource loads.
|
||||
# - block: Automatically block loading on certificate errors.
|
||||
# - load-insecurely: Force loading pages despite certificate errors. This is *insecure* and should be avoided. Instead of using this, consider fixing the underlying issue or importing a self-signed certificate via `certutil` (or Chromium) instead.
|
||||
c.content.tls.certificate_errors = "ask"
|
||||
|
||||
# How navigation requests to URLs with unknown schemes are handled.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - disallow: Disallows all navigation requests to URLs with unknown schemes.
|
||||
# - allow-from-user-interaction: Allows navigation requests to URLs with unknown schemes that are issued from user-interaction (like a mouse-click), whereas other navigation requests (for example from JavaScript) are suppressed.
|
||||
# - allow-all: Allows all navigation requests to URLs with unknown schemes.
|
||||
c.content.unknown_url_scheme_policy = "allow-from-user-interaction"
|
||||
|
||||
# List of user stylesheet filenames to use.
|
||||
# Type: List of File, or File
|
||||
c.content.user_stylesheets = []
|
||||
|
||||
# Enable WebGL.
|
||||
# Type: Bool
|
||||
c.content.webgl = True
|
||||
|
||||
# Which interfaces to expose via WebRTC.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - all-interfaces: WebRTC has the right to enumerate all interfaces and bind them to discover public interfaces.
|
||||
# - default-public-and-private-interfaces: WebRTC should only use the default route used by http. This also exposes the associated default private address. Default route is the route chosen by the OS on a multi-homed endpoint.
|
||||
# - default-public-interface-only: WebRTC should only use the default route used by http. This doesn't expose any local addresses.
|
||||
# - disable-non-proxied-udp: WebRTC should only use TCP to contact peers or servers unless the proxy server supports UDP. This doesn't expose any local addresses either.
|
||||
c.content.webrtc_ip_handling_policy = "all-interfaces"
|
||||
|
||||
# Monitor load requests for cross-site scripting attempts. Suspicious
|
||||
# scripts will be blocked and reported in the devtools JavaScript
|
||||
# console. Note that bypasses for the XSS auditor are widely known and
|
||||
# it can be abused for cross-site info leaks in some scenarios, see:
|
||||
# https://www.chromium.org/developers/design-documents/xss-auditor
|
||||
# Type: Bool
|
||||
c.content.xss_auditing = False
|
@ -1,52 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# Directory to save downloads to. If unset, a sensible OS-specific
|
||||
# default is used.
|
||||
# Type: Directory
|
||||
c.downloads.location.directory = None
|
||||
|
||||
# Prompt the user for the download location. If set to false,
|
||||
# `downloads.location.directory` will be used.
|
||||
# Type: Bool
|
||||
c.downloads.location.prompt = True
|
||||
|
||||
# Remember the last used download directory.
|
||||
# Type: Bool
|
||||
c.downloads.location.remember = True
|
||||
|
||||
# What to display in the download filename input.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - path: Show only the download path.
|
||||
# - filename: Show only download filename.
|
||||
# - both: Show download path and filename.
|
||||
c.downloads.location.suggestion = 'path'
|
||||
|
||||
# Default program used to open downloads. If null, the default internal
|
||||
# handler is used. Any `{}` in the string will be expanded to the
|
||||
# filename, else the filename will be appended.
|
||||
# Type: String
|
||||
c.downloads.open_dispatcher = None
|
||||
|
||||
# Where to show the downloaded files.
|
||||
# Type: VerticalPosition
|
||||
# Valid values:
|
||||
# - top
|
||||
# - bottom
|
||||
c.downloads.position = 'bottom'
|
||||
|
||||
# Automatically abort insecure (HTTP) downloads originating from secure
|
||||
# (HTTPS) pages. For per-domain settings, the relevant URL is the URL
|
||||
# initiating the download, not the URL the download itself is coming
|
||||
# from. It's not recommended to set this setting to false globally.
|
||||
# Type: Bool
|
||||
c.downloads.prevent_mixed_content = True
|
||||
|
||||
# Duration (in milliseconds) to wait before removing finished downloads.
|
||||
# If set to -1, downloads are never removed.
|
||||
# Type: Int
|
||||
c.downloads.remove_finished = 30000
|
@ -1,18 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# Editor (and arguments) to use for the `edit-*` commands. The following
|
||||
# placeholders are defined: * `{file}`: Filename of the file to be
|
||||
# edited. * `{line}`: Line in which the caret is found in the text. *
|
||||
# `{column}`: Column in which the caret is found in the text. *
|
||||
# `{line0}`: Same as `{line}`, but starting from index 0. * `{column0}`:
|
||||
# Same as `{column}`, but starting from index 0.
|
||||
# Type: ShellCommand
|
||||
c.editor.command = ['emacsclient', '-c', '+{line}:{column0}', '{file}']
|
||||
|
||||
# Encoding to use for the editor.
|
||||
# Type: Encoding
|
||||
c.editor.encoding = 'utf-8'
|
@ -1,42 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
terminal = 'kitty'
|
||||
|
||||
# Command (and arguments) to use for selecting a single folder in forms.
|
||||
# The command should write the selected folder path to the specified
|
||||
# file or stdout. The following placeholders are defined: * `{}`:
|
||||
# Filename of the file to be written to. If not contained in any
|
||||
# argument, the standard output of the command is read instead.
|
||||
# Type: ShellCommand
|
||||
c.fileselect.folder.command = [terminal, '-e', 'ranger', '--choosedir={}']
|
||||
|
||||
# Handler for selecting file(s) in forms. If `external`, then the
|
||||
# commands specified by `fileselect.single_file.command` and
|
||||
# `fileselect.multiple_files.command` are used to select one or multiple
|
||||
# files respectively.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - default: Use the default file selector.
|
||||
# - external: Use an external command.
|
||||
c.fileselect.handler = 'default'
|
||||
|
||||
# Command (and arguments) to use for selecting multiple files in forms.
|
||||
# The command should write the selected file paths to the specified file
|
||||
# or to stdout, separated by newlines. The following placeholders are
|
||||
# defined: * `{}`: Filename of the file to be written to. If not
|
||||
# contained in any argument, the standard output of the command is
|
||||
# read instead.
|
||||
# Type: ShellCommand
|
||||
c.fileselect.multiple_files.command = ['xterm', '-e', 'ranger', '--choosefiles={}']
|
||||
|
||||
# Command (and arguments) to use for selecting a single file in forms.
|
||||
# The command should write the selected file path to the specified file
|
||||
# or stdout. The following placeholders are defined: * `{}`: Filename of
|
||||
# the file to be written to. If not contained in any argument, the
|
||||
# standard output of the command is read instead.
|
||||
# Type: ShellCommand
|
||||
c.fileselect.single_file.command = ['xterm', '-e', 'ranger', '--choosefile={}']
|
@ -1,165 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# When a hint can be automatically followed without pressing Enter.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - always: Auto-follow whenever there is only a single hint on a page.
|
||||
# - unique-match: Auto-follow whenever there is a unique non-empty match in either the hint string (word mode) or filter (number mode).
|
||||
# - full-match: Follow the hint when the user typed the whole hint (letter, word or number mode) or the element's text (only in number mode).
|
||||
# - never: The user will always need to press Enter to follow a hint.
|
||||
c.hints.auto_follow = 'unique-match'
|
||||
|
||||
# Duration (in milliseconds) to ignore normal-mode key bindings after a
|
||||
# successful auto-follow.
|
||||
# Type: Int
|
||||
c.hints.auto_follow_timeout = 0
|
||||
|
||||
# CSS border value for hints.
|
||||
# Type: String
|
||||
c.hints.border = '1px solid #ebcb8b'
|
||||
|
||||
# Characters used for hint strings.
|
||||
# Type: UniqueCharString
|
||||
c.hints.chars = 'auie,ctsr'
|
||||
|
||||
# Dictionary file to be used by the word hints.
|
||||
# Type: File
|
||||
c.hints.dictionary = '/usr/share/dict/words'
|
||||
|
||||
# Which implementation to use to find elements to hint.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - javascript: Better but slower
|
||||
# - python: Slightly worse but faster
|
||||
c.hints.find_implementation = 'python'
|
||||
|
||||
# Hide unmatched hints in rapid mode.
|
||||
# Type: Bool
|
||||
c.hints.hide_unmatched_rapid_hints = True
|
||||
|
||||
# Leave hint mode when starting a new page load.
|
||||
# Type: Bool
|
||||
c.hints.leave_on_load = False
|
||||
|
||||
# Minimum number of characters used for hint strings.
|
||||
# Type: Int
|
||||
c.hints.min_chars = 2
|
||||
|
||||
# Mode to use for hints.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - number: Use numeric hints. (In this mode you can also type letters from the hinted element to filter and reduce the number of elements that are hinted.)
|
||||
# - letter: Use the characters in the `hints.chars` setting.
|
||||
# - word: Use hints words based on the html elements and the extra words.
|
||||
c.hints.mode = 'letter'
|
||||
|
||||
# Comma-separated list of regular expressions to use for 'next' links.
|
||||
# Type: List of Regex
|
||||
c.hints.next_regexes = [
|
||||
'\\bnext\\b',
|
||||
'\\bmore\\b',
|
||||
'\\bnewer\\b',
|
||||
'\\b[>→≫]\\b',
|
||||
'\\b(>>|»)\\b',
|
||||
'\\bcontinue\\b'
|
||||
]
|
||||
|
||||
# Padding (in pixels) for hints.
|
||||
# Type: Padding
|
||||
c.hints.padding = {
|
||||
'top': 0,
|
||||
'bottom': 0,
|
||||
'left': 3,
|
||||
'right': 3
|
||||
}
|
||||
|
||||
# Comma-separated list of regular expressions to use for 'prev' links.
|
||||
# Type: List of Regex
|
||||
c.hints.prev_regexes = [
|
||||
'\\bprev(ious)?\\b',
|
||||
'\\bback\\b',
|
||||
'\\bolder\\b',
|
||||
'\\b[<←≪]\\b',
|
||||
'\\b(<<|«)\\b'
|
||||
]
|
||||
|
||||
# Rounding radius (in pixels) for the edges of hints.
|
||||
# Type: Int
|
||||
c.hints.radius = 3
|
||||
|
||||
# Scatter hint key chains (like Vimium) or not (like dwb). Ignored for
|
||||
# number hints.
|
||||
# Type: Bool
|
||||
c.hints.scatter = True
|
||||
|
||||
# CSS selectors used to determine which elements on a page should have
|
||||
# hints.
|
||||
# Type: Dict
|
||||
c.hints.selectors = {
|
||||
'all': [
|
||||
'a',
|
||||
'area',
|
||||
'textarea',
|
||||
'select',
|
||||
'input:not([type="hidden"])',
|
||||
'button',
|
||||
'frame',
|
||||
'iframe',
|
||||
'img',
|
||||
'link',
|
||||
'summary',
|
||||
'[contenteditable]:not([contenteditable="false"])',
|
||||
'[onclick]',
|
||||
'[onmousedown]',
|
||||
'[role="link"]',
|
||||
'[role="option"]',
|
||||
'[role="button"]',
|
||||
'[ng-click]',
|
||||
'[ngClick]',
|
||||
'[data-ng-click]',
|
||||
'[x-ng-click]',
|
||||
'[tabindex]'
|
||||
],
|
||||
'links': [
|
||||
'a[href]',
|
||||
'area[href]',
|
||||
'link[href]',
|
||||
'[role="link"][href]'
|
||||
],
|
||||
'images': [
|
||||
'img'
|
||||
],
|
||||
'media': [
|
||||
'audio',
|
||||
'img',
|
||||
'video'
|
||||
],
|
||||
'url': [
|
||||
'[src]',
|
||||
'[href]'
|
||||
],
|
||||
'inputs': [
|
||||
'input[type="text"]',
|
||||
'input[type="date"]',
|
||||
'input[type="datetime-local"]',
|
||||
'input[type="email"]',
|
||||
'input[type="month"]',
|
||||
'input[type="number"]',
|
||||
'input[type="password"]',
|
||||
'input[type="search"]',
|
||||
'input[type="tel"]',
|
||||
'input[type="time"]',
|
||||
'input[type="url"]',
|
||||
'input[type="week"]',
|
||||
'input:not([type])',
|
||||
'[contenteditable]:not([contenteditable="false"])',
|
||||
'textarea'
|
||||
]}
|
||||
|
||||
# Make characters in hint strings uppercase.
|
||||
# Type: Bool
|
||||
c.hints.uppercase = False
|
@ -1,70 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# Which unbound keys to forward to the webview in normal mode.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - all: Forward all unbound keys.
|
||||
# - auto: Forward unbound non-alphanumeric keys.
|
||||
# - none: Don't forward any keys.
|
||||
c.input.forward_unbound_keys = 'auto'
|
||||
|
||||
# Enter insert mode if an editable element is clicked.
|
||||
# Type: Bool
|
||||
c.input.insert_mode.auto_enter = True
|
||||
|
||||
# Leave insert mode if a non-editable element is clicked.
|
||||
# Type: Bool
|
||||
c.input.insert_mode.auto_leave = True
|
||||
|
||||
# Automatically enter insert mode if an editable element is focused
|
||||
# after loading the page.
|
||||
# Type: Bool
|
||||
c.input.insert_mode.auto_load = False
|
||||
|
||||
# Leave insert mode when starting a new page load. Patterns may be
|
||||
# unreliable on this setting, and they may match the url you are
|
||||
# navigating to, or the URL you are navigating from.
|
||||
# Type: Bool
|
||||
c.input.insert_mode.leave_on_load = True
|
||||
|
||||
# Switch to insert mode when clicking flash and other plugins.
|
||||
# Type: Bool
|
||||
c.input.insert_mode.plugins = True
|
||||
|
||||
# Include hyperlinks in the keyboard focus chain when tabbing.
|
||||
# Type: Bool
|
||||
c.input.links_included_in_focus_chain = True
|
||||
|
||||
# Whether the underlying Chromium should handle media keys. On Linux,
|
||||
# disabling this also disables Chromium's MPRIS integration.
|
||||
# Type: Bool
|
||||
c.input.media_keys = True
|
||||
|
||||
# Enable back and forward buttons on the mouse.
|
||||
# Type: Bool
|
||||
c.input.mouse.back_forward_buttons = True
|
||||
|
||||
# Enable Opera-like mouse rocker gestures. This disables the context
|
||||
# menu.
|
||||
# Type: Bool
|
||||
c.input.mouse.rocker_gestures = False
|
||||
|
||||
# Timeout (in milliseconds) for partially typed key bindings. If the
|
||||
# current input forms only partial matches, the keystring will be
|
||||
# cleared after this time. If set to 0, partially typed bindings are
|
||||
# never cleared.
|
||||
# Type: Int
|
||||
c.input.partial_timeout = 0
|
||||
|
||||
# Enable spatial navigation. Spatial navigation consists in the ability
|
||||
# to navigate between focusable elements in a Web page, such as
|
||||
# hyperlinks and form controls, by using Left, Right, Up and Down arrow
|
||||
# keys. For example, if the user presses the Right key, heuristics
|
||||
# determine whether there is an element he might be trying to reach
|
||||
# towards the right and which element he probably wants.
|
||||
# Type: Bool
|
||||
c.input.spatial_navigation = False
|
@ -1,393 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# config.bind(',v', 'spawn mpv {url}')
|
||||
# config.bind(',d', 'spawn ytdl {url}')
|
||||
|
||||
# bookmarks
|
||||
config.bind(",ba", "bookmark-add")
|
||||
config.bind(",bb", "cmd-set-text -s :bookmark-load")
|
||||
config.bind(",bl", "bookmark-list")
|
||||
config.bind(",bj", "bookmark-list --jump")
|
||||
config.bind(",bt", "cmd-set-text -s :bookmark-load -t")
|
||||
config.bind(",bw", "cmd-set-text -s :bookmark-load -w")
|
||||
config.bind(",bql", "cmd-set-text -s :quickmark-load")
|
||||
config.bind(",bqL", "cmd-set-text -s :quickmark-load -t")
|
||||
config.bind(",bqs", "quickmark-save")
|
||||
config.bind(",bqw", "cmd-set-text -s :quickmark-load -w")
|
||||
|
||||
# config cycle
|
||||
config.bind(
|
||||
",cCH",
|
||||
"config-cycle -p -u *://*.{url:host}/* content.cookies.accept all no-3rdparty never ;; reload",
|
||||
)
|
||||
config.bind(
|
||||
",cCh",
|
||||
"config-cycle -p -u *://{url:host}/* content.cookies.accept all no-3rdparty never ;; reload",
|
||||
)
|
||||
config.bind(
|
||||
",cCu",
|
||||
"config-cycle -p -u {url} content.cookies.accept all no-3rdparty never ;; reload",
|
||||
)
|
||||
config.bind(",cIH", "config-cycle -p -u *://*.{url:host}/* content.images ;; reload")
|
||||
config.bind(",cIh", "config-cycle -p -u *://{url:host}/* content.images ;; reload")
|
||||
config.bind(",cIu", "config-cycle -p -u {url} content.images ;; reload")
|
||||
config.bind(",cPH", "config-cycle -p -u *://*.{url:host}/* content.plugins ;; reload")
|
||||
config.bind(",cPh", "config-cycle -p -u *://{url:host}/* content.plugins ;; reload")
|
||||
config.bind(",cPu", "config-cycle -p -u {url} content.plugins ;; reload")
|
||||
config.bind(
|
||||
",cSH", "config-cycle -p -u *://*.{url:host}/* content.javascript.enabled ;; reload"
|
||||
)
|
||||
config.bind(
|
||||
",cSh", "config-cycle -p -u *://{url:host}/* content.javascript.enabled ;; reload"
|
||||
)
|
||||
config.bind(",cSu", "config-cycle -p -u {url} content.javascript.enabled ;; reload")
|
||||
config.bind(
|
||||
",ccH",
|
||||
"config-cycle -p -t -u *://*.{url:host}/* content.cookies.accept all no-3rdparty never ;; reload",
|
||||
)
|
||||
config.bind(
|
||||
",cch",
|
||||
"config-cycle -p -t -u *://{url:host}/* content.cookies.accept all no-3rdparty never ;; reload",
|
||||
)
|
||||
config.bind(
|
||||
",ccu",
|
||||
"config-cycle -p -t -u {url} content.cookies.accept all no-3rdparty never ;; reload",
|
||||
)
|
||||
config.bind(",ch", "back -t")
|
||||
config.bind(",ciH", "config-cycle -p -t -u *://*.{url:host}/* content.images ;; reload")
|
||||
config.bind(",cih", "config-cycle -p -t -u *://{url:host}/* content.images ;; reload")
|
||||
config.bind(",ciu", "config-cycle -p -t -u {url} content.images ;; reload")
|
||||
config.bind(",cl", "forward -t")
|
||||
config.bind(
|
||||
",cpH", "config-cycle -p -t -u *://*.{url:host}/* content.plugins ;; reload"
|
||||
)
|
||||
config.bind(",cph", "config-cycle -p -t -u *://{url:host}/* content.plugins ;; reload")
|
||||
config.bind(",cpu", "config-cycle -p -t -u {url} content.plugins ;; reload")
|
||||
config.bind(
|
||||
",csH",
|
||||
"config-cycle -p -t -u *://*.{url:host}/* content.javascript.enabled ;; reload",
|
||||
)
|
||||
config.bind(
|
||||
",csh",
|
||||
"config-cycle -p -t -u *://{url:host}/* content.javascript.enabled ;; reload",
|
||||
)
|
||||
config.bind(",csu", "config-cycle -p -t -u {url} content.javascript.enabled ;; reload")
|
||||
|
||||
# downloads
|
||||
config.bind(",da", "download-cancel")
|
||||
config.bind(",dd", "download")
|
||||
config.bind(",dc", "download-clear")
|
||||
config.bind(",dy", "spawn ytdl {url}")
|
||||
|
||||
# dev tools
|
||||
config.bind(",Dd", "devtools")
|
||||
config.bind(",Df", "devtools-focus")
|
||||
config.bind(",Dc", "devtools left")
|
||||
config.bind(",Dt", "devtools bottom")
|
||||
config.bind(",Ds", "devtools top")
|
||||
config.bind(",Dr", "devtools right")
|
||||
config.bind(",Dw", "devtools window")
|
||||
|
||||
# save
|
||||
config.bind("fs", "save")
|
||||
|
||||
# hints
|
||||
config.bind(",hd", "hint links download")
|
||||
config.bind(",hh", "hint")
|
||||
config.bind(",hH", "hint all hover")
|
||||
config.bind(",hii", "hint images")
|
||||
config.bind(",hiI", "hint images tab")
|
||||
config.bind(",hIi", "hint inputs")
|
||||
config.bind(",hIf", "hint inputs --first")
|
||||
config.bind(",hO", "hint links fill :open -t -r {hint-url}")
|
||||
config.bind(",ho", "hint links fill :open {hint-url}")
|
||||
config.bind(",hR", "hint --rapid links window")
|
||||
config.bind(",hr", "hint --rapid links tab-bg")
|
||||
config.bind(",htb", "hint all tab-bg")
|
||||
config.bind(",htf", "hint all tab-fg")
|
||||
config.bind(",htt", "hint all tab")
|
||||
config.bind(",hw", "hint all window")
|
||||
config.bind(",hy", "hint links yank")
|
||||
config.bind(",hY", "hint links yank-primary")
|
||||
# Bindings for hint mode
|
||||
config.bind("<Ctrl-B>", "hint all tab-bg", mode="hint")
|
||||
config.bind("<Ctrl-F>", "hint links", mode="hint")
|
||||
config.bind("<Ctrl-R>", "hint --rapid links tab-bg", mode="hint")
|
||||
config.bind("<Escape>", "mode-leave", mode="hint")
|
||||
config.bind("<Return>", "hint-follow", mode="hint")
|
||||
|
||||
# Move
|
||||
config.bind("<Ctrl-PgDown>", "tab-next")
|
||||
config.bind("<Ctrl-C>", "back -w")
|
||||
config.bind("<Ctrl-R>", "forward -w")
|
||||
config.bind("<Ctrl-h>", "home")
|
||||
config.bind("T", "tab-next")
|
||||
config.bind("S", "tab-prev")
|
||||
config.bind("C", "back")
|
||||
config.bind("R", "forward")
|
||||
|
||||
# cmd
|
||||
config.bind(",sb", "cmd-set-text -s :bind")
|
||||
config.bind(",st", "cmd-set-text -s :set -t")
|
||||
config.bind(",ss", "set")
|
||||
config.bind(",sS", "cmd-set-text -s :set")
|
||||
|
||||
# open
|
||||
config.bind("<Ctrl-N>", "open -w")
|
||||
config.bind("<Ctrl-Shift-N>", "open -p")
|
||||
config.bind("<Ctrl-T>", "open -t")
|
||||
config.bind(",ob", "cmd-set-text -s :open -b")
|
||||
config.bind(",oB", "cmd-set-text :open -b -r {url:pretty}")
|
||||
config.bind(",oP", "cmd-set-text :open -t -r {url:pretty}")
|
||||
config.bind(",ott", "open -t")
|
||||
config.bind(",otT", "cmd-set-text -s :open -t")
|
||||
config.bind(",ow", "cmd-set-text -s :open -w")
|
||||
config.bind(",oW", "cmd-set-text :open -w {url:pretty}")
|
||||
config.bind(",occ", "open -- {clipboard}")
|
||||
config.bind(",ocC", "open -t -- {clipboard}")
|
||||
config.bind(",ocp", "open -- {primary}")
|
||||
config.bind(",ocP", "open -t -- {primary}")
|
||||
config.bind(",ocw", "open -w -- {clipboard}")
|
||||
config.bind(",ocW", "open -w -- {primary}")
|
||||
config.bind("o", "cmd-set-text -s :open")
|
||||
config.bind("O", "cmd-set-text :open {url:pretty}")
|
||||
|
||||
# tabs
|
||||
config.bind("<Alt-1>", "tab-focus 1")
|
||||
config.bind("<Alt-2>", "tab-focus 2")
|
||||
config.bind("<Alt-3>", "tab-focus 3")
|
||||
config.bind("<Alt-4>", "tab-focus 4")
|
||||
config.bind("<Alt-5>", "tab-focus 5")
|
||||
config.bind("<Alt-6>", "tab-focus 6")
|
||||
config.bind("<Alt-7>", "tab-focus 7")
|
||||
config.bind("<Alt-8>", "tab-focus 8")
|
||||
config.bind("<Alt-9>", "tab-focus -1")
|
||||
config.bind("<Alt-m>", "tab-mute")
|
||||
config.bind("<Ctrl-Tab>", "tab-focus last")
|
||||
config.bind("<Ctrl-W>", "tab-close")
|
||||
config.bind(",tT", "tab-move +")
|
||||
config.bind(",tS", "tab-move -")
|
||||
config.bind(",tn", "tab-next")
|
||||
config.bind(",tp", "tab-prev")
|
||||
config.bind(",t«", "tab-focus -1")
|
||||
config.bind(",t»", "tab-focus 1")
|
||||
config.bind(",tC", "tab-clone")
|
||||
config.bind(",tD", "tab-only")
|
||||
config.bind(",td", "tab-close")
|
||||
config.bind(",tf", "cmd-set-text -sr :tab-focus")
|
||||
config.bind(",tg", "tab-give")
|
||||
config.bind(",tl", "tab-focus last")
|
||||
config.bind(",tm", "tab-move")
|
||||
config.bind(",tP", "tab-pin")
|
||||
config.bind(",ts", "cmd-set-text -s :tab-select")
|
||||
|
||||
# scoll
|
||||
config.bind("G", "scroll-to-perc")
|
||||
config.bind("gg", "scroll-to-perc 0")
|
||||
config.bind("c", "scroll left")
|
||||
config.bind("t", "scroll down")
|
||||
config.bind("s", "scroll up")
|
||||
config.bind("r", "scroll right")
|
||||
config.bind("<Ctrl-F>", "scroll-page 0 1")
|
||||
config.bind("<Ctrl-B>", "scroll-page 0 -1")
|
||||
config.bind("<Ctrl-D>", "scroll-page 0 0.5")
|
||||
config.bind("<Ctrl-U>", "scroll-page 0 -0.5")
|
||||
|
||||
# navigate
|
||||
config.bind(",nd", "navigate decrement")
|
||||
config.bind(",ni", "navigate increment")
|
||||
config.bind(",nn", "navigate prev")
|
||||
config.bind(",nN", "navigate next -t")
|
||||
config.bind(",np", "navigate next")
|
||||
config.bind(",nP", "navigate prev -t")
|
||||
config.bind(",nu", "navigate up")
|
||||
config.bind(",nU", "navigate up -t")
|
||||
|
||||
# search
|
||||
config.bind("n", "search-next")
|
||||
config.bind("N", "search-prev")
|
||||
|
||||
# print
|
||||
config.bind("<Ctrl-Alt-p>", "print")
|
||||
|
||||
config.bind(",qq", "quit")
|
||||
config.bind(",qs", "quit --save")
|
||||
config.bind(",qw", "close")
|
||||
config.bind("<Ctrl-Q>", "quit")
|
||||
|
||||
# reload
|
||||
config.bind(",rr", "reload")
|
||||
config.bind(",rR", "reload -f")
|
||||
config.bind("<F5>", "reload")
|
||||
config.bind("<Ctrl-F5>", "reload -f")
|
||||
|
||||
# view
|
||||
config.bind(",vh", "history")
|
||||
config.bind(",vs", "view-source")
|
||||
config.bind(",vm", "spawn mpv {url}")
|
||||
|
||||
# yank
|
||||
config.bind("yd", "yank domain")
|
||||
config.bind("yD", "yank domain -s")
|
||||
config.bind("yi", "yank inline [{title}]({url})")
|
||||
config.bind("yI", "yank inline [{title}]({url}) -s")
|
||||
config.bind("yp", "yank pretty-url")
|
||||
config.bind("yP", "yank pretty-url -s")
|
||||
config.bind("yt", "yank title")
|
||||
config.bind("yT", "yank title -s")
|
||||
config.bind("yy", "yank")
|
||||
config.bind("yY", "yank -s")
|
||||
|
||||
config.bind("<Escape>", "clear-keychain ;; search ;; fullscreen --leave")
|
||||
|
||||
config.bind("+", "zoom-in")
|
||||
config.bind("-", "zoom-out")
|
||||
config.bind("=", "zoom")
|
||||
|
||||
config.bind("?", "cmd-set-text ?")
|
||||
config.bind("/", "cmd-set-text /")
|
||||
config.bind(":", "cmd-set-text :")
|
||||
config.bind(".", "repeat-command")
|
||||
|
||||
config.bind("<Ctrl-Shift-Tab>", "nop")
|
||||
config.bind("<Ctrl-s>", "stop")
|
||||
config.bind("<F11>", "fullscreen")
|
||||
|
||||
config.bind("<Return>", "selection-follow")
|
||||
config.bind("<Ctrl-Return>", "selection-follow -t")
|
||||
|
||||
config.bind("<back>", "back")
|
||||
config.bind("<forward>", "forward")
|
||||
|
||||
|
||||
config.bind("<Ctrl-V>", "mode-enter passthrough")
|
||||
config.bind("'", "mode-enter jump_mark")
|
||||
config.bind("v", "mode-enter caret")
|
||||
config.bind("V", "mode-enter caret ;; selection-toggle --line")
|
||||
config.bind("`", "mode-enter set_mark")
|
||||
config.bind("i", "mode-enter insert")
|
||||
|
||||
config.bind("q", "macro-record")
|
||||
config.bind("@", "macro-run")
|
||||
|
||||
config.bind("U", "undo -w")
|
||||
config.bind("<Ctrl-Shift-T>", "undo")
|
||||
config.bind("u", "undo")
|
||||
|
||||
# Bindings for caret mode
|
||||
config.bind("C", "scroll left", mode="caret")
|
||||
config.bind("T", "scroll down", mode="caret")
|
||||
config.bind("S", "scroll up", mode="caret")
|
||||
config.bind("R", "scroll right", mode="caret")
|
||||
config.bind("c", "move-to-prev-char", mode="caret")
|
||||
config.bind("t", "move-to-next-line", mode="caret")
|
||||
config.bind("s", "move-to-prev-line", mode="caret")
|
||||
config.bind("r", "move-to-next-char", mode="caret")
|
||||
|
||||
config.bind("$", "move-to-end-of-line", mode="caret")
|
||||
config.bind("0", "move-to-start-of-line", mode="caret")
|
||||
config.bind("<Ctrl-Space>", "selection-drop", mode="caret")
|
||||
config.bind("<Escape>", "mode-leave", mode="caret")
|
||||
config.bind("<Return>", "yank selection", mode="caret")
|
||||
config.bind("<Space>", "selection-toggle", mode="caret")
|
||||
config.bind("v", "selection-toggle", mode="caret")
|
||||
config.bind("V", "selection-toggle --line", mode="caret")
|
||||
config.bind("y", "yank selection", mode="caret")
|
||||
config.bind("Y", "yank selection -s", mode="caret")
|
||||
config.bind("[", "move-to-start-of-prev-block", mode="caret")
|
||||
config.bind("]", "move-to-start-of-next-block", mode="caret")
|
||||
config.bind("{", "move-to-end-of-prev-block", mode="caret")
|
||||
config.bind("}", "move-to-end-of-next-block", mode="caret")
|
||||
config.bind("b", "move-to-prev-word", mode="caret")
|
||||
config.bind("e", "move-to-end-of-word", mode="caret")
|
||||
config.bind("gg", "move-to-start-of-document", mode="caret")
|
||||
config.bind("G", "move-to-end-of-document", mode="caret")
|
||||
config.bind("n", "mode-enter normal", mode="caret")
|
||||
config.bind("o", "selection-reverse", mode="caret")
|
||||
config.bind("w", "move-to-next-word", mode="caret")
|
||||
|
||||
# Bindings for command mode
|
||||
config.bind("<Alt-B>", "rl-backward-word", mode="command")
|
||||
config.bind("<Alt-Backspace>", "rl-backward-kill-word", mode="command")
|
||||
config.bind("<Alt-D>", "rl-kill-word", mode="command")
|
||||
config.bind("<Alt-F>", "rl-forward-word", mode="command")
|
||||
config.bind("<Ctrl-?>", "rl-delete-char", mode="command")
|
||||
config.bind("<Ctrl-A>", "rl-beginning-of-line", mode="command")
|
||||
config.bind("<Ctrl-B>", "rl-backward-char", mode="command")
|
||||
config.bind("<Ctrl-C>", "completion-item-yank", mode="command")
|
||||
config.bind("<Ctrl-D>", "completion-item-del", mode="command")
|
||||
config.bind("<Ctrl-E>", "rl-end-of-line", mode="command")
|
||||
config.bind("<Ctrl-F>", "rl-forward-char", mode="command")
|
||||
config.bind("<Ctrl-H>", "rl-backward-delete-char", mode="command")
|
||||
config.bind("<Ctrl-K>", "rl-kill-line", mode="command")
|
||||
config.bind("<Ctrl-N>", "command-history-next", mode="command")
|
||||
config.bind("<Ctrl-P>", "command-history-prev", mode="command")
|
||||
config.bind("<Ctrl-Return>", "command-accept --rapid", mode="command")
|
||||
config.bind("<Ctrl-Shift-C>", "completion-item-yank --sel", mode="command")
|
||||
config.bind("<Ctrl-Shift-Tab>", "completion-item-focus prev-category", mode="command")
|
||||
config.bind("<Ctrl-Tab>", "completion-item-focus next-category", mode="command")
|
||||
config.bind("<Ctrl-U>", "rl-unix-line-discard", mode="command")
|
||||
config.bind("<Ctrl-W>", "rl-unix-word-rubout", mode="command")
|
||||
config.bind("<Ctrl-Y>", "rl-yank", mode="command")
|
||||
config.bind("<Down>", "completion-item-focus --history next", mode="command")
|
||||
config.bind("<Escape>", "mode-leave", mode="command")
|
||||
config.bind("<PgDown>", "completion-item-focus next-page", mode="command")
|
||||
config.bind("<PgUp>", "completion-item-focus prev-page", mode="command")
|
||||
config.bind("<Return>", "command-accept", mode="command")
|
||||
config.bind("<Shift-Delete>", "completion-item-del", mode="command")
|
||||
config.bind("<Shift-Tab>", "completion-item-focus prev", mode="command")
|
||||
config.bind("<Tab>", "completion-item-focus next", mode="command")
|
||||
config.bind("<Up>", "completion-item-focus --history prev", mode="command")
|
||||
|
||||
# Bindings for insert mode
|
||||
config.bind("<Ctrl-E>", "edit-text", mode="insert")
|
||||
config.bind("<Escape>", "mode-leave", mode="insert")
|
||||
config.bind("<Shift-Escape>", "fake-key <Escape>", mode="insert")
|
||||
config.bind("<Shift-Ins>", "insert-text -- {primary}", mode="insert")
|
||||
|
||||
# Bindings for passthrough mode
|
||||
config.bind("<Shift-Escape>", "mode-leave", mode="passthrough")
|
||||
|
||||
# Bindings for prompt mode
|
||||
config.bind("<Alt-B>", "rl-backward-word", mode="prompt")
|
||||
config.bind("<Alt-Backspace>", "rl-backward-kill-word", mode="prompt")
|
||||
config.bind("<Alt-D>", "rl-kill-word", mode="prompt")
|
||||
config.bind("<Alt-F>", "rl-forward-word", mode="prompt")
|
||||
config.bind("<Alt-Shift-Y>", "prompt-yank --sel", mode="prompt")
|
||||
config.bind("<Alt-Y>", "prompt-yank", mode="prompt")
|
||||
config.bind("<Ctrl-?>", "rl-delete-char", mode="prompt")
|
||||
config.bind("<Ctrl-A>", "rl-beginning-of-line", mode="prompt")
|
||||
config.bind("<Ctrl-B>", "rl-backward-char", mode="prompt")
|
||||
config.bind("<Ctrl-E>", "rl-end-of-line", mode="prompt")
|
||||
config.bind("<Ctrl-F>", "rl-forward-char", mode="prompt")
|
||||
config.bind("<Ctrl-H>", "rl-backward-delete-char", mode="prompt")
|
||||
config.bind("<Ctrl-K>", "rl-kill-line", mode="prompt")
|
||||
config.bind("<Ctrl-P>", "prompt-open-download --pdfjs", mode="prompt")
|
||||
config.bind("<Ctrl-U>", "rl-unix-line-discard", mode="prompt")
|
||||
config.bind("<Ctrl-W>", "rl-unix-word-rubout", mode="prompt")
|
||||
config.bind("<Ctrl-X>", "prompt-open-download", mode="prompt")
|
||||
config.bind("<Ctrl-Y>", "rl-yank", mode="prompt")
|
||||
config.bind("<Down>", "prompt-item-focus next", mode="prompt")
|
||||
config.bind("<Escape>", "mode-leave", mode="prompt")
|
||||
config.bind("<Return>", "prompt-accept", mode="prompt")
|
||||
config.bind("<Shift-Tab>", "prompt-item-focus prev", mode="prompt")
|
||||
config.bind("<Tab>", "prompt-item-focus next", mode="prompt")
|
||||
config.bind("<Up>", "prompt-item-focus prev", mode="prompt")
|
||||
|
||||
# Bindings for register mode
|
||||
config.bind("<Escape>", "mode-leave", mode="register")
|
||||
|
||||
# Bindings for yesno mode
|
||||
config.bind("<Alt-Shift-Y>", "prompt-yank --sel", mode="yesno")
|
||||
config.bind("<Alt-Y>", "prompt-yank", mode="yesno")
|
||||
config.bind("<Escape>", "mode-leave", mode="yesno")
|
||||
config.bind("<Return>", "prompt-accept", mode="yesno")
|
||||
config.bind("N", "prompt-accept --save no", mode="yesno")
|
||||
config.bind("Y", "prompt-accept --save yes", mode="yesno")
|
||||
config.bind("n", "prompt-accept no", mode="yesno")
|
||||
config.bind("y", "prompt-accept yes", mode="yesno")
|
@ -1 +0,0 @@
|
||||
../../fromGIT/qutebrowser-nord/nord-qutebrowser.py
|
@ -1,44 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# Padding (in pixels) for the statusbar.
|
||||
# Type: Padding
|
||||
c.statusbar.padding = {'top': 1, 'bottom': 1, 'left': 0, 'right': 0}
|
||||
|
||||
# Position of the status bar.
|
||||
# Type: VerticalPosition
|
||||
# Valid values:
|
||||
# - top
|
||||
# - bottom
|
||||
c.statusbar.position = 'bottom'
|
||||
|
||||
# When to show the statusbar.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - always: Always show the statusbar.
|
||||
# - never: Always hide the statusbar.
|
||||
# - in-mode: Show the statusbar when in modes other than normal mode.
|
||||
c.statusbar.show = 'in-mode'
|
||||
|
||||
# List of widgets displayed in the statusbar.
|
||||
# Type: List of StatusbarWidget
|
||||
# Valid values:
|
||||
# - url: Current page URL.
|
||||
# - scroll: Percentage of the current page position like `10%`.
|
||||
# - scroll_raw: Raw percentage of the current page position like `10`.
|
||||
# - history: Display an arrow when possible to go back/forward in history.
|
||||
# - tabs: Current active tab, e.g. `2`.
|
||||
# - keypress: Display pressed keys when composing a vi command.
|
||||
# - progress: Progress bar for the current page loading.
|
||||
# - text:foo: Display the static text after the colon, `foo` in the example.
|
||||
c.statusbar.widgets = [
|
||||
'keypress',
|
||||
'url',
|
||||
'scroll',
|
||||
'history',
|
||||
'progress',
|
||||
'tabs',
|
||||
]
|
@ -1,212 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# Open new tabs (middleclick/ctrl+click) in the background.
|
||||
# Type: Bool
|
||||
c.tabs.background = True
|
||||
|
||||
# Mouse button with which to close tabs.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - right: Close tabs on right-click.
|
||||
# - middle: Close tabs on middle-click.
|
||||
# - none: Don't close tabs using the mouse.
|
||||
c.tabs.close_mouse_button = 'middle'
|
||||
|
||||
# How to behave when the close mouse button is pressed on the tab bar.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - new-tab: Open a new tab.
|
||||
# - close-current: Close the current tab.
|
||||
# - close-last: Close the last tab.
|
||||
# - ignore: Don't do anything.
|
||||
c.tabs.close_mouse_button_on_bar = 'new-tab'
|
||||
|
||||
# Scaling factor for favicons in the tab bar. The tab size is unchanged,
|
||||
# so big favicons also require extra `tabs.padding`.
|
||||
# Type: Float
|
||||
c.tabs.favicons.scale = 1.0
|
||||
|
||||
# When to show favicons in the tab bar. When switching this from never
|
||||
# to always/pinned, note that favicons might not be loaded yet, thus
|
||||
# tabs might require a reload to display them.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - always: Always show favicons.
|
||||
# - never: Always hide favicons.
|
||||
# - pinned: Show favicons only on pinned tabs.
|
||||
c.tabs.favicons.show = 'pinned'
|
||||
|
||||
# Maximum stack size to remember for tab switches (-1 for no maximum).
|
||||
# Type: Int
|
||||
c.tabs.focus_stack_size = 10
|
||||
|
||||
# Padding (in pixels) for tab indicators.
|
||||
# Type: Padding
|
||||
c.tabs.indicator.padding = {'top': 2, 'bottom': 2, 'left': 0, 'right': 4}
|
||||
|
||||
# Width (in pixels) of the progress indicator (0 to disable).
|
||||
# Type: Int
|
||||
c.tabs.indicator.width = 3
|
||||
|
||||
# How to behave when the last tab is closed. If the
|
||||
# `tabs.tabs_are_windows` setting is set, this is ignored and the
|
||||
# behavior is always identical to the `close` value.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - ignore: Don't do anything.
|
||||
# - blank: Load a blank page.
|
||||
# - startpage: Load the start page.
|
||||
# - default-page: Load the default page.
|
||||
# - close: Close the window.
|
||||
c.tabs.last_close = 'blank'
|
||||
|
||||
# Maximum width (in pixels) of tabs (-1 for no maximum). This setting
|
||||
# only applies when tabs are horizontal. This setting does not apply to
|
||||
# pinned tabs, unless `tabs.pinned.shrink` is False. This setting may
|
||||
# not apply properly if max_width is smaller than the minimum size of
|
||||
# tab contents, or smaller than tabs.min_width.
|
||||
# Type: Int
|
||||
c.tabs.max_width = -1
|
||||
|
||||
# Minimum width (in pixels) of tabs (-1 for the default minimum size
|
||||
# behavior). This setting only applies when tabs are horizontal. This
|
||||
# setting does not apply to pinned tabs, unless `tabs.pinned.shrink` is
|
||||
# False.
|
||||
# Type: Int
|
||||
c.tabs.min_width = -1
|
||||
|
||||
# When switching tabs, what input mode is applied.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - persist: Retain the current mode.
|
||||
# - restore: Restore previously saved mode.
|
||||
# - normal: Always revert to normal mode.
|
||||
c.tabs.mode_on_change = 'normal'
|
||||
|
||||
# Switch between tabs using the mouse wheel.
|
||||
# Type: Bool
|
||||
c.tabs.mousewheel_switching = False
|
||||
|
||||
# Position of new tabs opened from another tab. See
|
||||
# `tabs.new_position.stacking` for controlling stacking behavior.
|
||||
# Type: NewTabPosition
|
||||
# Valid values:
|
||||
# - prev: Before the current tab.
|
||||
# - next: After the current tab.
|
||||
# - first: At the beginning.
|
||||
# - last: At the end.
|
||||
c.tabs.new_position.related = 'next'
|
||||
|
||||
# Stack related tabs on top of each other when opened consecutively.
|
||||
# Only applies for `next` and `prev` values of
|
||||
# `tabs.new_position.related` and `tabs.new_position.unrelated`.
|
||||
# Type: Bool
|
||||
c.tabs.new_position.stacking = True
|
||||
|
||||
# Position of new tabs which are not opened from another tab. See
|
||||
# `tabs.new_position.stacking` for controlling stacking behavior.
|
||||
# Type: NewTabPosition
|
||||
# Valid values:
|
||||
# - prev: Before the current tab.
|
||||
# - next: After the current tab.
|
||||
# - first: At the beginning.
|
||||
# - last: At the end.
|
||||
c.tabs.new_position.unrelated = 'last'
|
||||
|
||||
# Padding (in pixels) around text for tabs.
|
||||
# Type: Padding
|
||||
c.tabs.padding = {'top': 0, 'bottom': 0, 'left': 5, 'right': 5}
|
||||
|
||||
# Force pinned tabs to stay at fixed URL.
|
||||
# Type: Bool
|
||||
c.tabs.pinned.frozen = True
|
||||
|
||||
# Shrink pinned tabs down to their contents.
|
||||
# Type: Bool
|
||||
c.tabs.pinned.shrink = True
|
||||
|
||||
# Position of the tab bar.
|
||||
# Type: Position
|
||||
# Valid values:
|
||||
# - top
|
||||
# - bottom
|
||||
# - left
|
||||
# - right
|
||||
c.tabs.position = 'bottom'
|
||||
|
||||
# Which tab to select when the focused tab is removed.
|
||||
# Type: SelectOnRemove
|
||||
# Valid values:
|
||||
# - prev: Select the tab which came before the closed one (left in horizontal, above in vertical).
|
||||
# - next: Select the tab which came after the closed one (right in horizontal, below in vertical).
|
||||
# - last-used: Select the previously selected tab.
|
||||
c.tabs.select_on_remove = 'next'
|
||||
|
||||
# When to show the tab bar.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - always: Always show the tab bar.
|
||||
# - never: Always hide the tab bar.
|
||||
# - multiple: Hide the tab bar if only one tab is open.
|
||||
# - switching: Show the tab bar when switching tabs.
|
||||
c.tabs.show = 'multiple'
|
||||
|
||||
# Duration (in milliseconds) to show the tab bar before hiding it when
|
||||
# tabs.show is set to 'switching'.
|
||||
# Type: Int
|
||||
c.tabs.show_switching_delay = 800
|
||||
|
||||
# Open a new window for every tab.
|
||||
# Type: Bool
|
||||
c.tabs.tabs_are_windows = False
|
||||
|
||||
# Alignment of the text inside of tabs.
|
||||
# Type: TextAlignment
|
||||
# Valid values:
|
||||
# - left
|
||||
# - right
|
||||
# - center
|
||||
c.tabs.title.alignment = 'center'
|
||||
|
||||
# Format to use for the tab title. The following placeholders are
|
||||
# defined: * `{perc}`: Percentage as a string like `[10%]`. *
|
||||
# `{perc_raw}`: Raw percentage, e.g. `10`. * `{current_title}`: Title of
|
||||
# the current web page. * `{title_sep}`: The string `" - "` if a title
|
||||
# is set, empty otherwise. * `{index}`: Index of this tab. *
|
||||
# `{aligned_index}`: Index of this tab padded with spaces to have the
|
||||
# same width. * `{id}`: Internal tab ID of this tab. * `{scroll_pos}`:
|
||||
# Page scroll position. * `{host}`: Host of the current web page. *
|
||||
# `{backend}`: Either `webkit` or `webengine` * `{private}`: Indicates
|
||||
# when private mode is enabled. * `{current_url}`: URL of the current
|
||||
# web page. * `{protocol}`: Protocol (http/https/...) of the current web
|
||||
# page. * `{audio}`: Indicator for audio/mute status.
|
||||
# Type: FormatString
|
||||
c.tabs.title.format = '{audio}{index}: {current_title}'
|
||||
|
||||
# Format to use for the tab title for pinned tabs. The same placeholders
|
||||
# like for `tabs.title.format` are defined.
|
||||
# Type: FormatString
|
||||
c.tabs.title.format_pinned = '{index}'
|
||||
|
||||
# Show tooltips on tabs. Note this setting only affects windows opened
|
||||
# after it has been set.
|
||||
# Type: Bool
|
||||
c.tabs.tooltips = True
|
||||
|
||||
# Number of closed tabs (per window) and closed windows to remember for
|
||||
# :undo (-1 for no maximum).
|
||||
# Type: Int
|
||||
c.tabs.undo_stack_size = 100
|
||||
|
||||
# Width (in pixels or as percentage of the window) of the tab bar if
|
||||
# it's vertical.
|
||||
# Type: PercOrInt
|
||||
c.tabs.width = '15%'
|
||||
|
||||
# Wrap when changing tabs.
|
||||
# Type: Bool
|
||||
c.tabs.wrap = True
|
@ -1,80 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# What search to start when something else than a URL is entered.
|
||||
# Type: String
|
||||
# Valid values:
|
||||
# - naive: Use simple/naive check.
|
||||
# - dns: Use DNS requests (might be slow!).
|
||||
# - never: Never search automatically.
|
||||
# - schemeless: Always search automatically unless URL explicitly contains a scheme.
|
||||
c.url.auto_search = 'naive'
|
||||
|
||||
# Page to open if :open -t/-b/-w is used without URL. Use `about:blank`
|
||||
# for a blank page.
|
||||
# Type: FuzzyUrl
|
||||
c.url.default_page = 'about:blank'
|
||||
|
||||
# URL segments where `:navigate increment/decrement` will search for a
|
||||
# number.
|
||||
# Type: FlagList
|
||||
# Valid values:
|
||||
# - host
|
||||
# - port
|
||||
# - path
|
||||
# - query
|
||||
# - anchor
|
||||
c.url.incdec_segments = ['path', 'query']
|
||||
|
||||
# Open base URL of the searchengine if a searchengine shortcut is
|
||||
# invoked without parameters.
|
||||
# Type: Bool
|
||||
c.url.open_base_url = False
|
||||
|
||||
# Search engines which can be used via the address bar. Maps a search
|
||||
# engine name (such as `DEFAULT`, or `ddg`) to a URL with a `{}`
|
||||
# placeholder. The placeholder will be replaced by the search term, use
|
||||
# `{{` and `}}` for literal `{`/`}` braces. The following further
|
||||
# placeholds are defined to configure how special characters in the
|
||||
# search terms are replaced by safe characters (called 'quoting'): *
|
||||
# `{}` and `{semiquoted}` quote everything except slashes; this is the
|
||||
# most sensible choice for almost all search engines (for the search
|
||||
# term `slash/and&` this placeholder expands to `slash/and%26amp`).
|
||||
# * `{quoted}` quotes all characters (for `slash/and&` this
|
||||
# placeholder expands to `slash%2Fand%26amp`). * `{unquoted}` quotes
|
||||
# nothing (for `slash/and&` this placeholder expands to
|
||||
# `slash/and&`). * `{0}` means the same as `{}`, but can be used
|
||||
# multiple times. The search engine named `DEFAULT` is used when
|
||||
# `url.auto_search` is turned on and something else than a URL was
|
||||
# entered to be opened. Other search engines can be used by prepending
|
||||
# the search engine name to the search term, e.g. `:open google
|
||||
# qutebrowser`.
|
||||
# Type: Dict
|
||||
c.url.searchengines = {
|
||||
'DEFAULT': 'https://duckduckgo.com/?q={}',
|
||||
'afr': 'https://www.amazon.fr/s?k={}',
|
||||
'aw': 'https://wiki.archlinux.org/index.php?title=Special%3ASearch&search={}',
|
||||
'ddg': 'https://duckduckgo.com/?q={}',
|
||||
'g': 'https://www.google.com/search?hl=en&q={}',
|
||||
'yt': 'https://www.youtube.com/results?search_query={}',
|
||||
}
|
||||
|
||||
# Page(s) to open at the start.
|
||||
# Type: List of FuzzyUrl, or FuzzyUrl
|
||||
c.url.start_pages = [
|
||||
'https://labs.phundrak.com'
|
||||
]
|
||||
|
||||
# URL parameters to strip with `:yank url`.
|
||||
# Type: List of String
|
||||
c.url.yank_ignored_parameters = [
|
||||
'ref',
|
||||
'utm_source',
|
||||
'utm_medium',
|
||||
'utm_campaign',
|
||||
'utm_term',
|
||||
'utm_content'
|
||||
]
|
@ -1,24 +0,0 @@
|
||||
# pylint: disable=C0111
|
||||
from qutebrowser.config.configfiles import ConfigAPI # noqa: F401
|
||||
from qutebrowser.config.config import ConfigContainer # noqa: F401
|
||||
config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103
|
||||
c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103
|
||||
|
||||
# Hide the window decoration. This setting requires a restart on
|
||||
# Wayland.
|
||||
# Type: Bool
|
||||
c.window.hide_decoration = True
|
||||
|
||||
# Format to use for the window title. The same placeholders like for
|
||||
# `tabs.title.format` are defined.
|
||||
# Type: FormatString
|
||||
c.window.title_format = '{current_title}{title_sep}qutebrowser'
|
||||
|
||||
# Set the main window background to transparent. This allows having a
|
||||
# transparent tab- or statusbar (might require a compositor such as
|
||||
# picom). However, it breaks some functionality such as dmenu embedding
|
||||
# via its `-w` option. On some systems, it was additionally reported
|
||||
# that main window transparency negatively affects performance. Note
|
||||
# this setting only affects windows opened after setting it.
|
||||
# Type: Bool
|
||||
c.window.transparent = True
|
@ -1,8 +0,0 @@
|
||||
/* -*- mode: scss -*- */
|
||||
|
||||
configuration {
|
||||
show-icons: true;
|
||||
sidebar-mode: false;
|
||||
modi: "ssh,drun,combi";
|
||||
}
|
||||
@theme "nord"
|
@ -1,142 +0,0 @@
|
||||
/* -*- mode: css -*- */
|
||||
/**
|
||||
* Nordic rofi theme
|
||||
* Adapted by undiabler <undiabler@gmail.com>
|
||||
*
|
||||
* Nord Color palette imported from https://www.nordtheme.com/
|
||||
*
|
||||
*/
|
||||
|
||||
configuration {
|
||||
|
||||
font: "Envy Code R 10";
|
||||
width: 30;
|
||||
line-margin: 10;
|
||||
lines: 6;
|
||||
columns: 2;
|
||||
|
||||
display-ssh: "";
|
||||
display-run: "";
|
||||
display-drun: "";
|
||||
display-window: "";
|
||||
display-combi: "";
|
||||
show-icons: true;
|
||||
}
|
||||
|
||||
* {
|
||||
nord0: #2e3440;
|
||||
nord1: #3b4252;
|
||||
nord2: #434c5e;
|
||||
nord3: #4c566a;
|
||||
|
||||
nord4: #d8dee9;
|
||||
nord5: #e5e9f0;
|
||||
nord6: #eceff4;
|
||||
|
||||
nord7: #8fbcbb;
|
||||
nord8: #88c0d0;
|
||||
nord9: #81a1c1;
|
||||
nord10: #5e81ac;
|
||||
nord11: #bf616a;
|
||||
|
||||
nord12: #d08770;
|
||||
nord13: #ebcb8b;
|
||||
nord14: #a3be8c;
|
||||
nord15: #b48ead;
|
||||
|
||||
foreground: @nord9;
|
||||
backlight: #ccffeedd;
|
||||
background-color: transparent;
|
||||
|
||||
highlight: underline bold #eceff4;
|
||||
|
||||
transparent: rgba(46,52,64,0);
|
||||
}
|
||||
|
||||
window {
|
||||
location: center;
|
||||
anchor: center;
|
||||
transparency: "screenshot";
|
||||
border: 0px;
|
||||
border-radius: 6px;
|
||||
|
||||
background-color: @transparent;
|
||||
spacing: 0;
|
||||
children: [mainbox];
|
||||
orientation: horizontal;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
spacing: 0;
|
||||
children: [ inputbar, message, listview ];
|
||||
}
|
||||
|
||||
message {
|
||||
color: @nord0;
|
||||
padding: 5;
|
||||
border-color: @foreground;
|
||||
border: 0px 2px 2px 2px;
|
||||
background-color: @nord7;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
color: @nord6;
|
||||
padding: 11px;
|
||||
background-color: #3b4252;
|
||||
|
||||
border: 1px;
|
||||
border-radius: 6px 6px 0px 0px;
|
||||
border-color: @nord10;
|
||||
}
|
||||
|
||||
entry, prompt, case-indicator {
|
||||
text-font: inherit;
|
||||
text-color:inherit;
|
||||
}
|
||||
|
||||
prompt {
|
||||
margin: 0px 0.3em 0em 0em ;
|
||||
}
|
||||
|
||||
listview {
|
||||
padding: 8px;
|
||||
border-radius: 0px 0px 6px 6px;
|
||||
border-color: @nord10;
|
||||
border: 0px 1px 1px 1px;
|
||||
background-color: rgba(46,52,64,0.9);
|
||||
dynamic: false;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 3px;
|
||||
vertical-align: 0.5;
|
||||
border-radius: 4px;
|
||||
background-color: transparent;
|
||||
color: @foreground;
|
||||
text-color: rgb(216, 222, 233);
|
||||
}
|
||||
|
||||
element selected.normal {
|
||||
background-color: @nord7;
|
||||
text-color: #2e3440;
|
||||
}
|
||||
|
||||
element-text, element-icon {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 6px;
|
||||
color: @foreground;
|
||||
horizontal-align: 0.5;
|
||||
|
||||
border: 2px 0px 2px 2px;
|
||||
border-radius: 4px 0px 0px 4px;
|
||||
border-color: @foreground;
|
||||
}
|
||||
|
||||
button selected normal {
|
||||
border: 2px 0px 2px 2px;
|
||||
border-color: @foreground;
|
||||
}
|
@ -1,303 +0,0 @@
|
||||
set $nord0 #2E3440
|
||||
set $nord1 #3B4252
|
||||
set $nord2 #434C5E
|
||||
set $nord3 #4C566A
|
||||
set $nord4 #D8DEE9
|
||||
set $nord5 #E5E9F0
|
||||
set $nord6 #ECEFF4
|
||||
set $nord7 #8FBCBB
|
||||
set $nord8 #88C0D0
|
||||
set $nord9 #81A1C1
|
||||
set $nord10 #5E81AC
|
||||
set $nord11 #BF616A
|
||||
set $nord12 #D08770
|
||||
set $nord13 #EBCB8B
|
||||
set $nord14 #A3BE8C
|
||||
set $nord15 #B48EAD
|
||||
set $bg $nord3
|
||||
set $fg $nord5
|
||||
|
||||
|
||||
set $mod Mod4
|
||||
set $left c
|
||||
set $down t
|
||||
set $up s
|
||||
set $right r
|
||||
set $term kitty
|
||||
set $menu "rofi -combi-modi drun -show combi"
|
||||
|
||||
output eDP-1 {
|
||||
mode 1920x1080@120Hz
|
||||
position 2560,0
|
||||
bg /home/phundrak/Pictures/Wallpapers/nord/spacemars.jpg fill
|
||||
}
|
||||
|
||||
output HDMI-A-1 {
|
||||
mode 2560x1080@60Hz
|
||||
position 0,0
|
||||
bg /home/phundrak/Pictures/Wallpapers/nord/spacemars.jpg fill
|
||||
}
|
||||
|
||||
exec swayidle -w \
|
||||
timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \
|
||||
timeout 601 'plock' \
|
||||
before-sleep 'playerctl pause' \
|
||||
before-sleep 'plock'
|
||||
|
||||
input "2:14:ETPS/2_Elantech_Touchpad" {
|
||||
dwt enabled
|
||||
tap enabled
|
||||
natural_scroll disabled
|
||||
middle_emulation enabled
|
||||
}
|
||||
|
||||
input "1267:12642:ELAN0412:00_04F3:3162_Touchpad" {
|
||||
dwt enabled
|
||||
tap enabled
|
||||
natural_scroll disabled
|
||||
middle_emulation enabled
|
||||
}
|
||||
|
||||
input "1386:792:Wacom_USB_Bamboo_PAD_Finger" {
|
||||
dwt enabled
|
||||
tap enabled
|
||||
middle_emulation enabled
|
||||
}
|
||||
|
||||
input "1386:792:Wacom_USB_Bamboo_PAD_Pen" {
|
||||
map_to_output HDMI-A-1
|
||||
}
|
||||
|
||||
input * {
|
||||
xkb_layout "fr"
|
||||
xkb_variant "bepo_afnor"
|
||||
xkb_options "caps:ctrl_modifier"
|
||||
}
|
||||
|
||||
input type:keyboard xkb_numlock enabled
|
||||
|
||||
|
||||
mode "resize" {
|
||||
bindsym $left resize shrink width 10px
|
||||
bindsym $down resize grow height 10px
|
||||
bindsym $up resize shrink height 10px
|
||||
bindsym $right resize grow width 10px
|
||||
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym Ctrl+g mode "default"
|
||||
bindsym q mode "default"
|
||||
}
|
||||
|
||||
mode "buffers" {
|
||||
bindsym d kill; mode "default"
|
||||
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym Ctrl+g mode "default"
|
||||
bindsym q mode "default"
|
||||
}
|
||||
|
||||
mode "rofi" {
|
||||
bindsym a exec awiki; mode "default"
|
||||
bindsym b exec bluetooth-connect; mode "default"
|
||||
bindsym e exec rofi-emoji; mode "default"
|
||||
bindsym r exec $menu; mode "default"
|
||||
bindsym s exec rofi -show ssh; mode "default"
|
||||
bindsym y exec ytplay; mode "default"
|
||||
bindsym Shift+y exec rofi-ytdl; mode "default"
|
||||
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym Ctrl+g mode "default"
|
||||
bindsym q mode "default"
|
||||
}
|
||||
|
||||
mode "apps" {
|
||||
bindsym b exec firefox; mode "default"
|
||||
bindsym Shift+b exec qutebrowser; mode "default"
|
||||
bindsym d exec discord; mode "default"
|
||||
bindsym e exec emacsclient -c; mode "default"
|
||||
bindsym g exec gimp; mode "default"
|
||||
bindsym n exec nemo; mode "default"
|
||||
bindsym r mode "rofi"
|
||||
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym Ctrl+g mode "default"
|
||||
bindsym q mode "default"
|
||||
}
|
||||
|
||||
mode "windows" {
|
||||
bindsym period mode "resize"
|
||||
|
||||
bindsym $left focus left; mode "default"
|
||||
bindsym $right focus right; mode "default"
|
||||
bindsym $up focus up; mode "default"
|
||||
bindsym $down focus down; mode "default"
|
||||
bindsym Shift+$left move left; mode "default"
|
||||
bindsym Shift+$right move right; mode "default"
|
||||
bindsym Shift+$up move up; mode "default"
|
||||
bindsym Shift+$down move down; mode "default"
|
||||
bindsym Ctrl+$left move workspace to output left; mode "default"
|
||||
bindsym Ctrl+$right move workspace to output right; mode "default"
|
||||
bindsym Ctrl+$up move workspace to output up; mode "default"
|
||||
bindsym Ctrl+$down move workspace to output down; mode "default"
|
||||
|
||||
bindsym slash splith; mode "default"
|
||||
bindsym minus splitv; mode "default"
|
||||
|
||||
bindsym a focus parent; mode "default"
|
||||
bindsym d kill; mode "default"
|
||||
bindsym f fullscreen; mode "default"
|
||||
bindsym Shift+f floating toggle; mode "default"
|
||||
bindsym Space focus mode_toggle; mode "default"
|
||||
|
||||
bindsym e layout toggle split; mode "default"
|
||||
bindsym i layout tabbed; mode "default"
|
||||
bindsym u layout stacking; mode "default"
|
||||
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym Ctrl+g mode "default"
|
||||
bindsym q mode "default"
|
||||
}
|
||||
|
||||
mode "sway" {
|
||||
bindsym r reload
|
||||
bindsym q exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'
|
||||
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym Ctrl+g mode "default"
|
||||
}
|
||||
|
||||
mode "leader" {
|
||||
bindsym minus move scratchpad; mode "default"
|
||||
bindsym plus scratchpad show; mode "default"
|
||||
|
||||
bindsym a mode "apps"
|
||||
bindsym b mode "buffers"
|
||||
bindsym l exec "plock"; mode "default"
|
||||
bindsym q mode "sway"
|
||||
bindsym w mode "windows"
|
||||
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym Ctrl+g mode "default"
|
||||
}
|
||||
|
||||
bindsym $mod+$left focus left
|
||||
bindsym $mod+$right focus right
|
||||
bindsym $mod+$up focus up
|
||||
bindsym $mod+$down focus down
|
||||
bindgesture swipe:3:left focus left
|
||||
bindgesture swipe:3:right focus right
|
||||
bindgesture swipe:3:up focus up
|
||||
bindgesture swipe:3:down focus down
|
||||
bindsym Shift+$mod+$left move left
|
||||
bindsym Shift+$mod+$right move right
|
||||
bindsym Shift+$mod+$up move up
|
||||
bindsym Shift+$mod+$down move down
|
||||
bindgesture swipe:4:left move left
|
||||
bindgesture swipe:4:right move right
|
||||
bindgesture swipe:4:up move up
|
||||
bindgesture swipe:4:down move down
|
||||
|
||||
mode "screenshot" {
|
||||
bindsym Print exec "screenshot"; mode "default"
|
||||
bindsym c exec "screenshot -c"; mode "default"
|
||||
bindsym s exec "screenshot -s"; mode "default"
|
||||
bindsym g exec "screenshot -g"; mode "default"
|
||||
bindsym d exec "screenshot -d 3"; mode "default"
|
||||
bindsym Shift+s exec "screenshot -sc"; mode "default"
|
||||
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym Ctrl+g mode "default"
|
||||
bindsym q mode "default"
|
||||
}
|
||||
|
||||
bindsym $mod+Space mode "leader"
|
||||
bindsym $mod+Return exec $term
|
||||
bindsym $mod+d exec $menu
|
||||
bindsym Print mode "screenshot"
|
||||
bindsym $mod+Print exec "screenshot -c"
|
||||
|
||||
bindsym $mod+quotedbl workspace number 1
|
||||
bindsym $mod+guillemotleft workspace number 2
|
||||
bindsym $mod+guillemotright workspace number 3
|
||||
bindsym $mod+parenleft workspace number 4
|
||||
bindsym $mod+parenright workspace number 5
|
||||
bindsym $mod+at workspace number 6
|
||||
bindsym $mod+plus workspace number 7
|
||||
bindsym $mod+minus workspace number 8
|
||||
bindsym $mod+slash workspace number 9
|
||||
bindsym $mod+asterisk workspace number 0
|
||||
|
||||
bindsym $mod+Shift+quotedbl move container to workspace number 1
|
||||
bindsym $mod+Shift+guillemotleft move container to workspace number 2
|
||||
bindsym $mod+Shift+guillemotright move container to workspace number 3
|
||||
bindsym $mod+Shift+parenleft move container to workspace number 4
|
||||
bindsym $mod+Shift+parenright move container to workspace number 5
|
||||
bindsym $mod+Shift+at move container to workspace number 6
|
||||
bindsym $mod+Shift+plus move container to workspace number 7
|
||||
bindsym $mod+Shift+minus move container to workspace number 8
|
||||
bindsym $mod+Shift+slash move container to workspace number 9
|
||||
bindsym $mod+Shift+asterisk move container to workspace number 0
|
||||
|
||||
bindsym --locked XF86AudioPlay exec playerctl play-pause
|
||||
bindsym --locked XF86AudioPause exec playerctl pause
|
||||
bindsym --locked XF86AudioStop exec playerctl stop
|
||||
bindsym --locked XF86AudioPrev exec playerctl previous
|
||||
bindsym --locked XF86AudioNext exec playerctl next
|
||||
bindsym --locked XF86AudioForward exec playerctl position +1
|
||||
bindsym --locked XF86AudioRewind exec playerctl position -1
|
||||
bindsym --locked XF86AudioRaiseVolume exec pamixer -i 2
|
||||
bindsym --locked XF86AudioLowerVolume exec pamixer -d 2
|
||||
bindsym XF86MonBrightnessUp exec xbacklight -perceived -inc 2
|
||||
bindsym XF86MonBrightnessDown exec xbacklight -perceived -dec 2
|
||||
bindsym XF86KbdBrightnessUp exec xbacklight -perceived -inc 2
|
||||
bindsym XF86KbdBrightnessDown exec xbacklight -perceived -dec 2
|
||||
|
||||
floating_modifier $mod normal
|
||||
|
||||
gaps outer 15px
|
||||
gaps inner 20px
|
||||
default_border pixel 2
|
||||
smart_borders on
|
||||
|
||||
# class border background text indicator child_border
|
||||
client.urgent $nord11 $nord11 $nord6 $nord11 $nord1
|
||||
client.focused $nord3 $nord3 $nord5 $nord3 $nord3
|
||||
client.focused_inactive $nord2 $nord2 $nord5 $nord2 $nord2
|
||||
client.unfocused $nord0 $nord0 $nord4 $nord0 $nord0
|
||||
client.placeholder $nord7 $nord7 $nord6 $nord7 nord7
|
||||
|
||||
#
|
||||
# Status Bar:
|
||||
#
|
||||
# Read `man 5 sway-bar` for more information about this section.
|
||||
bar {
|
||||
position top
|
||||
|
||||
# When the status_command prints a new line to stdout, swaybar updates.
|
||||
# The default just shows the current date and time.
|
||||
height 20
|
||||
status_command while swaybar-cmd; do sleep 1; done
|
||||
font FantasqueSansMono Nerd Font Mono 10
|
||||
|
||||
colors {
|
||||
statusline $nord5
|
||||
background $nord3
|
||||
|
||||
# border bg text
|
||||
focused_workspace $nord10 $nord10 $nord5
|
||||
active_workspace $nord9 $nord9 $nord5
|
||||
inactive_workspace $nord7 $nord7 $nord5
|
||||
urgent_workspace $nord11 $nord11 $nord6
|
||||
binding_mode $nord14 $nord14 $nord6
|
||||
}
|
||||
}
|
||||
|
||||
include /etc/sway/config.d/*
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=MPRIS implementation for MPD
|
||||
Requires=mpd.service
|
||||
After=mpd.service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/bin/mpd-mpris
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
@ -1,12 +0,0 @@
|
||||
[Unit]
|
||||
Description=PipeWire Input Filter Chain
|
||||
After=pipewire.service
|
||||
BindsTo=pipewire.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/pipewire -c /usr/share/pipewire/filter-chain/source-rnnoise.conf
|
||||
Type=simple
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=pipewire.service
|
@ -1,10 +0,0 @@
|
||||
[Unit]
|
||||
Description=Keep track of media player activity
|
||||
|
||||
[Service]
|
||||
Type=dbus
|
||||
ExecStart=/usr/bin/playerctld daemon
|
||||
BusName=org.mpris.MediaPlayer2.playerctld
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
@ -1,9 +0,0 @@
|
||||
[Unit]
|
||||
Description=Lightweight and dead simple power manager
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/bin/pumopm
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
@ -1,84 +0,0 @@
|
||||
[misc]
|
||||
# Don't ask for confirmations
|
||||
#assume_yes = true
|
||||
|
||||
# Disable specific steps - same options as the command line flag
|
||||
disable = ["emacs", "flutter", "deno", "shell"]
|
||||
|
||||
# Ignore failures for these steps
|
||||
ignore_failures = ["system"]
|
||||
|
||||
# Run specific steps - same options as the command line flag
|
||||
#only = ["system", "emacs"]
|
||||
|
||||
# Do not ask to retry failed steps (default: false)
|
||||
#no_retry = true
|
||||
|
||||
# Run inside tmux
|
||||
#run_in_tmux = true
|
||||
|
||||
# List of remote machines with Topgrade installed on them
|
||||
#remote_topgrades = ["toothless", "pi", "parnas"]
|
||||
|
||||
# Arguments to pass SSH when upgrading remote systems
|
||||
#ssh_arguments = "-o ConnectTimeout=2"
|
||||
|
||||
# Path to Topgrade executable on remote machines
|
||||
#remote_topgrade_path = ".cargo/bin/topgrade"
|
||||
|
||||
# Arguments to pass tmux when pulling Repositories
|
||||
#tmux_arguments = "-S /var/tmux.sock"
|
||||
|
||||
# Do not set the terminal title
|
||||
#set_title = false
|
||||
|
||||
# Cleanup temporary or old files
|
||||
#cleanup = true
|
||||
|
||||
[git]
|
||||
# max_concurrency = 5
|
||||
# Additional git repositories to pull
|
||||
repos = [
|
||||
# "~/fromGIT/emacs-packages/*",
|
||||
"~/.config/emacs/straight/repos/*",
|
||||
"~/fromGIT/stumpwm/*",
|
||||
"~/fromGIT/tectonics",
|
||||
"~/fromGIT/reveal.js/"
|
||||
]
|
||||
|
||||
# Don't pull the predefined git repos
|
||||
#predefined_repos = false
|
||||
|
||||
# Arguments to pass Git when pulling Repositories
|
||||
arguments = "--rebase --autostash"
|
||||
|
||||
#[composer]
|
||||
#self_update = true
|
||||
|
||||
# Commands to run before anything
|
||||
#[pre_commands]
|
||||
#"Emacs Snapshot" = "rm -rf ~/.emacs.d/elpa.bak && cp -rl ~/.emacs.d/elpa ~/.emacs.d/elpa.bak"
|
||||
|
||||
# Custom commands
|
||||
#[commands]
|
||||
#"Python Environment" = "~/dev/.env/bin/pip install -i https://pypi.python.org/simple -U --upgrade-strategy eager jupyter"
|
||||
|
||||
#[brew]
|
||||
#greedy_cask = true
|
||||
|
||||
[linux]
|
||||
# Arguments to pass yay when updating packages
|
||||
yay_arguments = "--nodevel"
|
||||
#trizen_arguments = "--devel"
|
||||
#enable_tlmgr = true
|
||||
#emerge_sync_flags = "-q"
|
||||
#emerge_update_flags = "-uDNa --with-bdeps=y world"
|
||||
|
||||
#[windows]
|
||||
# Manually select Windows updates
|
||||
#accept_all_updates = false
|
||||
|
||||
# Causes Topgrade to rename itself during the run to allow package managers
|
||||
# to upgrade it. Use this only if you installed Topgrade by using a package
|
||||
# manager such as Scoop to Cargo
|
||||
#self_rename = true
|
@ -1,394 +0,0 @@
|
||||
#!/usr/bin/fish
|
||||
if test "$USER" = 'phundrak'
|
||||
yadm decrypt
|
||||
else
|
||||
whiptail --yesno "Decrypt private files?" 8 40 && yadm decrypt
|
||||
end
|
||||
|
||||
set keyboardconf \
|
||||
'Section "InputClass"
|
||||
Identifier "system-keyboard"
|
||||
MatchIsKeyboard "on"
|
||||
Option "XkbLayout" "fr"
|
||||
Option "XkbModel" "pc104"
|
||||
Option "XkbVariant" "bepo_afnor"
|
||||
Option "XkbOptions" "caps:ctrl_modifier"
|
||||
EndSection'
|
||||
|
||||
printf "\n# Set keyboard layout #########################################################\n\n"
|
||||
whiptail --yesno "Would you like to set your keyboard layout to the bépo layout?" 8 55
|
||||
if test $status -eq 0
|
||||
echo $keyboardconf | sudo tee /etc/X11/xorg.conf.d/00-keyboard.conf
|
||||
end
|
||||
|
||||
set mylocales "en_US.UTF-8 UTF-8" "fr_FR.UTF-8 UTF-8" "ja_JP.UTF-8 UTF-8"
|
||||
|
||||
printf "\n# Set locale ##################################################################\n\n"
|
||||
for item in $mylocales
|
||||
whiptail --yesno "Set the \"$item\" locale?" 8 40
|
||||
if test $status -eq 0 -a (grep -e "#$item" /etc/locale.gen)
|
||||
sudo sed -i "/$item/s/^#//g" /etc/locale.gen
|
||||
end
|
||||
end
|
||||
|
||||
set localeconf "LANG=en_DK.UTF-8
|
||||
LC_COLLATE=C
|
||||
LC_NAME=fr_FR.UTF-8
|
||||
LC_IDENTIFICATION=fr_FR.UTF-8
|
||||
LC_TELEPHONE=fr_FR.UTF-8
|
||||
LC_MONETARY=fr_FR.UTF-8
|
||||
LC_PAPER=fr_FR.UTF-8
|
||||
LC_ADDRESS=fr_FR.UTF-8
|
||||
LC_MEASUREMENT=fr_FR.UTF-8"
|
||||
|
||||
whiptail --yesno "Do you agree to have the following locale set?\n\n $localeconf" 20 43
|
||||
if test $status -eq 0
|
||||
echo $localeconf | sudo tee /etc/locale.conf
|
||||
end
|
||||
|
||||
printf "\n# Generate locale #############################################################\n\n"
|
||||
sudo locale-gen
|
||||
|
||||
printf "\n# Create directories for mounting #############################################\n\n"
|
||||
sudo mkdir -p /mnt/{USB,CD,Android}
|
||||
sudo chown $USER:(id -g $USER) /mnt/{USB,CD,Android}
|
||||
|
||||
printf "\n# Set fish as the default shell ###############################################\n\n"
|
||||
whiptail --yesno "Set the current user’s default shell to fish?" 8 50
|
||||
if test $status -eq 0 -a ! "$SHELL" = '/usr/bin/fish'
|
||||
chsh -s /usr/bin/fish
|
||||
end
|
||||
|
||||
set SYSTEMPKG acpi \
|
||||
acpilight \
|
||||
bluez-firmware \
|
||||
bluez-utils \
|
||||
bzip2 \
|
||||
cpupower \
|
||||
exfat-utils \
|
||||
ffmpegthumbnailer \
|
||||
freeglut \
|
||||
gcc-libs \
|
||||
gdb \
|
||||
gnome-disk-utility \
|
||||
gnome-epub-thumbnailer \
|
||||
i3lock-color \
|
||||
corrupter-git \
|
||||
inetutils \
|
||||
jfsutils \
|
||||
jmtpfs \
|
||||
kitty \
|
||||
logrotate \
|
||||
man-pages \
|
||||
man-db \
|
||||
netctl \
|
||||
network-manager-applet \
|
||||
networkmanager-openvpn \
|
||||
nm-connection-editor \
|
||||
ntfs-3g \
|
||||
openssh \
|
||||
pavucontrol \
|
||||
wireplumber \
|
||||
pipewire-pulse \
|
||||
gst-plugin-pipewire \
|
||||
noise-suppression-for-voice \
|
||||
raw-thumbnailer \
|
||||
reflector \
|
||||
shadow \
|
||||
sshfs \
|
||||
usbutils \
|
||||
xdg-user-dirs-gtk \
|
||||
xfce-polkit \
|
||||
xidlehook \
|
||||
xfsprogs \
|
||||
xorg-xinit \
|
||||
xss-lock \
|
||||
xwallpaper
|
||||
|
||||
printf "\n# Installing SYSTEMPKG ##################################################\n\n"
|
||||
for pkg in $SYSTEMPKG
|
||||
paru -S --skipreview --needed $pkg
|
||||
end
|
||||
|
||||
|
||||
set DEVELPKG asar \
|
||||
base-devel \
|
||||
clang \
|
||||
cppcheck \
|
||||
cppreference \
|
||||
cppreference-devhelp \
|
||||
docker \
|
||||
docker-compose \
|
||||
dockerfile-language-server-bin \
|
||||
doxygen \
|
||||
emacs \
|
||||
farbfeld \
|
||||
flake8 \
|
||||
gnuplot \
|
||||
go \
|
||||
go-tools \
|
||||
graphviz \
|
||||
hugo \
|
||||
javascript-typescript-langserver \
|
||||
js-beautify \
|
||||
linux-headers \
|
||||
lldb \
|
||||
meson \
|
||||
mupdf-tools \
|
||||
npm \
|
||||
pacman-contrib \
|
||||
pandoc-bin \
|
||||
prettier \
|
||||
python-autoflake \
|
||||
python-epc \
|
||||
python-importmagic \
|
||||
pyright \
|
||||
python-nose \
|
||||
python-pip \
|
||||
python-poetry \
|
||||
python-ptvsd \
|
||||
python-pytest \
|
||||
qemu \
|
||||
r \
|
||||
rustup \
|
||||
sbcl \
|
||||
typescript \
|
||||
typescript-language-server-bin \
|
||||
valgrind \
|
||||
vscode-css-languageserver-bin \
|
||||
vscode-html-languageserver-bin \
|
||||
yaml-language-server-bin \
|
||||
zeal
|
||||
|
||||
printf "\n# Installing DEVELPKG ##################################################\n\n"
|
||||
for pkg in $DEVELPKG
|
||||
paru -S --skipreview --needed $pkg
|
||||
end
|
||||
|
||||
|
||||
set LATEXPKG biber \
|
||||
minted \
|
||||
texlive-bibtexextra \
|
||||
texlive-fontsextra \
|
||||
texlive-formatsextra \
|
||||
texlive-humanities \
|
||||
texlive-langjapanese \
|
||||
texlive-pictures \
|
||||
texlive-pstricks \
|
||||
texlive-publishers \
|
||||
texlive-science
|
||||
|
||||
printf "\n# Installing LATEXPKG ##################################################\n\n"
|
||||
for pkg in $LATEXPKG
|
||||
paru -S --skipreview --needed $pkg
|
||||
end
|
||||
|
||||
|
||||
set TERMINALPKG ascii \
|
||||
aspell-en \
|
||||
aspell-fr \
|
||||
bat \
|
||||
bitwarden-cli \
|
||||
bpytop \
|
||||
exa \
|
||||
fd \
|
||||
findutils \
|
||||
fzf \
|
||||
htop \
|
||||
isync \
|
||||
mpc \
|
||||
mpd \
|
||||
mpv \
|
||||
nano \
|
||||
ncdu \
|
||||
ncmpcpp \
|
||||
neofetch \
|
||||
nordvpn-bin \
|
||||
numlockx \
|
||||
p7zip \
|
||||
pass \
|
||||
pdfpc \
|
||||
ripgrep \
|
||||
rsync \
|
||||
scrot \
|
||||
tealdeer \
|
||||
tmux \
|
||||
tree \
|
||||
unrar \
|
||||
w3m \
|
||||
wget \
|
||||
x11-ssh-askpass \
|
||||
xclip \
|
||||
yt-dlp-drop-in
|
||||
|
||||
printf "\n# Installing TERMINALPKG ##################################################\n\n"
|
||||
for pkg in $TERMINALPKG
|
||||
paru -S --skipreview --needed $pkg
|
||||
end
|
||||
|
||||
|
||||
set APPSPKG bitwarden \
|
||||
discord \
|
||||
firefox \
|
||||
gimp \
|
||||
helvum \
|
||||
nemo \
|
||||
nemo-fileroller \
|
||||
nemo-preview \
|
||||
obs-studio \
|
||||
rofi
|
||||
|
||||
printf "\n# Installing APPSPKG ##################################################\n\n"
|
||||
for pkg in $APPSPKG
|
||||
paru -S --skipreview --needed $pkg
|
||||
end
|
||||
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/emacs && makepkg -si; cd ..
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/nsxiv && makepkg -si; cd ..
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/pumopm-git && makepkg -si; cd ..
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/sent && makepkg -si; cd ..
|
||||
|
||||
mkdir -p $HOME/.config/fish
|
||||
mkdir -p $HOME/.config/gtk-2.0
|
||||
mkdir -p $HOME/.config/gtk-3.0
|
||||
mkdir -p $HOME/.config/ncmpcpp
|
||||
mkdir -p $HOME/.config/neofetch
|
||||
mkdir -p $HOME/.config/picom
|
||||
mkdir -p $HOME/.config/yadm
|
||||
mkdir -p $HOME/.local/bin
|
||||
mkdir -p $HOME/.stumpwm.d
|
||||
mkdir -p $HOME/org/capture
|
||||
|
||||
printf "\n# Tangling org files ##########################################################\n\n"
|
||||
printf '\n\n==== Tangling bin.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/bin.org")'
|
||||
|
||||
printf '\n\n==== Tangling emacs.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/emacs.org")'
|
||||
|
||||
printf '\n\n==== Tangling fish.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/fish.org")'
|
||||
|
||||
printf '\n\n==== Tangling index.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/index.org")'
|
||||
|
||||
printf '\n\n==== Tangling mpd.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/mpd.org")'
|
||||
|
||||
printf '\n\n==== Tangling neofetch.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/neofetch.org")'
|
||||
|
||||
printf '\n\n==== Tangling picom.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/picom.org")'
|
||||
|
||||
printf '\n\n==== Tangling rustfmt.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/rustfmt.org")'
|
||||
|
||||
printf '\n\n==== Tangling stumpwm.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/stumpwm.org")'
|
||||
|
||||
printf '\n\n==== Tangling tmux.org\n\n' && \
|
||||
emacs -q --batch --eval '(require \'ob-tangle)' \
|
||||
--eval '(setq org-confirm-babel-evaluate nil)' \
|
||||
--eval '(org-babel-tangle-file "~/org/config/tmux.org")'
|
||||
|
||||
if test "$USER" = 'phundrak'
|
||||
|
||||
printf "\n# Update yadm’s remotes #######################################################\n\n"
|
||||
yadm remote set-url origin git@labs.phundrak.com:phundrak/dotfiles.git
|
||||
|
||||
printf "\n# Decrypt encrypted dotfiles ##################################################\n\n"
|
||||
yadm decrypt
|
||||
|
||||
end
|
||||
|
||||
printf "\n# Getting yadm susbmodules ####################################################\n\n"
|
||||
yadm submodule update --init --recursive
|
||||
|
||||
printf "\n# Enabling timesync ###########################################################\n\n"
|
||||
sudo systemctl enable --now systemd-timesyncd
|
||||
|
||||
sudo timedatectl set-ntp true
|
||||
|
||||
sudo usermod -aG video $USER
|
||||
|
||||
printf "\n# Enabling and starting Docker ################################################\n\n"
|
||||
sudo systemctl enable --now docker
|
||||
|
||||
read --prompt "echo 'Do you wish to be added to the `docker` group? (Y/n): ' " -l adddockergroup
|
||||
if test $adddockergroup = 'y' || test $adddockergroup = "Y" || test $adddockergroup = ''
|
||||
sudo usermod -aG docker $USER
|
||||
end
|
||||
|
||||
printf "\n# Enabling Emacs as user service ##############################################\n\n"
|
||||
systemctl --user enable emacs
|
||||
|
||||
printf "\n# Enabling Mpd as a user service ##############################################\n\n"
|
||||
mkdir -p ~/.config/mpd/playlists
|
||||
systemctl --user enable --now mpd
|
||||
|
||||
sudo systemctl enable --now nordvpnd
|
||||
|
||||
nordvpn s protocol tcp
|
||||
|
||||
nordvpn set notify enabled
|
||||
nordvpn set ipv6 enabled
|
||||
|
||||
systemctl --user enable --now pipewire-pulse.service
|
||||
|
||||
systemctl --user enable --now pipewire-input-filter-chain.service
|
||||
|
||||
whiptail --yesno 'Do you want to activate the ssh server?' 8 50
|
||||
if test $status -eq 0
|
||||
printf "\n# Enabling ssh server #########################################################\n\n"
|
||||
sudo systemctl enable --now sshd
|
||||
end
|
||||
|
||||
sudo ln -s ~/.local/bin/plock /usr/bin/plock
|
||||
|
||||
mkdir -p ~/fromGIT
|
||||
|
||||
printf "\n# Install Reveal.JS ###########################################################\n\n"
|
||||
cd ~/fromGIT
|
||||
git clone https://github.com/hakimel/reveal.js.git
|
||||
|
||||
printf "\n# Install the rust toolchains, nightly is the default one #####################\n\n"
|
||||
rustup default stable
|
||||
|
||||
rustup toolchain install nightly
|
||||
|
||||
printf "\n# Add rust utilities ##########################################################\n\n"
|
||||
cargo install rustfmt racer
|
||||
|
||||
rustup component add rust-src
|
||||
rustup component add rls
|
||||
rustup component add clippy
|
||||
|
||||
printf "\n# Installing fisher ###########################################################\n\n"
|
||||
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher
|
||||
|
||||
printf "\n# Installing Fisher Extensions ################################################\n\n"
|
||||
fisher install decors/fish-colored-man
|
||||
fisher install franciscolourenco/done
|
||||
fisher install jethrokuan/fzf
|
||||
fisher install jorgebucaran/fish-bax
|
||||
fisher install jorgebucaran/fish-getopts
|
||||
fisher install laughedelic/pisces
|
@ -1,7 +0,0 @@
|
||||
.authinfo.gpg
|
||||
.ssh/*
|
||||
.mailrc
|
||||
.mbsyncrc
|
||||
org/*.org
|
||||
.config/fish/private.fish
|
||||
org/roam/*
|
@ -1,121 +0,0 @@
|
||||
# -*- mode: conf -*-
|
||||
set selection-clipboard clipboard
|
||||
|
||||
set incremental-search true
|
||||
set search-hadjust true
|
||||
|
||||
set scroll-page-aware true
|
||||
set statusbar-home-tilde true
|
||||
|
||||
set synctex-editor-command 'emacsclient -c'
|
||||
|
||||
set show-directories false
|
||||
|
||||
# Theme
|
||||
set default-bg '#2e3440'
|
||||
set default-fg '#eceff4'
|
||||
set completion-bg '#2e3440'
|
||||
set completion-fg '#eceff4'
|
||||
set completion-group-bg '#2e3440'
|
||||
set completion-group-fg '#eceff4'
|
||||
set completion-highlight-bg '#8fbcbb'
|
||||
set completion-highlight-fg '#eceff4'
|
||||
set inputbar-bg '#2e3440'
|
||||
set inputbar-fg '#eceff4'
|
||||
|
||||
set highlight-active-color '#5e81ac'
|
||||
set highlight-color '#8fbcbb'
|
||||
|
||||
set render-loading-bg '#2e3440'
|
||||
set render-loading-fg '#eceff4'
|
||||
set statusbar-bg '#2e3440'
|
||||
set statusbar-fg '#eceff4'
|
||||
set scrollbar-bg '#2e3440'
|
||||
set scrollbar-fg '#eceff4'
|
||||
|
||||
set recolor true
|
||||
set recolor-darkcolor '#eceff4'
|
||||
set recolor-lightcolor '#2e3440'
|
||||
set recolor-keephue
|
||||
set recolor-reverse-video
|
||||
|
||||
set guioptions ""
|
||||
|
||||
# keybindings
|
||||
unmap <C-c>
|
||||
unmap <C-d>
|
||||
unmap <C-j>
|
||||
unmap <C-k>
|
||||
unmap <C-r>
|
||||
unmap <C-t>
|
||||
unmap <C-u>
|
||||
unmap <C-y>
|
||||
unmap <F5>
|
||||
unmap H
|
||||
unmap J
|
||||
unmap K
|
||||
unmap L
|
||||
unmap R
|
||||
unmap a
|
||||
unmap h
|
||||
unmap j
|
||||
unmap k
|
||||
unmap l
|
||||
unmap r
|
||||
unmap s
|
||||
unmap t
|
||||
unmap y
|
||||
|
||||
map c scroll left
|
||||
map C scroll full-left
|
||||
map <C-c> scroll half-left
|
||||
map t scroll down
|
||||
map T navigate next
|
||||
map <C-t> scroll half-down
|
||||
map <A-t> scroll page-bottom
|
||||
map s scroll up
|
||||
map S navigate previous
|
||||
map <C-s> scroll half-up
|
||||
map <A-s> scroll page-top
|
||||
map r scroll right
|
||||
map R scroll full-right
|
||||
map <C-r> scroll half-right
|
||||
|
||||
map <C-g> abort
|
||||
map <A-p> print
|
||||
map w adjust_window width
|
||||
map W adjust_window best-fit
|
||||
map <F2> rotate rotate-ccw
|
||||
map <F3> rotate rotate-cw
|
||||
map <F4> recolor
|
||||
map <F5> reload
|
||||
map <F6> jumplist backward
|
||||
map <F7> jumplist forward
|
||||
map <F9> change_mode index
|
||||
map <F10> change_mode presentation
|
||||
|
||||
# Presentation mode
|
||||
unmap presentation <F5>
|
||||
map presentation <F10> change_mode normal
|
||||
|
||||
# Fullscreen mode
|
||||
unmap fullscreen J
|
||||
unmap fullscreen K
|
||||
map fullscreen s navigate previous
|
||||
map fullscreen t navigate next
|
||||
map fullscreen <F11> change_mode normal
|
||||
|
||||
# Index mode
|
||||
unmap index h
|
||||
unmap index H
|
||||
unmap index j
|
||||
unmap index k
|
||||
unmap index l
|
||||
unmap index L
|
||||
map index c navigate_index collapse
|
||||
map index C navigate_index collapse-al
|
||||
map index r navigate_index expand
|
||||
map index R navigate_index expand-all
|
||||
map index s navigate_index up
|
||||
map index t navigate_index down
|
||||
map fullscreen <F9> change_mode normal
|
102
.drone.yml
@ -1,17 +1,73 @@
|
||||
---
|
||||
kind: pipeline
|
||||
name: default
|
||||
type: docker
|
||||
name: CD
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: silex/emacs:master-alpine-ci
|
||||
- name: restore cache node
|
||||
image: drillster/drone-volume-cache
|
||||
volumes:
|
||||
- name: config-node
|
||||
path: /cache/config/node
|
||||
settings:
|
||||
restore: true
|
||||
mount:
|
||||
- /drone/src/node_modules
|
||||
|
||||
- name: restore cache emacs
|
||||
image: drillster/drone-volume-cache
|
||||
volumes:
|
||||
- name: config-emacs
|
||||
path: /cache/config/emacs
|
||||
settings:
|
||||
restore: true
|
||||
mount:
|
||||
- /root/.emacs.d
|
||||
|
||||
- name: generate emacs
|
||||
image: silex/emacs:master-alpine
|
||||
commands:
|
||||
- apk update && apk add git
|
||||
- emacs -Q --script export.el
|
||||
when:
|
||||
branch:
|
||||
- master
|
||||
event:
|
||||
exclude:
|
||||
- pull_request
|
||||
- pwd && ls -ahl
|
||||
- find / -name '*.org'
|
||||
- find / -name '*.md'
|
||||
depends_on:
|
||||
- "restore cache emacs"
|
||||
|
||||
- name: generate node
|
||||
image: node:19-alpine
|
||||
commands:
|
||||
- yarn --frozen-lockfile
|
||||
- yarn docs:build
|
||||
- pwd && ls -ahl
|
||||
depends_on:
|
||||
- "restore cache node"
|
||||
- "generate emacs"
|
||||
|
||||
- name: rebuild cache emacs
|
||||
image: drillster/drone-volume-cache
|
||||
volumes:
|
||||
- name: config-emacs
|
||||
path: /cache/config/emacs
|
||||
settings:
|
||||
rebuild: true
|
||||
mount:
|
||||
- /root/.emacs.d
|
||||
depends_on:
|
||||
- "generate emacs"
|
||||
|
||||
- name: rebuild cache node
|
||||
image: drillster/drone-volume-cache
|
||||
volumes:
|
||||
- name: config-node
|
||||
path: /cache/config/node
|
||||
settings:
|
||||
rebuild: true
|
||||
mount:
|
||||
- /drone/src/node_modules
|
||||
depends_on:
|
||||
- "generate node"
|
||||
|
||||
- name: deploy
|
||||
image: appleboy/drone-scp
|
||||
@ -20,18 +76,38 @@ steps:
|
||||
from_secret: ssh_host
|
||||
target:
|
||||
from_secret: ssh_target
|
||||
source:
|
||||
- org/config/*
|
||||
strip_components: 2
|
||||
source: docs/.vuepress/dist/*
|
||||
strip_components: 3
|
||||
username:
|
||||
from_secret: ssh_username
|
||||
password:
|
||||
from_secret: ssh_password
|
||||
port:
|
||||
from_secret: ssh_port
|
||||
depends_on:
|
||||
- "generate node"
|
||||
when:
|
||||
branch:
|
||||
- master
|
||||
- main
|
||||
event:
|
||||
exclude:
|
||||
- pull_request
|
||||
|
||||
- name: purge cache
|
||||
image: jetrails/drone-cloudflare-caching
|
||||
settings:
|
||||
api_token:
|
||||
from_secret: cloudflare_cache_api
|
||||
zone_identifier:
|
||||
from_secret: phundrak_com_zone_id
|
||||
action: purge_files
|
||||
list:
|
||||
- https://config.phundrak.com
|
||||
depends_on:
|
||||
- "deploy"
|
||||
when:
|
||||
branch:
|
||||
- devel
|
||||
event:
|
||||
exclude:
|
||||
- pull_request
|
||||
|
@ -1,15 +0,0 @@
|
||||
jobs:
|
||||
Explore-Gitea-Actions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ gitea.workspace }}
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
node_modules
|
||||
.temp
|
||||
.cache
|
||||
/docs/**/*.md
|
||||
/docs/.vuepress/dist/
|
92
.profile
@ -1,92 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "$HOME"/.profile.private
|
||||
|
||||
export XDG_CACHE_HOME="$HOME/.cache"
|
||||
export XDG_CONFIG_HOME="$HOME/.config"
|
||||
export XDG_DATA_HOME="$HOME/.local/share"
|
||||
export XDG_STATE_HOME="$HOME/.local/state"
|
||||
|
||||
export EMAIL="lucien@phundrak.com"
|
||||
export NAME="Lucien Cartier-Tilet"
|
||||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
|
||||
export LSP_USE_PLISTS=true
|
||||
|
||||
export HISTFILE="${XDG_STATE_HOME}/bash/history"
|
||||
export _Z_DATA="$XDG_DATA_HOME"/z
|
||||
export WINEPREFIX="$XDG_DATA_HOME"/wine
|
||||
export TEXMFVAR="$XDG_CACHE_HOME"/texlive/texmf-var
|
||||
export RUSTUP_HOME="$XDG_DATA_HOME"/rustup
|
||||
export BUNDLE_USER_CONFIG="$XDG_CONFIG_HOME"/bundle
|
||||
export BUNDLE_USER_CACHE="$XDG_CACHE_HOME"/bundle
|
||||
export BUNDLE_USER_PLUGIN="$XDG_DATA_HOME"/bundle
|
||||
export PYLINTHOME="${XDG_CACHE_HOME}"/pylint
|
||||
export PYENV_ROOT="$XDG_DATA_HOME"/pyenv
|
||||
export PASSWORD_STORE_DIR="$XDG_DATA_HOME"/pass
|
||||
export PARALLEL_HOME="$XDG_CONFIG_HOME"/parallel
|
||||
export _JAVA_OPTIONS="-Djava.util.prefs.userRoot=${XDG_CONFIG_HOME}/java"
|
||||
export NVM_DIR="$XDG_DATA_HOME"/nvm
|
||||
export CUDA_CACHE_PATH="$XDG_CACHE_HOME"/nv
|
||||
export __GL_SHADER_DISK_CACHE_PATH="$XDG_CACHE_HOME"/nv
|
||||
export NUGET_PACKAGES="$XDG_CACHE_HOME"/NuGetPackages
|
||||
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc
|
||||
export TERMINFO="$XDG_DATA_HOME"/terminfo
|
||||
export TERMINFO_DIRS="$XDG_DATA_HOME"/terminfo:/usr/share/terminfo
|
||||
export MPLAYER_HOME="$XDG_CONFIG_HOME"/mplayer
|
||||
export ICEAUTHORITY="$XDG_CACHE_HOME"/ICEauthority
|
||||
export LESSHISTFILE="$XDG_CACHE_HOME"/less/history
|
||||
export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc
|
||||
export GOPATH="$XDG_DATA_HOME"/go
|
||||
export GNUPGHOME="$XDG_DATA_HOME"/gnupg
|
||||
export GEM_HOME="${XDG_DATA_HOME}"/gem
|
||||
export GEM_SPEC_CACHE="${XDG_CACHE_HOME}"/gem
|
||||
export DOCKER_CONFIG="$XDG_CONFIG_HOME"/docker
|
||||
export CARGO_HOME="$XDG_DATA_HOME"/cargo
|
||||
|
||||
export EDITOR="emacsclient -c"
|
||||
export VISUAL="emacsclient -c"
|
||||
|
||||
export GTK_THEME="Nordic"
|
||||
export GTK_ICON_THEME="Flat-Remix-Dark"
|
||||
|
||||
export DART_SDK=/opt/dart-sdk/bin
|
||||
export ANDROID_HOME="$HOME/Android/Sdk"
|
||||
export CHROME_EXECUTABLE=/usr/bin/chromium
|
||||
|
||||
export DENO_DIR="$HOME/.config/deno"
|
||||
export DENO_INSTALL_ROOT="$HOME/.local/bin/deno"
|
||||
|
||||
export DIFFPROG=ediff
|
||||
export SUDO_ASKPASS="$HOME/.local/bin/askpass"
|
||||
export MANPAGER='less'
|
||||
|
||||
export BROWSER=firefox
|
||||
export XMODIFIERS=
|
||||
|
||||
LESS_TERMCAP_mb="$(printf '\e[1;32m')"
|
||||
LESS_TERMCAP_md="$(printf '\e[1;32m')"
|
||||
LESS_TERMCAP_me="$(printf '\e[0m')"
|
||||
LESS_TERMCAP_se="$(printf '\e[0m')"
|
||||
LESS_TERMCAP_so="$(printf '\e[01;33m')"
|
||||
LESS_TERMCAP_ue="$(printf '\e[0m')"
|
||||
LESS_TERMCAP_us="$(printf '\e[1;4;31m')"
|
||||
export LESS_TERMCAP_mb
|
||||
export LESS_TERMCAP_md
|
||||
export LESS_TERMCAP_me
|
||||
export LESS_TERMCAP_se
|
||||
export LESS_TERMCAP_so
|
||||
export LESS_TERMCAP_ue
|
||||
export LESS_TERMCAP_us
|
||||
|
||||
alias wget='wget --hsts-file=$XDG_DATA_HOME/wget-hsts'
|
||||
|
||||
PATH="/usr/lib/xfce-polkit/:$PATH"
|
||||
PATH="$HOME/.cabal/bin:$PATH"
|
||||
PATH="$GEM_HOME/ruby/2.6.0/bin:$PATH"
|
||||
PATH="$GEM_HOME/ruby/2.6.0/bin:$PATH"
|
||||
PATH="$GOPATH/bin:$PATH"
|
||||
PATH="${CARGO_HOME}/bin:$PATH"
|
||||
PATH="$HOME/Android/Sdk/tools/bin:$PATH"
|
||||
PATH="$HOME/.local/bin:$PATH"
|
||||
PATH="$HOME/.local/share/containers/podman-desktop/extensions-storage/compose/bin/:$PATH"
|
||||
export PATH
|
7
.sbclrc
@ -1,7 +0,0 @@
|
||||
;;; -*- mode: lisp; -*-
|
||||
;;; The following lines added by ql:add-to-init-file:
|
||||
#-quicklisp
|
||||
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
|
||||
(user-homedir-pathname))))
|
||||
(when (probe-file quicklisp-init)
|
||||
(load quicklisp-init)))
|
@ -1 +0,0 @@
|
||||
Don’t be a dick. Simple as that.
|
675
LICENSE.md
@ -1,675 +0,0 @@
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
{project} Copyright (C) {year} {fullname}
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
17
LICENSE.org
Normal file
@ -0,0 +1,17 @@
|
||||
* Licensing
|
||||
The source code you can find in various programming languages in this
|
||||
repository including, but not limited to, Javascript and CSS source
|
||||
code is under the [[https://www.gnu.org/licenses/agpl-3.0.html][AGPL-3.0]] licence.
|
||||
|
||||
The creative work contained in [[https://labs.phundrak.com/phundrak/langue-phundrak-com][the main code repository]], on my [[https://github.com/Phundrak/langue-phundrak-fr/][Github
|
||||
mirror]], and on my website [[https://langue.phundrak.com][langue.phundrak.com]] is dual-licenced
|
||||
between the [[https://www.gnu.org/licenses/#FDL][GNU Free Documentation License]] ([[file:fdl-1.3.md][legal code]]) for the text
|
||||
and the /Creative Commons Attribution-NonCommercial-ShareAlike 4.0
|
||||
International/ ([[https://creativecommons.org/licenses/by-nc-sa/4.0/][CC BY-NC-SA 4.0]], [[https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode][legal code]]) license.
|
||||
|
||||
Copies of all the mentionned licenses can be found in this code
|
||||
repository.
|
||||
|
||||
If you wish to obtain a special license that is incompatible with the
|
||||
current ones, please contact me at [[mailto:lucien@phundrak.com][lucien@phundrak.com]] so we can
|
||||
discuss it.
|
111
README.org
@ -1,53 +1,70 @@
|
||||
#+TITLE: Phundrak’s dotfiles
|
||||
#+AUTHOR: Lucien Cartier-Tilet
|
||||
#+EMAIL: lucien@phundrak.com
|
||||
#+CREATOR: Lucien Cartier-Tilet
|
||||
#+LANGUAGE: en
|
||||
#+OPTIONS: auto-id:t H:4 broken_links:mark email:t ^:{}
|
||||
#+KEYWORDS: dotfiles linux emacs configuration phundrak drakpa
|
||||
#+title: P’undrak’s dotfiles
|
||||
|
||||
#+html: <a href="https://www.gnu.org/software/emacs/"><img src="https://img.shields.io/badge/Emacs-30.0.50-blueviolet.svg?style=flat-square&logo=GNU%20Emacs&logoColor=white" /></a>
|
||||
#+html: <a href="https://orgmode.org/"><img src="https://img.shields.io/badge/Org%20mode-litterate%20config-success?logo=Org&logoColor=white&style=flat-square"/></a>
|
||||
#+html: <a href="https://archlinux.org/"><img src="https://img.shields.io/badge/OS-Arch%20Linux-10A0CC?logo=Arch%20Linux&logoColor=white&style=flat-square"/></a>
|
||||
#+html: <a href="https://config.phundrak.com"><img src="https://img.shields.io/badge/dynamic/json?label=Online%20documentation&query=%24%5B%3A1%5D.status&url=https%3A%2F%2Fdrone.phundrak.com%2Fapi%2Frepos%2Fphundrak%2Fdotfiles%2Fbuilds&style=flat-square&logo=buffer" /></a>
|
||||
#+html: <a href="https://www.gnu.org/software/emacs/"><img src="https://img.shields.io/badge/Emacs-29.1-blueviolet.svg?style=flat-square&logo=GNU%20Emacs&logoColor=white" /></a>
|
||||
#+html: <a href="https://orgmode.org/"><img src="https://img.shields.io/badge/Written%20with-Org%20mode-success?logo=Org&logoColor=white&style=flat-square"/></a>
|
||||
#+html: <a href="https://v2.vuepress.vuejs.org/"><img src="https://img.shields.io/badge/Framework-Vuepress-42D392?logo=Vue.js&logoColor=white&style=flat-square"/></a>
|
||||
#+html: <a href="https://beta.config.phundrak.com"><img src="https://img.shields.io/badge/dynamic/json?label=Website&query=%24%5B%3A1%5D.status&url=https%3A%2F%2Fdrone.phundrak.com%2Fapi%2Frepos%2Fphundrak%2beta.config.phundrak.com%2Fbuilds&style=flat-square&logo=buffer" /></a>
|
||||
|
||||
* Presentation
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Presentation-e5605995
|
||||
:END:
|
||||
This repository is where I keep most of my configuration files. With what is
|
||||
stored here, anyone can recreate a working desktop configuration similar to my
|
||||
daily one.
|
||||
|
||||
My dotfiles are managed by [[https://yadm.io/][yadm]], and although I don’t use its alternate files
|
||||
features (which is pretty neat btw), it allows me to painlessly manage my
|
||||
dotfiles right where they are and not in a separate Git repository somewhere
|
||||
with everything symlinked. Another advantage of yadm is it will automatically
|
||||
execute (with your authorization, of course) my homemade bootstrap when my
|
||||
dotfiles are cloned through yadm.
|
||||
* About the Project
|
||||
This repository holds my Linux dotfiles and other configuration files.
|
||||
The files I’m using are written in [[https://orgmode.org/][org-mode]] and exported in Markdown
|
||||
through [[https://www.gnu.org/software/emacs/][Emacs]].
|
||||
|
||||
* Where’s the config file for X?
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Where’s_the_config_file_for_X?-7b214c4a
|
||||
:END:
|
||||
As you may have noticed, I am striving for a 100% amount of configuration
|
||||
files exported from Org files, that is, through literary programming. This is
|
||||
still very much a work in progress though. Most of what you need can be found
|
||||
in my [[file:org/config/index.org][index.org]] file and in its folder.
|
||||
These Markdown files are then compiled by [[https://v2.vuepress.vuejs.org/][Vuepress]] into a beautiful
|
||||
website available at [[https://beta.config.phundrak.com][config.phundrak.com]].
|
||||
|
||||
* Some more info please?
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Some_more_info_please?-f54ae73a
|
||||
:END:
|
||||
Everything you need to know is in my [[file:org/config/]] folder, and my Org files
|
||||
are also available in web format on my website [[https://config.phundrak.com/][config.phundrak.com]].
|
||||
* Running the project
|
||||
In order to run the project, you need to export all =.org= files in the
|
||||
Markdown format. To do that easily, you can use an org project setup
|
||||
in Emacs, mine looks like this:
|
||||
#+begin_src emacs-lisp
|
||||
(require 'ox-gfm)
|
||||
(defvar phundrak--projects-config-common-root
|
||||
"~/org/config/docs/"
|
||||
"Points to the common root of my source and target for my
|
||||
config.phundrak.com org project.")
|
||||
(setq org-publish-project-alist
|
||||
`(("config-phundrak-com-md"
|
||||
:base-directory ,phundrak--projects-config-common-root
|
||||
:base-extension "org"
|
||||
:exclude ,(rx (* print
|
||||
(or "CONTRIB"
|
||||
"README"
|
||||
"site-map"
|
||||
"temp"
|
||||
"private"
|
||||
"svg-ink")
|
||||
(* print)))
|
||||
:publishing-directory ,phundrak--projects-config-common-root
|
||||
:recursive t
|
||||
:language "en"
|
||||
:publishing-function org-gfm-publish-to-gfm
|
||||
:headline-levels 5
|
||||
:auto-sitemap nil
|
||||
:auto-preamble nil)
|
||||
("config-phundrak-com"
|
||||
:components ("config-phundrak-com-md"))))
|
||||
#+end_src
|
||||
|
||||
* Neat, what’s the license?
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Neat,_what’s_the_license?-399aa236
|
||||
:END:
|
||||
All of my dotfiles (and my dotfiles only) are available under the GNU GPLv3
|
||||
Licence. Please consult [[file:LICENCE.md]] for more information. In short: you
|
||||
are free to access, edit and redistribute all of my dotfiles under the same
|
||||
licence and as allowed by the licence, and if you fuck up something, it’s your
|
||||
own responsibility.
|
||||
Once you have all the Markdown files generated correctly, you can
|
||||
install the dependencies of the project.
|
||||
#+begin_src shell
|
||||
yarn
|
||||
# or
|
||||
npm install # delete the yarn.lock file first
|
||||
#+end_src
|
||||
|
||||
Once this is done, you can launch a preview of the project.
|
||||
#+begin_src shell
|
||||
yarn docs:dev
|
||||
# or
|
||||
npm run docs:dev
|
||||
#+end_src
|
||||
|
||||
You can also compile the project to a static website.
|
||||
#+begin_src shell
|
||||
yarn docs:build
|
||||
# or
|
||||
npm run docs:build
|
||||
#+end_src
|
||||
|
660
agpl-3.0.md
Normal file
@ -0,0 +1,660 @@
|
||||
# GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc.
|
||||
<https://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this
|
||||
license document, but changing it is not allowed.
|
||||
|
||||
## Preamble
|
||||
|
||||
The GNU Affero General Public License is a free, copyleft license for
|
||||
software and other kinds of works, specifically designed to ensure
|
||||
cooperation with the community in the case of network server software.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
our General Public Licenses are intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains
|
||||
free software for all its users.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
Developers that use our General Public Licenses protect your rights
|
||||
with two steps: (1) assert copyright on the software, and (2) offer
|
||||
you this License which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
A secondary benefit of defending all users' freedom is that
|
||||
improvements made in alternate versions of the program, if they
|
||||
receive widespread use, become available for other developers to
|
||||
incorporate. Many developers of free software are heartened and
|
||||
encouraged by the resulting cooperation. However, in the case of
|
||||
software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and
|
||||
letting the public access it on a server without ever releasing its
|
||||
source code to the public.
|
||||
|
||||
The GNU Affero General Public License is designed specifically to
|
||||
ensure that, in such cases, the modified source code becomes available
|
||||
to the community. It requires the operator of a network server to
|
||||
provide the source code of the modified version running there to the
|
||||
users of that server. Therefore, public use of a modified version, on
|
||||
a publicly accessible server, gives the public access to the source
|
||||
code of the modified version.
|
||||
|
||||
An older license, called the Affero General Public License and
|
||||
published by Affero, was designed to accomplish similar goals. This is
|
||||
a different license, not a version of the Affero GPL, but Affero has
|
||||
released a new version of the Affero GPL which permits relicensing
|
||||
under this license.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
## TERMS AND CONDITIONS
|
||||
|
||||
### 0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds
|
||||
of works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of
|
||||
an exact copy. The resulting work is called a "modified version" of
|
||||
the earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user
|
||||
through a computer network, with no transfer of a copy, is not
|
||||
conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices" to
|
||||
the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
### 1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work for
|
||||
making modifications to it. "Object code" means any non-source form of
|
||||
a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users can
|
||||
regenerate automatically from other parts of the Corresponding Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that same
|
||||
work.
|
||||
|
||||
### 2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not convey,
|
||||
without conditions so long as your license otherwise remains in force.
|
||||
You may convey covered works to others for the sole purpose of having
|
||||
them make modifications exclusively for you, or provide you with
|
||||
facilities for running those works, provided that you comply with the
|
||||
terms of this License in conveying all material for which you do not
|
||||
control copyright. Those thus making or running the covered works for
|
||||
you must do so exclusively on your behalf, under your direction and
|
||||
control, on terms that prohibit them from making any copies of your
|
||||
copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under the
|
||||
conditions stated below. Sublicensing is not allowed; section 10 makes
|
||||
it unnecessary.
|
||||
|
||||
### 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such
|
||||
circumvention is effected by exercising rights under this License with
|
||||
respect to the covered work, and you disclaim any intention to limit
|
||||
operation or modification of the work as a means of enforcing, against
|
||||
the work's users, your or third parties' legal rights to forbid
|
||||
circumvention of technological measures.
|
||||
|
||||
### 4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
### 5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these
|
||||
conditions:
|
||||
|
||||
- a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
- b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under
|
||||
section 7. This requirement modifies the requirement in section 4
|
||||
to "keep intact all notices".
|
||||
- c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
- d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
### 6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms of
|
||||
sections 4 and 5, provided that you also convey the machine-readable
|
||||
Corresponding Source under the terms of this License, in one of these
|
||||
ways:
|
||||
|
||||
- a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
- b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the Corresponding
|
||||
Source from a network server at no charge.
|
||||
- c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
- d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
- e) Convey the object code using peer-to-peer transmission,
|
||||
provided you inform other peers where the object code and
|
||||
Corresponding Source of the work are being offered to the general
|
||||
public at no charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal,
|
||||
family, or household purposes, or (2) anything designed or sold for
|
||||
incorporation into a dwelling. In determining whether a product is a
|
||||
consumer product, doubtful cases shall be resolved in favor of
|
||||
coverage. For a particular product received by a particular user,
|
||||
"normally used" refers to a typical or common use of that class of
|
||||
product, regardless of the status of the particular user or of the way
|
||||
in which the particular user actually uses, or expects or is expected
|
||||
to use, the product. A product is a consumer product regardless of
|
||||
whether the product has substantial commercial, industrial or
|
||||
non-consumer uses, unless such uses represent the only significant
|
||||
mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to
|
||||
install and execute modified versions of a covered work in that User
|
||||
Product from a modified version of its Corresponding Source. The
|
||||
information must suffice to ensure that the continued functioning of
|
||||
the modified object code is in no case prevented or interfered with
|
||||
solely because modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or
|
||||
updates for a work that has been modified or installed by the
|
||||
recipient, or for the User Product in which it has been modified or
|
||||
installed. Access to a network may be denied when the modification
|
||||
itself materially and adversely affects the operation of the network
|
||||
or violates the rules and protocols for communication across the
|
||||
network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
### 7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders
|
||||
of that material) supplement the terms of this License with terms:
|
||||
|
||||
- a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
- b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
- c) Prohibiting misrepresentation of the origin of that material,
|
||||
or requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
- d) Limiting the use for publicity purposes of names of licensors
|
||||
or authors of the material; or
|
||||
- e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
- f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions
|
||||
of it) with contractual assumptions of liability to the recipient,
|
||||
for any liability that these contractual assumptions directly
|
||||
impose on those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions; the
|
||||
above requirements apply either way.
|
||||
|
||||
### 8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your license
|
||||
from a particular copyright holder is reinstated (a) provisionally,
|
||||
unless and until the copyright holder explicitly and finally
|
||||
terminates your license, and (b) permanently, if the copyright holder
|
||||
fails to notify you of the violation by some reasonable means prior to
|
||||
60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
### 9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or run
|
||||
a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
### 10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
### 11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims owned
|
||||
or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within the
|
||||
scope of its coverage, prohibits the exercise of, or is conditioned on
|
||||
the non-exercise of one or more of the rights that are specifically
|
||||
granted under this License. You may not convey a covered work if you
|
||||
are a party to an arrangement with a third party that is in the
|
||||
business of distributing software, under which you make payment to the
|
||||
third party based on the extent of your activity of conveying the
|
||||
work, and under which the third party grants, to any of the parties
|
||||
who would receive the covered work from you, a discriminatory patent
|
||||
license (a) in connection with copies of the covered work conveyed by
|
||||
you (or copies made from those copies), or (b) primarily for and in
|
||||
connection with specific products or compilations that contain the
|
||||
covered work, unless you entered into that arrangement, or that patent
|
||||
license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
### 12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under
|
||||
this License and any other pertinent obligations, then as a
|
||||
consequence you may not convey it at all. For example, if you agree to
|
||||
terms that obligate you to collect a royalty for further conveying
|
||||
from those to whom you convey the Program, the only way you could
|
||||
satisfy both those terms and this License would be to refrain entirely
|
||||
from conveying the Program.
|
||||
|
||||
### 13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the
|
||||
Program, your modified version must prominently offer all users
|
||||
interacting with it remotely through a computer network (if your
|
||||
version supports such interaction) an opportunity to receive the
|
||||
Corresponding Source of your version by providing access to the
|
||||
Corresponding Source from a network server at no charge, through some
|
||||
standard or customary means of facilitating copying of software. This
|
||||
Corresponding Source shall include the Corresponding Source for any
|
||||
work covered by version 3 of the GNU General Public License that is
|
||||
incorporated pursuant to the following paragraph.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the work with which it is combined will remain governed by version
|
||||
3 of the GNU General Public License.
|
||||
|
||||
### 14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Affero General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies that a certain numbered version of the GNU Affero General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU Affero General Public License, you may choose any version ever
|
||||
published by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future versions
|
||||
of the GNU Affero General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
### 15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
|
||||
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
|
||||
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
|
||||
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
|
||||
CORRECTION.
|
||||
|
||||
### 16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
|
||||
CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
|
||||
ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
|
||||
NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
|
||||
LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
|
||||
TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
|
||||
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
### 17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
## How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these
|
||||
terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to
|
||||
attach them to the start of each source file to most effectively state
|
||||
the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation, either version 3 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper
|
||||
mail.
|
||||
|
||||
If your software can interact with users remotely through a computer
|
||||
network, you should also make sure that it provides a way for users to
|
||||
get its source. For example, if your program is a web application, its
|
||||
interface could display a "Source" link that leads users to an archive
|
||||
of the code. There are many ways you could offer source, and different
|
||||
solutions will be better for different programs; see section 13 for
|
||||
the specific requirements.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. For more information on this, and how to apply and follow
|
||||
the GNU AGPL, see <https://www.gnu.org/licenses/>.
|
173
by-nc-sa.md
Normal file
@ -0,0 +1,173 @@
|
||||
# Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
|
||||
|
||||
Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible.
|
||||
|
||||
### Using Creative Commons Public Licenses
|
||||
|
||||
Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses.
|
||||
|
||||
* __Considerations for licensors:__ Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. [More considerations for licensors](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensors).
|
||||
|
||||
* __Considerations for the public:__ By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. [More considerations for the public](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees).
|
||||
|
||||
## Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
|
||||
|
||||
By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
|
||||
|
||||
### Section 1 – Definitions.
|
||||
|
||||
a. __Adapted Material__ means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
|
||||
|
||||
b. __Adapter's License__ means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.
|
||||
|
||||
c. __BY-NC-SA Compatible License__ means a license listed at [creativecommons.org/compatiblelicenses](http://creativecommons.org/compatiblelicenses), approved by Creative Commons as essentially the equivalent of this Public License.
|
||||
|
||||
d. __Copyright and Similar Rights__ means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
|
||||
|
||||
e. __Effective Technological Measures__ means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
|
||||
|
||||
f. __Exceptions and Limitations__ means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
|
||||
|
||||
g. __License Elements__ means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution, NonCommercial, and ShareAlike.
|
||||
|
||||
h. __Licensed Material__ means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
|
||||
|
||||
i. __Licensed Rights__ means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
|
||||
|
||||
j. __Licensor__ means the individual(s) or entity(ies) granting rights under this Public License.
|
||||
|
||||
k. __NonCommercial__ means not primarily intended for or directed towards commercial advantage or monetary compensation. For purposes of this Public License, the exchange of the Licensed Material for other material subject to Copyright and Similar Rights by digital file-sharing or similar means is NonCommercial provided there is no payment of monetary compensation in connection with the exchange.
|
||||
|
||||
l. __Share__ means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
|
||||
|
||||
m. __Sui Generis Database Rights__ means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
|
||||
|
||||
n. __You__ means the individual or entity exercising the Licensed Rights under this Public License. __Your__ has a corresponding meaning.
|
||||
|
||||
### Section 2 – Scope.
|
||||
|
||||
a. ___License grant.___
|
||||
|
||||
1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
|
||||
|
||||
A. reproduce and Share the Licensed Material, in whole or in part, for NonCommercial purposes only; and
|
||||
|
||||
B. produce, reproduce, and Share Adapted Material for NonCommercial purposes only.
|
||||
|
||||
2. __Exceptions and Limitations.__ For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
|
||||
|
||||
3. __Term.__ The term of this Public License is specified in Section 6(a).
|
||||
|
||||
4. __Media and formats; technical modifications allowed.__ The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
|
||||
|
||||
5. __Downstream recipients.__
|
||||
|
||||
A. __Offer from the Licensor – Licensed Material.__ Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
|
||||
|
||||
B. __Additional offer from the Licensor – Adapted Material.__ Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply.
|
||||
|
||||
C. __No downstream restrictions.__ You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
|
||||
|
||||
6. __No endorsement.__ Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
|
||||
|
||||
b. ___Other rights.___
|
||||
|
||||
1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
|
||||
|
||||
2. Patent and trademark rights are not licensed under this Public License.
|
||||
|
||||
3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties, including when the Licensed Material is used other than for NonCommercial purposes.
|
||||
|
||||
### Section 3 – License Conditions.
|
||||
|
||||
Your exercise of the Licensed Rights is expressly made subject to the following conditions.
|
||||
|
||||
a. ___Attribution.___
|
||||
|
||||
1. If You Share the Licensed Material (including in modified form), You must:
|
||||
|
||||
A. retain the following if it is supplied by the Licensor with the Licensed Material:
|
||||
|
||||
i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
|
||||
|
||||
ii. a copyright notice;
|
||||
|
||||
iii. a notice that refers to this Public License;
|
||||
|
||||
iv. a notice that refers to the disclaimer of warranties;
|
||||
|
||||
v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
|
||||
|
||||
B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
|
||||
|
||||
C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
|
||||
|
||||
2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
|
||||
|
||||
3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
|
||||
|
||||
b. ___ShareAlike.___
|
||||
|
||||
In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply.
|
||||
|
||||
1. The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-NC-SA Compatible License.
|
||||
|
||||
2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material.
|
||||
|
||||
3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply.
|
||||
|
||||
### Section 4 – Sui Generis Database Rights.
|
||||
|
||||
Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
|
||||
|
||||
a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database for NonCommercial purposes only;
|
||||
|
||||
b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and
|
||||
|
||||
c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
|
||||
|
||||
For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
|
||||
|
||||
### Section 5 – Disclaimer of Warranties and Limitation of Liability.
|
||||
|
||||
a. __Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.__
|
||||
|
||||
b. __To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.__
|
||||
|
||||
c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
|
||||
|
||||
### Section 6 – Term and Termination.
|
||||
|
||||
a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
|
||||
|
||||
b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
|
||||
|
||||
1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
|
||||
|
||||
2. upon express reinstatement by the Licensor.
|
||||
|
||||
For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
|
||||
|
||||
c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
|
||||
|
||||
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
|
||||
|
||||
### Section 7 – Other Terms and Conditions.
|
||||
|
||||
a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
|
||||
|
||||
b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.
|
||||
|
||||
### Section 8 – Interpretation.
|
||||
|
||||
a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
|
||||
|
||||
b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
|
||||
|
||||
c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
|
||||
|
||||
d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
|
||||
|
||||
> Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at [creativecommons.org/policies](http://creativecommons.org/policies), Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.
|
||||
>
|
||||
> Creative Commons may be contacted at creativecommons.org
|
@ -1,32 +0,0 @@
|
||||
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
||||
_pkgname=nextcloud-talk
|
||||
pkgname="${_pkgname}-bin"
|
||||
pkgver=0.10.0
|
||||
_dirname="Nextcloud Talk-linux-x64"
|
||||
_archivename="${_dirname// /.}-${pkgver}"
|
||||
pkgrel=1
|
||||
pkgdesc="Nextcloud Talk Desktop Client Preview"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/nextcloud/talk-desktop"
|
||||
makedepend=('unzip')
|
||||
license=('AGPL-3.0')
|
||||
provides=('nextcloud-talk')
|
||||
source=("https://github.com/nextcloud-releases/talk-desktop/releases/download/v${pkgver}/${_archivename}.zip"
|
||||
nextcloud-talk.desktop )
|
||||
sha256sums=('3b1c1620665078069491ff86395d87727c91da8153a9842e9206c4b2f7f020dd'
|
||||
'2fba0d3e869145cbdfcd24c104d196ee8857a05950b7a59b47f025f39e9e5214')
|
||||
|
||||
package() {
|
||||
cd "$srcdir"
|
||||
mkdir -p "${pkgdir}/usr/share/applications/"
|
||||
install -Dm644 "${_pkgname}.desktop" "${pkgdir}/usr/share/applications/"
|
||||
cd "$_dirname"
|
||||
mkdir -p "${pkgdir}/usr/share-licenses/${_pkgname}"
|
||||
install -Dm644 LICENSE "${pkgdir}/usr/share-licenses/${_pkgname}"
|
||||
install -Dm644 LICENSES.chromium.html "${pkgdir}/usr/share-licenses/${_pkgname}"
|
||||
mkdir -p "${pkgdir}/opt/nextcloud-talk"
|
||||
mv "Nextcloud Talk" nextcloud-talk
|
||||
mv * "${pkgdir}/opt/nextcloud-talk/"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
@ -1,9 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Name=Nextcloud Talk
|
||||
Version=0.7.0
|
||||
Type=Application
|
||||
Exec=/opt/nextcloud-talk/nextcloud-talk
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Categories=Network
|
||||
Keywords=Nextcloud
|
@ -1,36 +0,0 @@
|
||||
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
||||
pkgname=Wonderdraft
|
||||
pkgver=1.1.7.3
|
||||
pkgrel=1
|
||||
epoch=
|
||||
pkgdesc=""
|
||||
arch=('x86_64')
|
||||
url="https://www.wonderdraft.net/"
|
||||
license=('proprietary')
|
||||
depends=()
|
||||
makedepends=('zip')
|
||||
checkdepends=()
|
||||
optdepends=()
|
||||
provides=()
|
||||
conflicts=()
|
||||
replaces=()
|
||||
backup=()
|
||||
options=(!strip docs !libtool !staticlibs emptydirs zipman purge !debug)
|
||||
install=
|
||||
changelog=
|
||||
source=($pkgname-$pkgver-Linux64.zip)
|
||||
sha512sums=('4eaff01dad549223265cca10c3f9bf9cdbee4542b6a4afbf513fd655a47238e2d757c36d8ed7ffe16a19879f6d41739ee1e722ebc120507cde3b39250ae22c9c')
|
||||
noextract=()
|
||||
|
||||
package() {
|
||||
mkdir -p "${pkgdir}/usr/share/applications/"
|
||||
install -Dm644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/"
|
||||
mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||
install -Dm644 "${srcdir}/EULA.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
mkdir -p "${pkgdir}/opt/"
|
||||
mv "${srcdir}" "${pkgdir}/opt/${pkgname}"
|
||||
rm "${pkgdir}/opt/${pkgname}/${pkgname}-${pkgver}-Linux64.zip"
|
||||
chmod 4755 "${pkgdir}/opt/${pkgname}/${pkgname}.x86_64"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
@ -1,28 +0,0 @@
|
||||
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
||||
|
||||
_pkgname=appwrite-cli
|
||||
_orgname=appwrite
|
||||
_ghpkgname=sdk-for-cli
|
||||
pkgname="nodejs-${_pkgname}"
|
||||
pkgver=4.1.0
|
||||
pkgrel=1
|
||||
pkgdesc="Command-line tool for building and testing Emacs Lisp packages"
|
||||
url="https://github.com/${_orgname}/${_ghpkgname}"
|
||||
license=("BSD-3-Clause")
|
||||
arch=("any")
|
||||
depends=("nodejs")
|
||||
makedepends=("npm")
|
||||
source=("https://registry.npmjs.org/${_pkgname}/-/${_pkgname}-${pkgver}.tgz")
|
||||
sha256sums=('83f35fcc7c54fec519791e4bc28f2c6913971357a055eb9113cbaa7259f3edc4')
|
||||
noextract=("$_pkgname-$pkgver.tgz")
|
||||
|
||||
prepare() {
|
||||
tar xzf "$_pkgname-$pkgver.tgz"
|
||||
}
|
||||
|
||||
package() {
|
||||
npm i --location=global --cache "${srcdir}/npm-cache" --prefix "$pkgdir/usr" "$srcdir/$_pkgname-$pkgver.tgz"
|
||||
install -Dm644 package/LICENSE.md "$pkgdir/usr/share/licenses/$_pkgname/COPYING"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
@ -1,27 +0,0 @@
|
||||
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
||||
|
||||
_pkgname=eask
|
||||
_orgname=emacs-eask
|
||||
_nodepkgname=cli
|
||||
pkgname="nodejs-${_pkgname}"
|
||||
pkgver=0.8.1
|
||||
pkgrel=1
|
||||
pkgdesc="Command-line tool for building and testing Emacs Lisp packages"
|
||||
url="https://github.com/${_orgname}/${_pkgname}"
|
||||
license=("GPL3")
|
||||
arch=("any")
|
||||
depends=("nodejs")
|
||||
makedepends=("npm")
|
||||
source=("https://registry.npmjs.org/@${_orgname}/${_nodepkgname}/-/${_nodepkgname}-${pkgver}.tgz")
|
||||
sha256sums=('a5da7a48b4925f9e90fb3d3892764539052305b63268db0f2fefab7353dc6106')
|
||||
noextract=("$_pkgname-$pkgver.tgz")
|
||||
|
||||
prepare() {
|
||||
tar xf "$_nodepkgname-$pkgver.tgz" package/COPYING
|
||||
}
|
||||
|
||||
package() {
|
||||
npm i --location=global --cache "${srcdir}/npm-cache" --prefix "$pkgdir/usr" "$srcdir/$_nodepkgname-$pkgver.tgz"
|
||||
install -Dm644 package/COPYING "$pkgdir/usr/share/licenses/$_pkgname/COPYING"
|
||||
# install -Dm644 <(nps eask) "$pkgdir/usr/share/bash-completion/completions/$_pkgname"
|
||||
}
|
@ -1,363 +0,0 @@
|
||||
# Maintainer: Lucien Cartier-Tilet <https://aur.archlinux.org/users/phundrak>
|
||||
|
||||
################################################################################
|
||||
# CAVEAT LECTOR: This PKGBUILD is highly opinionated. I give you
|
||||
# enough rope to hang yourself, but by default it
|
||||
# only enables the features I use.
|
||||
#
|
||||
# TLDR: yaourt users, cry me a river.
|
||||
#
|
||||
# Everyone else: do not update blindly this PKGBUILD. At least
|
||||
# make sure to compare and understand the changes.
|
||||
#
|
||||
################################################################################
|
||||
|
||||
################################################################################
|
||||
# Assign "YES" to the variable you want enabled; empty or any other value
|
||||
# for NO.
|
||||
#
|
||||
# Where you read experimental, replace with foobar.
|
||||
# =================================================
|
||||
#
|
||||
################################################################################
|
||||
CHECK= # Run tests. May fail, this is developement after all.
|
||||
CLANG= # Use clang.
|
||||
GOLD="YES" # Use the gold linker.
|
||||
LTO="YES" # Enable link-time optimization. Still experimental.
|
||||
JIT="YES" # Enable native just-in-time compilation. libgccjit is in AUR.
|
||||
# This compiles only performance critical elisp files.
|
||||
#
|
||||
# To compile all site-lisp on demand (repos/AUR packages,
|
||||
# ELPA, MELPA, whatever), add
|
||||
# (setq comp-deferred-compilation t)
|
||||
# to your .emacs file.
|
||||
AOT="YES" # Compile all elisp files.
|
||||
CLI= # CLI only binary.
|
||||
GPM= # Mouse support in Linux console using gpmd.
|
||||
NOTKIT= # Use no toolkit widgets. Like B&W Twm (001d sk00l).
|
||||
# Bitmap fonts only, 1337!
|
||||
PGTK="YES" # Use native GTK3 build. Supports Wayland, yay!
|
||||
GTK3= # GTK3 old windowing interface.
|
||||
LUCID= # Use the lucid, a.k.a athena, toolkit. Like XEmacs, sorta.
|
||||
#
|
||||
# Read https://wiki.archlinux.org/index.php/X_resources
|
||||
# https://en.wikipedia.org/wiki/X_resources
|
||||
# and https://www.emacswiki.org/emacs/XftGnuEmacs
|
||||
# for some tips on using outline fonts with
|
||||
# Xft, if you choose no toolkit or Lucid.
|
||||
XI2="YES" # Use Xinput2 support.
|
||||
# https://www.x.org/releases/X11R7.7/doc/inputproto/XI2proto.txt
|
||||
ALSA= # Linux sound support.
|
||||
NOCAIRO= # Disable here.
|
||||
XWIDGETS="YES" # Use GTK+ widgets pulled from webkit2gtk. Somewhat usable.
|
||||
DOCS_HTML="YES" # Generate and install html documentation.
|
||||
DOCS_PDF= # Generate and install pdf documentation.
|
||||
NOGZ= # Don't compress .el files.
|
||||
TREESITTER="YES" # Enable Emacs' native tree-sitter implementation.
|
||||
# It is necessary to also install tree-sitter
|
||||
# packages per language, such as tree-sitter-c for
|
||||
# c-ts-mode.
|
||||
################################################################################
|
||||
|
||||
################################################################################
|
||||
if [[ $CLI == "YES" ]] ; then
|
||||
pkgname="emacs-nox-phundrak-git"
|
||||
else
|
||||
pkgname="emacs-phundrak-git"
|
||||
fi
|
||||
pkgver=29.0.92.165437
|
||||
pkgrel=1
|
||||
pkgdesc="GNU Emacs. Development master branch with Phundrak’s tweaks."
|
||||
arch=('x86_64')
|
||||
url="http://www.gnu.org/software/emacs/"
|
||||
license=('GPL3')
|
||||
depends_nox=('gnutls' 'libxml2' 'jansson')
|
||||
depends=("${depends_nox[@]}" 'harfbuzz')
|
||||
makedepends=('git')
|
||||
provides=('emacs')
|
||||
replaces=('emacs')
|
||||
# source=("emacs-git::git://git.savannah.gnu.org/emacs.git")
|
||||
source=("emacs-git::git+https://git.savannah.gnu.org/git/emacs.git#branch=emacs-29")
|
||||
b2sums=('SKIP')
|
||||
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug)
|
||||
install=emacs-git.install
|
||||
|
||||
################################################################################
|
||||
|
||||
################################################################################
|
||||
|
||||
CFLAGS+=" -O2 -march=native -mtune=native"
|
||||
CXXFLAGS+=" -O2 -march=native -mtune=native"
|
||||
|
||||
if [[ $GOLD == "YES" && ! $CLANG == "YES" ]]; then
|
||||
export LD=/usr/bin/ld.gold
|
||||
export CFLAGS+=" -fuse-ld=gold";
|
||||
export CXXFLAGS+=" -fuse-ld=gold";
|
||||
elif [[ $GOLD == "YES" && $CLANG == "YES" ]]; then
|
||||
echo "";
|
||||
echo "Clang rather uses its own linker.";
|
||||
echo "";
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
if [[ $CLANG == "YES" ]]; then
|
||||
export CC="/usr/bin/clang" ;
|
||||
export CXX="/usr/bin/clang++" ;
|
||||
export CPP="/usr/bin/clang -E" ;
|
||||
export LD="/usr/bin/lld" ;
|
||||
export AR="/usr/bin/llvm-ar" ;
|
||||
export AS="/usr/bin/llvm-as" ;
|
||||
export CCFLAGS+=' -fuse-ld=lld' ;
|
||||
export CXXFLAGS+=' -fuse-ld=lld' ;
|
||||
makedepends+=( 'clang' 'lld' 'llvm') ;
|
||||
fi
|
||||
|
||||
if [[ $TREESITTER == "YES" ]]; then
|
||||
if [[ $CLI == "YES" ]]; then
|
||||
depends_nox+=( 'tree-sitter' );
|
||||
else
|
||||
depends+=( 'tree-sitter' );
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ $JIT == "YES" ]]; then
|
||||
if [[ $CLI == "YES" ]]; then
|
||||
depends_nox+=( 'libgccjit' );
|
||||
else
|
||||
depends+=( 'libgccjit' );
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ ! $CLI == "YES" ]]; then
|
||||
depends+=( 'libxi' );
|
||||
fi
|
||||
|
||||
if [[ $CLI == "YES" ]]; then
|
||||
depends=("${depends_nox[@]}");
|
||||
elif [[ $NOTKIT == "YES" ]]; then
|
||||
depends+=( 'dbus' 'hicolor-icon-theme' 'libxinerama' 'libxrandr' 'lcms2' 'librsvg' 'libxfixes' 'libxi' 'libsm' 'xcb-util' 'libxcb' );
|
||||
makedepends+=( 'xorgproto' );
|
||||
elif [[ $LUCID == "YES" ]]; then
|
||||
depends+=( 'dbus' 'hicolor-icon-theme' 'libxinerama' 'libxfixes' 'lcms2' 'librsvg' 'xaw3d' 'libxrandr' 'libxi' 'libsm' 'xcb-util' 'libxcb' );
|
||||
makedepends+=( 'xorgproto' );
|
||||
elif [[ $GTK3 == "YES" ]]; then
|
||||
depends+=( 'gtk3' 'libsm' 'xcb-util' 'libxcb' );
|
||||
makedepends+=( 'xorgproto' 'libxi' );
|
||||
elif [[ $PGTK == "YES" ]]; then
|
||||
depends+=( 'gtk3' 'libsm' 'xcb-util' 'libxcb' );
|
||||
makedepends+=( 'xorgproto' 'libxi' );
|
||||
fi
|
||||
|
||||
if [[ ! $NOX == "YES" ]] && [[ ! $CLI == "YES" ]]; then
|
||||
depends+=( 'libjpeg-turbo' 'libpng' 'giflib' 'libwebp' 'libtiff' 'libxpm');
|
||||
elif [[ $CLI == "YES" ]]; then
|
||||
depends+=();
|
||||
fi
|
||||
|
||||
if [[ $ALSA == "YES" ]]; then
|
||||
if [[ $CLI == "YES" ]]; then
|
||||
depends_nox+=( 'alsa-lib' );
|
||||
else
|
||||
depends+=( 'alsa-lib' );
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ ! $NOCAIRO == "YES" ]] && [[ ! $CLI == "YES" ]] && [[ ! $PGTK == "YES" ]] ; then
|
||||
depends+=( 'cairo' );
|
||||
fi
|
||||
|
||||
if [[ $XWIDGETS == "YES" ]]; then
|
||||
if [[ $LUCID == "YES" ]] || [[ $NOTKIT == "YES" ]] || [[ $CLI == "YES" ]]; then
|
||||
echo "";
|
||||
echo "";
|
||||
echo "Xwidgets support **requires** GTK+3!!!";
|
||||
echo "";
|
||||
echo "";
|
||||
exit 1;
|
||||
else
|
||||
depends+=( 'webkit2gtk' );
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ $GPM == "YES" ]]; then
|
||||
if [[ $CLI == "YES" ]]; then
|
||||
depends_nox+=( 'gpm' );
|
||||
else
|
||||
depends+=( 'gpm' );
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ $DOCS_PDF == "YES" ]] && [[ ! -d '/usr/local/texlive' ]]; then
|
||||
makedepends+=( 'texlive-core' );
|
||||
fi
|
||||
################################################################################
|
||||
|
||||
################################################################################
|
||||
pkgver() {
|
||||
cd "$srcdir/emacs-git"
|
||||
|
||||
printf "%s.%s" \
|
||||
$(grep AC_INIT configure.ac | \
|
||||
awk -F',' '{ gsub("[ \\[\\]]","",$2); print $2 }') \
|
||||
$(git rev-list --count HEAD)
|
||||
}
|
||||
|
||||
# There is no need to run autogen.sh after first checkout.
|
||||
# Doing so, breaks incremental compilation.
|
||||
prepare() {
|
||||
cd "$srcdir/emacs-git"
|
||||
[[ -x configure ]] || ( ./autogen.sh git && ./autogen.sh autoconf )
|
||||
mkdir -p "$srcdir/emacs-git/build"
|
||||
}
|
||||
|
||||
if [[ $CHECK == "YES" ]]; then
|
||||
check() {
|
||||
cd "$srcdir/emacs-git/build"
|
||||
make check
|
||||
}
|
||||
fi
|
||||
|
||||
build() {
|
||||
cd "$srcdir/emacs-git/build"
|
||||
|
||||
local _conf=(
|
||||
--prefix=/usr
|
||||
--sysconfdir=/etc
|
||||
--libexecdir=/usr/lib
|
||||
--localstatedir=/var
|
||||
--mandir=/usr/share/man
|
||||
--with-gameuser=:games
|
||||
--with-modules
|
||||
--without-libotf
|
||||
--without-m17n-flt
|
||||
# Beware https://debbugs.gnu.org/cgi/bugreport.cgi?bug=25228
|
||||
# dconf and gconf break font settings you set in ~/.emacs.
|
||||
# If you insist you'll need to read that bug report in *full*.
|
||||
# Good luck!
|
||||
--without-gconf
|
||||
)
|
||||
|
||||
################################################################################
|
||||
|
||||
################################################################################
|
||||
|
||||
if [[ $CLANG == "YES" ]]; then
|
||||
_conf+=( '--enable-autodepend' );
|
||||
fi
|
||||
|
||||
if [[ $LTO == "YES" ]]; then
|
||||
_conf+=( '--enable-link-time-optimization' );
|
||||
fi
|
||||
|
||||
if [[ $JIT == "YES" ]]; then
|
||||
_conf+=( '--with-native-compilation' );
|
||||
fi
|
||||
|
||||
if [[ $XI2 == "YES" ]]; then
|
||||
_conf+=( '--with-xinput2' );
|
||||
fi
|
||||
|
||||
if [[ $CLI == "YES" ]]; then
|
||||
_conf+=( '--without-x' '--with-x-toolkit=no' '--without-xft' '--without-lcms2' '--without-rsvg' '--without-jpeg' '--without-gif' '--without-tiff' '--without-png' );
|
||||
elif [[ $NOTKIT == "YES" ]]; then
|
||||
_conf+=( '--with-x-toolkit=no' '--without-toolkit-scroll-bars' '--without-xft' '--without-xaw3d' );
|
||||
elif [[ $LUCID == "YES" ]]; then
|
||||
_conf+=( '--with-x-toolkit=lucid' '--with-xft' '--with-xaw3d' );
|
||||
elif [[ $GTK3 == "YES" ]]; then
|
||||
_conf+=( '--with-x-toolkit=gtk3' '--without-xaw3d' );
|
||||
elif [[ $PGTK == "YES" ]]; then
|
||||
_conf+=( '--with-pgtk' '--without-xaw3d' );
|
||||
fi
|
||||
|
||||
if [[ ! $PGTK == "YES" ]]; then
|
||||
_conf+=( '--without-gsettings' ) :
|
||||
fi
|
||||
|
||||
if [[ $NOCAIRO == "YES" || $CLI == "YES" || $NOTKIT == "YES" || $LUCID == "YES" ]]; then
|
||||
_conf+=( '--without-cairo' );
|
||||
fi
|
||||
|
||||
if [[ $ALSA == "YES" ]]; then
|
||||
_conf+=( '--with-sound=alsa' );
|
||||
else
|
||||
_conf+=( '--with-sound=no' );
|
||||
fi
|
||||
|
||||
if [[ $XWIDGETS == "YES" ]]; then
|
||||
_conf+=( '--with-xwidgets' );
|
||||
fi
|
||||
|
||||
if [[ $GPM == "YES" ]]; then
|
||||
true
|
||||
else
|
||||
_conf+=( '--without-gpm' );
|
||||
fi
|
||||
|
||||
if [[ $NOGZ == "YES" ]]; then
|
||||
_conf+=( '--without-compress-install' );
|
||||
fi
|
||||
|
||||
if [[ $TREESITTER == "YES" ]]; then
|
||||
_conf+=( '--with-tree-sitter' );
|
||||
fi
|
||||
|
||||
# ctags/etags may be provided by other packages, e.g, universal-ctags
|
||||
_conf+=('--program-transform-name=s/\([ec]tags\)/\1.emacs/')
|
||||
|
||||
################################################################################
|
||||
|
||||
################################################################################
|
||||
|
||||
../configure "${_conf[@]}"
|
||||
|
||||
# Using "make" instead of "make bootstrap" enables incremental
|
||||
# compiling. Less time recompiling. Yay! But you may
|
||||
# need to use bootstrap sometimes to unbreak the build.
|
||||
# Just add it to the command line.
|
||||
#
|
||||
# Please note that incremental compilation implies that you
|
||||
# are reusing your src directory!
|
||||
#
|
||||
if [[ $JIT == "YES" ]] && [[ $AOT == "YES" ]]; then
|
||||
make NATIVE_FULL_AOT=1
|
||||
else
|
||||
make
|
||||
fi
|
||||
|
||||
# You may need to run this if 'loaddefs.el' files become corrupt.
|
||||
#cd "$srcdir/emacs-git/lisp"
|
||||
#make autoloads
|
||||
#cd ../build
|
||||
|
||||
# Optional documentation formats.
|
||||
if [[ $DOCS_HTML == "YES" ]]; then
|
||||
make html;
|
||||
fi
|
||||
if [[ $DOCS_PDF == "YES" ]]; then
|
||||
make pdf;
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/emacs-git/build"
|
||||
|
||||
make DESTDIR="$pkgdir/" install
|
||||
|
||||
# Install optional documentation formats
|
||||
if [[ $DOCS_HTML == "YES" ]]; then make DESTDIR="$pkgdir/" install-html; fi
|
||||
if [[ $DOCS_PDF == "YES" ]]; then make DESTDIR="$pkgdir/" install-pdf; fi
|
||||
|
||||
# fix user/root permissions on usr/share files
|
||||
find "$pkgdir"/usr/share/emacs/ | xargs chown root:root
|
||||
|
||||
# fix permssions on /var/games
|
||||
mkdir -p "$pkgdir"/var/games/emacs
|
||||
chmod 775 "$pkgdir"/var/games
|
||||
chmod 775 "$pkgdir"/var/games/emacs
|
||||
chown -R root:games "$pkgdir"/var/games
|
||||
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# vim:set ft=bash ts=2 sw=2 et:
|
@ -1,40 +0,0 @@
|
||||
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
||||
# Original Maintainer: Sanjay Pavan <withercubes@protonmail.com>
|
||||
|
||||
_pkgname=nsxiv
|
||||
pkgname="${_pkgname}-bepo-git"
|
||||
pkgver=31.r19.gc03ec39
|
||||
pkgrel=1
|
||||
pkgdesc='New Simple X Image Viewer'
|
||||
arch=('x86_64')
|
||||
license=('GPL2')
|
||||
conflicts=("$_pkgname" "${_pkgname}-git")
|
||||
provides=('sxiv')
|
||||
url="https://codeberg.org/${_pkgname}/${_pkgname}"
|
||||
depends=('imlib2' 'desktop-file-utils' 'xdg-utils' 'hicolor-icon-theme' 'libexif' 'libxft' 'giflib' 'libwebp')
|
||||
makedepends=(git)
|
||||
source=("${_pkgname}::git+$url" config.h)
|
||||
b2sums=('SKIP'
|
||||
'657b40dab4ed27e2d1402feb4fcd2dd225504c2e3a619da08cf87e36405d18a161a64939374670626e896c03a553a718f93b1bf54703f2d30dcdb27e082d6c21')
|
||||
|
||||
pkgver() {
|
||||
cd "$srcdir/${_pkgname}"
|
||||
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/${_pkgname}"
|
||||
[[ -f $srcdir/config.h ]] && cp $srcdir/config.h .
|
||||
}
|
||||
|
||||
build() {
|
||||
make -C "$_pkgname"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/${_pkgname}"
|
||||
make PREFIX=/usr DESTDIR="$pkgdir" install-all
|
||||
ln -s /usr/bin/nsxiv "${pkgdir}/usr/bin/sxiv"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
@ -1,208 +0,0 @@
|
||||
#ifdef INCLUDE_WINDOW_CONFIG
|
||||
|
||||
/* default window dimensions (overwritten via -g option): */
|
||||
static const int WIN_WIDTH = 800;
|
||||
static const int WIN_HEIGHT = 600;
|
||||
|
||||
/* colors and font can be overwritten via X resource properties.
|
||||
* See nsxiv(1), X(7) section Resources and xrdb(1) for more information.
|
||||
*/
|
||||
static const char *DEFAULT_WIN_BG = "nord0";
|
||||
static const char *DEFAULT_WIN_FG = "nord4";
|
||||
static const char *DEFAULT_MARK_COLOR = NULL; /* NULL means it will default to window foreground */
|
||||
#if HAVE_LIBFONTS
|
||||
static const char *DEFAULT_BAR_BG = NULL; /* NULL means it will default to window background */
|
||||
static const char *DEFAULT_BAR_FG = NULL; /* NULL means it will default to window foreground */
|
||||
static const char *DEFAULT_FONT = "monospace-8";
|
||||
|
||||
/* if true, statusbar appears on top of the window */
|
||||
static const bool TOP_STATUSBAR = false;
|
||||
#endif /* HAVE_LIBFONTS */
|
||||
|
||||
#endif
|
||||
#ifdef INCLUDE_IMAGE_CONFIG
|
||||
|
||||
/* levels (in percent) to use when zooming via '-' and '+':
|
||||
* (first/last value is used as min/max zoom level)
|
||||
*/
|
||||
static const float zoom_levels[] = {
|
||||
12.5, 25.0, 50.0, 75.0,
|
||||
100.0, 150.0, 200.0, 400.0, 800.0
|
||||
};
|
||||
|
||||
/* default slideshow delay (in sec, overwritten via -S option): */
|
||||
static const int SLIDESHOW_DELAY = 5;
|
||||
|
||||
/* color correction: the user-visible ranges [-CC_STEPS, 0] and
|
||||
* (0, CC_STEPS] are mapped to the ranges [0, 1], and (1, *_MAX].
|
||||
* Higher step count will have higher granulairy.
|
||||
*/
|
||||
static const int CC_STEPS = 32;
|
||||
static const double GAMMA_MAX = 10.0;
|
||||
static const double BRIGHTNESS_MAX = 2.0;
|
||||
static const double CONTRAST_MAX = 4.0;
|
||||
|
||||
/* command i_scroll pans image 1/PAN_FRACTION of screen width/height */
|
||||
static const int PAN_FRACTION = 5;
|
||||
|
||||
/* percentage of memory to use for imlib2's cache size.
|
||||
* 3 means use 3% of total memory which is about 245MiB on 8GiB machine.
|
||||
* 0 or less means disable cache.
|
||||
* 100 means use all available memory (but not above CACHE_SIZE_LIMIT).
|
||||
*
|
||||
* NOTE: higher cache size means better image reloading performance, but also
|
||||
* higher memory usage.
|
||||
*/
|
||||
static const int CACHE_SIZE_MEM_PERCENTAGE = 3; /* use 3% of total memory for cache */
|
||||
static const int CACHE_SIZE_LIMIT = 256 * 1024 * 1024; /* but not above 256MiB */
|
||||
static const int CACHE_SIZE_FALLBACK = 32 * 1024 * 1024; /* fallback to 32MiB if we can't determine total memory */
|
||||
|
||||
#endif
|
||||
#ifdef INCLUDE_OPTIONS_CONFIG
|
||||
|
||||
/* if false, pixelate images at zoom level != 100%,
|
||||
* toggled with 'a' key binding (overwritten via `--anti-alias` option)
|
||||
*/
|
||||
static const bool ANTI_ALIAS = true;
|
||||
|
||||
/* if true, use a checkerboard background for alpha layer,
|
||||
* toggled with 'A' key binding (overwritten via `--alpha-layer` option)
|
||||
*/
|
||||
static const bool ALPHA_LAYER = false;
|
||||
|
||||
#endif
|
||||
#ifdef INCLUDE_THUMBS_CONFIG
|
||||
|
||||
/* thumbnail sizes in pixels (width == height): */
|
||||
static const int thumb_sizes[] = { 32, 64, 96, 128, 160 };
|
||||
|
||||
/* thumbnail size at startup, index into thumb_sizes[]: */
|
||||
static const int THUMB_SIZE = 3;
|
||||
|
||||
#endif
|
||||
#ifdef INCLUDE_MAPPINGS_CONFIG
|
||||
|
||||
/* these modifiers will be used when processing keybindings */
|
||||
static const unsigned int USED_MODMASK = ShiftMask | ControlMask | Mod1Mask;
|
||||
|
||||
/* abort the keyhandler */
|
||||
static const KeySym KEYHANDLER_ABORT = XK_Escape;
|
||||
|
||||
/* keyboard mappings for image and thumbnail mode: */
|
||||
static const keymap_t keys[] = {
|
||||
/* modifiers key function argument */
|
||||
{ 0, XK_q, g_quit, 0 },
|
||||
{ 0, XK_Return, g_switch_mode, None },
|
||||
{ 0, XK_f, g_toggle_fullscreen, None },
|
||||
{ 0, XK_b, g_toggle_bar, None },
|
||||
{ 0, XK_space, g_prefix_external, None },
|
||||
{ 0, XK_g, g_first, None },
|
||||
{ 0, XK_G, g_n_or_last, None },
|
||||
{ 0, XK_h, g_reload_image, None },
|
||||
{ 0, XK_D, g_remove_image, None },
|
||||
{ ControlMask, XK_c, g_scroll_screen, DIR_LEFT },
|
||||
{ ControlMask, XK_Left, g_scroll_screen, DIR_LEFT },
|
||||
{ ControlMask, XK_t, g_scroll_screen, DIR_DOWN },
|
||||
{ ControlMask, XK_Down, g_scroll_screen, DIR_DOWN },
|
||||
{ ControlMask, XK_s, g_scroll_screen, DIR_UP },
|
||||
{ ControlMask, XK_Up, g_scroll_screen, DIR_UP },
|
||||
{ ControlMask, XK_r, g_scroll_screen, DIR_RIGHT },
|
||||
{ ControlMask, XK_Right, g_scroll_screen, DIR_RIGHT },
|
||||
{ 0, XK_plus, g_zoom, +1 },
|
||||
{ 0, XK_KP_Add, g_zoom, +1 },
|
||||
{ 0, XK_minus, g_zoom, -1 },
|
||||
{ 0, XK_KP_Subtract, g_zoom, -1 },
|
||||
{ 0, XK_m, g_toggle_image_mark, None },
|
||||
{ 0, XK_M, g_mark_range, None },
|
||||
{ ControlMask, XK_m, g_reverse_marks, None },
|
||||
{ ControlMask, XK_u, g_unmark_all, None },
|
||||
{ 0, XK_N, g_navigate_marked, +1 },
|
||||
{ 0, XK_P, g_navigate_marked, -1 },
|
||||
{ 0, XK_braceleft, g_change_gamma, -1 },
|
||||
{ 0, XK_braceright, g_change_gamma, +1 },
|
||||
{ ControlMask, XK_g, g_change_gamma, 0 },
|
||||
|
||||
{ 0, XK_c, t_move_sel, DIR_LEFT },
|
||||
{ 0, XK_Left, t_move_sel, DIR_LEFT },
|
||||
{ 0, XK_t, t_move_sel, DIR_DOWN },
|
||||
{ 0, XK_Down, t_move_sel, DIR_DOWN },
|
||||
{ 0, XK_s, t_move_sel, DIR_UP },
|
||||
{ 0, XK_Up, t_move_sel, DIR_UP },
|
||||
{ 0, XK_r, t_move_sel, DIR_RIGHT },
|
||||
{ 0, XK_Right, t_move_sel, DIR_RIGHT },
|
||||
{ 0, XK_H, t_reload_all, None },
|
||||
|
||||
{ 0, XK_n, i_navigate, +1 },
|
||||
{ 0, XK_n, i_scroll_to_edge, DIR_LEFT | DIR_UP },
|
||||
{ 0, XK_p, i_navigate, -1 },
|
||||
{ 0, XK_p, i_scroll_to_edge, DIR_LEFT | DIR_UP },
|
||||
{ 0, XK_BackSpace, i_navigate, -1 },
|
||||
{ 0, XK_bracketright, i_navigate, +10 },
|
||||
{ 0, XK_bracketleft, i_navigate, -10 },
|
||||
{ ControlMask, XK_6, i_alternate, None },
|
||||
{ ControlMask, XK_n, i_navigate_frame, +1 },
|
||||
{ ControlMask, XK_p, i_navigate_frame, -1 },
|
||||
{ ControlMask, XK_space, i_toggle_animation, None },
|
||||
{ ControlMask, XK_a, i_toggle_animation, None },
|
||||
{ 0, XK_c, i_scroll, DIR_LEFT },
|
||||
{ 0, XK_Left, i_scroll, DIR_LEFT },
|
||||
{ 0, XK_t, i_scroll, DIR_DOWN },
|
||||
{ 0, XK_Down, i_scroll, DIR_DOWN },
|
||||
{ 0, XK_s, i_scroll, DIR_UP },
|
||||
{ 0, XK_Up, i_scroll, DIR_UP },
|
||||
{ 0, XK_r, i_scroll, DIR_RIGHT },
|
||||
{ 0, XK_Right, i_scroll, DIR_RIGHT },
|
||||
{ 0, XK_C, i_scroll_to_edge, DIR_LEFT },
|
||||
{ 0, XK_T, i_scroll_to_edge, DIR_DOWN },
|
||||
{ 0, XK_S, i_scroll_to_edge, DIR_UP },
|
||||
{ 0, XK_R, i_scroll_to_edge, DIR_RIGHT },
|
||||
{ 0, XK_z, i_scroll_to_center, None },
|
||||
{ 0, XK_equal, i_set_zoom, 100 },
|
||||
{ 0, XK_w, i_fit_to_win, SCALE_DOWN },
|
||||
{ 0, XK_W, i_fit_to_win, SCALE_FIT },
|
||||
{ 0, XK_F, i_fit_to_win, SCALE_FILL },
|
||||
{ 0, XK_e, i_fit_to_win, SCALE_WIDTH },
|
||||
{ 0, XK_E, i_fit_to_win, SCALE_HEIGHT },
|
||||
{ 0, XK_less, i_rotate, DEGREE_270 },
|
||||
{ 0, XK_greater, i_rotate, DEGREE_90 },
|
||||
{ 0, XK_question, i_rotate, DEGREE_180 },
|
||||
{ 0, XK_bar, i_flip, FLIP_HORIZONTAL },
|
||||
{ 0, XK_underscore, i_flip, FLIP_VERTICAL },
|
||||
{ 0, XK_a, i_toggle_antialias, None },
|
||||
{ 0, XK_A, i_toggle_alpha, None },
|
||||
{ 0, XK_k, i_slideshow, None },
|
||||
};
|
||||
|
||||
/* mouse button mappings for image mode: */
|
||||
static const button_t buttons_img[] = {
|
||||
/* modifiers button function argument */
|
||||
{ 0, 1, i_cursor_navigate, None },
|
||||
{ ControlMask, 1, i_drag, DRAG_RELATIVE },
|
||||
{ 0, 2, i_drag, DRAG_ABSOLUTE },
|
||||
{ 0, 3, g_switch_mode, None },
|
||||
{ 0, 4, g_zoom, +1 },
|
||||
{ 0, 5, g_zoom, -1 },
|
||||
};
|
||||
|
||||
/* mouse button mappings for thumbnail mode: */
|
||||
static const button_t buttons_tns[] = {
|
||||
/* modifiers button function argument */
|
||||
{ 0, 1, t_select, None },
|
||||
{ 0, 3, t_drag_mark_image, None },
|
||||
{ 0, 4, t_scroll, DIR_UP },
|
||||
{ 0, 5, t_scroll, DIR_DOWN },
|
||||
{ ControlMask, 4, g_scroll_screen, DIR_UP },
|
||||
{ ControlMask, 5, g_scroll_screen, DIR_DOWN },
|
||||
};
|
||||
|
||||
/* true means NAV_WIDTH is relative (33%), false means absolute (33 pixels) */
|
||||
static const bool NAV_IS_REL = true;
|
||||
/* width of navigation area, 0 disables cursor navigation, */
|
||||
static const unsigned int NAV_WIDTH = 33;
|
||||
|
||||
/* mouse cursor on left, middle and right part of the window */
|
||||
static const cursor_t imgcursor[3] = {
|
||||
CURSOR_LEFT, CURSOR_ARROW, CURSOR_RIGHT
|
||||
};
|
||||
|
||||
#endif
|
@ -1,42 +0,0 @@
|
||||
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
||||
pkgname=pumopm-bin
|
||||
pkgver=0.1.1
|
||||
pkgrel=3
|
||||
pkgdesc="A tiny power manager written in Rust"
|
||||
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
|
||||
url="https://labs.phundrak.com/phundrak/pumopm"
|
||||
license=('GPL3')
|
||||
depends=()
|
||||
makedepends=('rustup')
|
||||
options=('strip' 'zipman')
|
||||
source=("${pkgname%-bin}::https://labs.phundrak.com/phundrak/pumopm/archive/$pkgver.tar.gz")
|
||||
# If Phundrak’s Gitea takes too long to answer, or if it is down, use the
|
||||
# Github mirror
|
||||
# source=("${pkgname%-bin}::https://github.com/Phundrak/pumopm/archive/$pkgver.tar.gz")
|
||||
md5sums=('347a95efacdbf9f8ab3b2da6a7eff6cc')
|
||||
conflicts=('pumopm' 'pumopm-git')
|
||||
|
||||
build() {
|
||||
cd "$pkgname"
|
||||
if command -v rustup >/dev/null 2>&1; then
|
||||
RUSTFLAGS="-C target-cpu=native" rustup run stable cargo build --release
|
||||
elif rustc --version | grep -q stable; then
|
||||
RUSTFLAGS="-C target-cpu=native" cargo build --release
|
||||
else
|
||||
cargo build --release
|
||||
fi
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname"
|
||||
echo EXE
|
||||
install -Dm755 "target/release/pumopm" "$pkgdir/usr/bin/pumopm"
|
||||
echo LICENSE
|
||||
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
|
||||
echo MAN
|
||||
install -Dm644 "pumopm.1" "$pkgdir/usr/share/man/man1/pumopm.1"
|
||||
echo SERVCE
|
||||
install -Dm644 "pumopm.service" "$pkgdir/usr/lib/systemd/system/pumopm.service"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
@ -1,40 +0,0 @@
|
||||
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
||||
|
||||
_pkgname=sent
|
||||
pkgname=${_pkgname}-phundrak-git
|
||||
pkgver=r130.0a30ccc
|
||||
pkgrel=1
|
||||
pkgdesc="Simple plain-text presentation tool"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://tools.suckless.org/${_pkgname}"
|
||||
license=('MIT')
|
||||
depends=('fontconfig' 'libxft')
|
||||
optdepends=('farbfeld: PNG and JPEG support')
|
||||
makedepends=('git')
|
||||
conflicts=('sent' 'sent-git')
|
||||
source=("$pkgname::git+https://labs.phundrak.com/phundrak/sent")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd "${pkgname}"
|
||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "${srcdir}/${pkgname}"
|
||||
if [ -f "${srcdir}/config.h" ]; then
|
||||
cp "${srcdir}/config.h" .
|
||||
fi
|
||||
}
|
||||
|
||||
build() {
|
||||
make -C "${srcdir}/${pkgname}"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}"
|
||||
make PREFIX="/usr" \
|
||||
DESTDIR="${pkgdir}" \
|
||||
install
|
||||
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
}
|
5
docs/.dir-locals.el
Normal file
@ -0,0 +1,5 @@
|
||||
;;; Directory Local Variables -*- no-byte-compile: t -*-
|
||||
;;; For more information see (info "(emacs) Directory Variables")
|
||||
|
||||
((org-mode . ((org-list-allow-alphabetical . nil)
|
||||
(org-confirm-babel-evaluate . nil))))
|
11
docs/.vuepress/client.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { defineClientConfig } from '@vuepress/client';
|
||||
import ImgFigure from './components/ImgFigure.vue';
|
||||
|
||||
export default defineClientConfig({
|
||||
enhance({ app }) {
|
||||
app.component('ImgFigure', ImgFigure);
|
||||
},
|
||||
setup() {},
|
||||
layouts: {},
|
||||
rootComponents: [],
|
||||
});
|
19
docs/.vuepress/components/ImgFigure.vue
Normal file
@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<img :alt="alt" :src="src" />
|
||||
<figcaption><slot></slot></figcaption>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const props = defineProps<{
|
||||
src: string;
|
||||
alt?: string;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<style>
|
||||
figcaption {
|
||||
text-align: center;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
</style>
|
132
docs/.vuepress/config.ts
Normal file
@ -0,0 +1,132 @@
|
||||
import { defineUserConfig, defaultTheme } from 'vuepress';
|
||||
import { removeHtmlExtensionPlugin } from 'vuepress-plugin-remove-html-extension';
|
||||
import head from './head';
|
||||
|
||||
export default defineUserConfig({
|
||||
lang: 'en-US',
|
||||
title: "Phundrak's Dotfiles",
|
||||
head: head,
|
||||
description: "Documentation of the GNU/Linux configuration of P'undrak",
|
||||
markdown: {
|
||||
html: false,
|
||||
linkify: true,
|
||||
typographer: true,
|
||||
headers: {
|
||||
level: [1, 2, 3, 4, 5],
|
||||
},
|
||||
},
|
||||
plugins: [removeHtmlExtensionPlugin()],
|
||||
theme: defaultTheme({
|
||||
sidebarDepth: 5,
|
||||
repo: 'https://labs.phundrak.com/phundrak/config.phundrak.com',
|
||||
sidebar: [
|
||||
'/',
|
||||
'/about',
|
||||
{
|
||||
text: 'Emacs',
|
||||
link: '/emacs/',
|
||||
collapsible: true,
|
||||
children: [
|
||||
{
|
||||
text: 'Basic Configuration',
|
||||
link: '/emacs/basic-config',
|
||||
},
|
||||
{
|
||||
text: 'Custom Elisp',
|
||||
link: '/emacs/custom-elisp',
|
||||
},
|
||||
{
|
||||
text: 'Package Manager',
|
||||
link: '/emacs/package-manager',
|
||||
},
|
||||
{
|
||||
text: 'Keybindings Managers',
|
||||
link: '/emacs/keybinding-managers',
|
||||
},
|
||||
{
|
||||
text: 'Packages - Autocompletion',
|
||||
link: '/emacs/packages/autocompletion',
|
||||
},
|
||||
{
|
||||
text: 'Packages - Applications',
|
||||
link: '/emacs/packages/applications',
|
||||
},
|
||||
{
|
||||
text: 'Packages - Editing',
|
||||
link: '/emacs/packages/editing',
|
||||
},
|
||||
{
|
||||
text: 'Packages - Emacs Built-ins',
|
||||
link: '/emacs/packages/emacs-builtin',
|
||||
},
|
||||
{
|
||||
text: 'Packages - Making My Life Easier',
|
||||
link: '/emacs/packages/helpful',
|
||||
},
|
||||
{
|
||||
text: 'Packages - LaTeX',
|
||||
link: '/emacs/packages/latex',
|
||||
},
|
||||
{
|
||||
text: 'Packages - Org Mode',
|
||||
link: '/emacs/packages/org',
|
||||
},
|
||||
{
|
||||
text: 'Packages - Programming',
|
||||
link: '/emacs/packages/programming',
|
||||
},
|
||||
{
|
||||
text: 'Packages - Visual Configuration',
|
||||
link: '/emacs/packages/visual-config',
|
||||
},
|
||||
{
|
||||
text: 'Packages - Misc',
|
||||
link: '/emacs/packages/misc',
|
||||
},
|
||||
{
|
||||
text: 'Keybindings',
|
||||
link: '/emacs/keybindings',
|
||||
},
|
||||
],
|
||||
},
|
||||
'/scripts',
|
||||
'/desktop',
|
||||
// '/fish',
|
||||
// '/git',
|
||||
// '/mpd',
|
||||
'/neofetch',
|
||||
'/picom',
|
||||
'/rustfmt',
|
||||
'/stumpwm',
|
||||
// '/tmux',
|
||||
'/bootstrap',
|
||||
{
|
||||
text: 'Deprecated Configs',
|
||||
link: '/deprecated/',
|
||||
collapsible: true,
|
||||
children: [
|
||||
{
|
||||
text: 'AwesomeWM',
|
||||
link: '/deprecated/awesome',
|
||||
},
|
||||
{
|
||||
text: 'i3',
|
||||
link: '/deprecated/i3',
|
||||
},
|
||||
{
|
||||
text: 'Nano',
|
||||
link: '/deprecated/nano',
|
||||
},
|
||||
{
|
||||
text: 'Polybar',
|
||||
link: '/deprecated/polybar',
|
||||
},
|
||||
{
|
||||
text: 'Spacemacs',
|
||||
link: '/deprecated/spacemacs',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
}),
|
||||
});
|
145
docs/.vuepress/head.ts
Normal file
@ -0,0 +1,145 @@
|
||||
interface SimplifiedHeader {
|
||||
tag: string;
|
||||
content: [any];
|
||||
}
|
||||
|
||||
const matomoTrackingCode = `var _paq = window._paq = window._paq || [];
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="https://matomo.phundrak.com/";
|
||||
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||
_paq.push(['setSiteId', '2']);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
||||
})();`;
|
||||
|
||||
const simplifiedHead = [
|
||||
{
|
||||
tag: "meta",
|
||||
content: [
|
||||
{
|
||||
name: "author",
|
||||
content: "Lucien Cartier-Tilet",
|
||||
},
|
||||
{
|
||||
property: "og:image",
|
||||
content: "https://cdn.phundrak.com/img/rich_preview.png",
|
||||
},
|
||||
{
|
||||
property: "og:title",
|
||||
content: "P’undrak’s GNU/Linux Config",
|
||||
},
|
||||
{
|
||||
property: "og:description",
|
||||
content: "Documentation of P’undrak’s GNU/Linux configuration files",
|
||||
},
|
||||
{
|
||||
name: "twitter:card",
|
||||
content: "summary",
|
||||
},
|
||||
{
|
||||
name: "twitter:site",
|
||||
content: "@phundrak",
|
||||
},
|
||||
{
|
||||
name: "twitter:creator",
|
||||
content: "@phundrak",
|
||||
},
|
||||
{ name: "msapplication-TileColor", content: "#3b4252" },
|
||||
{ name: "msapplication-TileImage", content: "/ms-icon-144x144.png" },
|
||||
{ name: "theme-color", content: "#3b4252" },
|
||||
],
|
||||
},
|
||||
{
|
||||
tag: "link",
|
||||
content: [
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "57x57",
|
||||
href: "/apple-icon-57x57.png",
|
||||
},
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "60x60",
|
||||
href: "/apple-icon-60x60.png",
|
||||
},
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "72x72",
|
||||
href: "/apple-icon-72x72.png",
|
||||
},
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "76x76",
|
||||
href: "/apple-icon-76x76.png",
|
||||
},
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "114x114",
|
||||
href: "/apple-icon-114x114.png",
|
||||
},
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "120x120",
|
||||
href: "/apple-icon-120x120.png",
|
||||
},
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "144x144",
|
||||
href: "/apple-icon-144x144.png",
|
||||
},
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "152x152",
|
||||
href: "/apple-icon-152x152.png",
|
||||
},
|
||||
{
|
||||
rel: "apple-touch-icon",
|
||||
sizes: "180x180",
|
||||
href: "/apple-icon-180x180.png",
|
||||
},
|
||||
{
|
||||
rel: "icon",
|
||||
type: "image/png",
|
||||
sizes: "192x192",
|
||||
href: "/android-icon-192x192.png",
|
||||
},
|
||||
{
|
||||
rel: "icon",
|
||||
type: "image/png",
|
||||
sizes: "32x32",
|
||||
href: "/favicon-32x32.png",
|
||||
},
|
||||
{
|
||||
rel: "icon",
|
||||
type: "image/png",
|
||||
sizes: "96x96",
|
||||
href: "/favicon-96x96.png",
|
||||
},
|
||||
{
|
||||
rel: "icon",
|
||||
type: "image/png",
|
||||
sizes: "16x16",
|
||||
href: "/favicon-16x16.png",
|
||||
},
|
||||
{ rel: "manifest", href: "/manifest.json" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
let head = [];
|
||||
simplifiedHead.forEach((tag: SimplifiedHeader) => {
|
||||
let tagName = tag.tag;
|
||||
tag.content.forEach((element) => {
|
||||
head.push([tagName, element]);
|
||||
});
|
||||
});
|
||||
head.push([
|
||||
"a",
|
||||
{ rel: "me", href: "https://mastodon.phundrak.com/@phundrak" },
|
||||
"Mastodon",
|
||||
]);
|
||||
head.push(["script", {}, matomoTrackingCode]);
|
||||
|
||||
export default head;
|
BIN
docs/.vuepress/public/android-icon-144x144.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
docs/.vuepress/public/android-icon-192x192.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
docs/.vuepress/public/android-icon-36x36.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
docs/.vuepress/public/android-icon-48x48.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
docs/.vuepress/public/android-icon-72x72.png
Normal file
After Width: | Height: | Size: 9.8 KiB |
BIN
docs/.vuepress/public/android-icon-96x96.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
docs/.vuepress/public/apple-icon-114x114.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
docs/.vuepress/public/apple-icon-120x120.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
docs/.vuepress/public/apple-icon-144x144.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
docs/.vuepress/public/apple-icon-152x152.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
docs/.vuepress/public/apple-icon-180x180.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
docs/.vuepress/public/apple-icon-57x57.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
docs/.vuepress/public/apple-icon-60x60.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
docs/.vuepress/public/apple-icon-72x72.png
Normal file
After Width: | Height: | Size: 9.8 KiB |
BIN
docs/.vuepress/public/apple-icon-76x76.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
docs/.vuepress/public/apple-icon-precomposed.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
docs/.vuepress/public/apple-icon.png
Normal file
After Width: | Height: | Size: 46 KiB |
2
docs/.vuepress/public/browserconfig.xml
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig><msapplication><tile><square70x70logo src="/ms-icon-70x70.png"/><square150x150logo src="/ms-icon-150x150.png"/><square310x310logo src="/ms-icon-310x310.png"/><TileColor>#eceff4</TileColor></tile></msapplication></browserconfig>
|
BIN
docs/.vuepress/public/favicon-16x16.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
docs/.vuepress/public/favicon-32x32.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
docs/.vuepress/public/favicon-96x96.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
docs/.vuepress/public/favicon.ico
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
docs/.vuepress/public/ms-icon-144x144.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
docs/.vuepress/public/ms-icon-150x150.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
docs/.vuepress/public/ms-icon-310x310.png
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
docs/.vuepress/public/ms-icon-70x70.png
Normal file
After Width: | Height: | Size: 9.4 KiB |
174
docs/.vuepress/styles/index.scss
Normal file
@ -0,0 +1,174 @@
|
||||
/*
|
||||
* Nord Theme:
|
||||
* - Copyright (c) 2016-present Arctic Ice Studio <development@arcticicestudio.com>
|
||||
* - Copyright (c) 2016-present Sven Greb <development@svengreb.de>
|
||||
*/
|
||||
|
||||
:root {
|
||||
--nord0: #2e3440;
|
||||
--nord1: #3b4252;
|
||||
--nord2: #434c5e;
|
||||
--nord3: #4c566a;
|
||||
--nord4: #d8dee9;
|
||||
--nord5: #e5e9f0;
|
||||
--nord6: #eceff4;
|
||||
--nord7: #8fbcbb;
|
||||
--nord8: #88c0d0;
|
||||
--nord9: #81a1c1;
|
||||
--nord10: #5e81ac;
|
||||
--nord11: #bf616a;
|
||||
--nord12: #d08770;
|
||||
--nord13: #ebcb8b;
|
||||
--nord14: #a3be8c;
|
||||
--nord15: #b48ead;
|
||||
|
||||
scroll-behavior: smooth;
|
||||
|
||||
// brand colors
|
||||
--c-brand: var(--nord9);
|
||||
--c-brand-light: var(--nord14);
|
||||
|
||||
// background colors
|
||||
--c-bg: var(--nord6);
|
||||
--c-bg-light: var(--nord6);
|
||||
--c-bg-lighter: var(--nord5);
|
||||
--c-bg-dark: var(--nord5);
|
||||
--c-bg-darker: var(--nord4);
|
||||
--c-bg-navbar: var(--c-bg);
|
||||
--c-bg-sidebar: var(--c-bg);
|
||||
--c-bg-arrow: var(--nord4);
|
||||
|
||||
// text colors
|
||||
--c-text: var(--nord1);
|
||||
--c-text-accent: var(--c-brand);
|
||||
--c-text-light: var(--nord2);
|
||||
--c-text-lighter: var(--nord3);
|
||||
--c-text-lightest: var(--nord4);
|
||||
--c-text-quote: var(--nord2);
|
||||
|
||||
// border colors
|
||||
--c-border: var(--nord4);
|
||||
--c-border-dark: var(--nord4);
|
||||
|
||||
// custom container colors
|
||||
--c-tip: var(--nord14);
|
||||
--c-tip-bg: rgba(163, 190, 140, 0.2);
|
||||
--c-tip-title: var(--c-text);
|
||||
--c-tip-text: var(--c-text);
|
||||
--c-tip-text-accent: var(--c-text-accent);
|
||||
--c-warning: var(--nord13);
|
||||
--c-warning-bg: rgba(235, 203, 139, 0.3);
|
||||
--c-warning-bg-light: rgba(235, 203, 139, 0.2);
|
||||
--c-warning-bg-lighter: rgba(235, 203, 139, 0.1);
|
||||
--c-warning-border-dark: var(--nord3);
|
||||
--c-warning-details-bg: var(--c-bg);
|
||||
--c-warning-title: var(--nord12);
|
||||
--c-warning-text: var(--nord12);
|
||||
--c-warning-text-accent: var(--nord12);
|
||||
--c-warning-text-light: var(--nord12);
|
||||
--c-warning-text-quote: var(--nord12);
|
||||
|
||||
--c-danger: var(--nord11);
|
||||
--c-danger-bg: rgba(191, 97, 106, 0.2);
|
||||
--c-danger-bg-light: rgba(191, 97, 106, 0.2);
|
||||
--c-danger-bg-lighter: rgba(191, 97, 106, 0.1);
|
||||
--c-danger-border-dark: var(--nord11);
|
||||
--c-danger-details-bg: var(--nord2);
|
||||
--c-danger-title: var(--nord11);
|
||||
--c-danger-text: var(--nord11);
|
||||
--c-danger-text-accent: var(--nord11);
|
||||
--c-danger-text-light: var(--nord11);
|
||||
--c-danger-text-quote: var(--nord11);
|
||||
|
||||
--c-details-bg: var(--c-bg-lighter);
|
||||
|
||||
// badge component colors
|
||||
--c-badge-tip: var(--c-tip);
|
||||
--c-badge-warning: var(--c-warning);
|
||||
--c-badge-warning-text: var(--c-bg);
|
||||
--c-badge-danger: var(--c-danger);
|
||||
--c-badge-danger-text: var(--c-bg);
|
||||
|
||||
// transition vars
|
||||
--t-color: 0.3s ease;
|
||||
--t-transform: 0.3s ease;
|
||||
|
||||
// code blocks vars
|
||||
--code-bg-color: var(--nord0);
|
||||
--code-hl-bg-color: var(--nord1);
|
||||
--code-ln-color: #9e9e9e;
|
||||
--code-ln-wrapper-width: 3.5rem;
|
||||
|
||||
// font vars
|
||||
--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
|
||||
Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
||||
--font-family-code: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||
|
||||
// layout vars
|
||||
--navbar-height: 3.6rem;
|
||||
--navbar-padding-v: 0.7rem;
|
||||
--navbar-padding-h: 1.5rem;
|
||||
--sidebar-width: 20rem;
|
||||
--sidebar-width-mobile: calc(var(--sidebar-width) * 0.82);
|
||||
--content-width: 740px;
|
||||
--homepage-width: 960px;
|
||||
}
|
||||
|
||||
html.dark {
|
||||
// brand colors
|
||||
--c-brand: var(--nord14);
|
||||
--c-brand-light: var(--nord14);
|
||||
|
||||
// background colors
|
||||
--c-bg: var(--nord1);
|
||||
--c-bg-light: var(--nord2);
|
||||
--c-bg-lighter: var(--nord2);
|
||||
--c-bg-dark: var(--nord3);
|
||||
--c-bg-darker: var(--nord3);
|
||||
|
||||
// text colors
|
||||
--c-text: var(--nord4);
|
||||
--c-text-light: var(--nord5);
|
||||
--c-text-lighter: var(--nord5);
|
||||
--c-text-lightest: var(--nord6);
|
||||
--c-text-quote: var(--c-text);
|
||||
|
||||
// border colors
|
||||
--c-border: var(--nord3);
|
||||
--c-border-dark: var(--nord3);
|
||||
|
||||
// custom container colors
|
||||
--c-tip: var(--nord14);
|
||||
--c-warning: var(--nord13);
|
||||
--c-warning-bg: rgba(235, 203, 139, 0.2);
|
||||
--c-warning-bg-light: rgba(235, 203, 139, 0.2);
|
||||
--c-warning-bg-lighter: rgba(235, 203, 139, 0.1);
|
||||
--c-warning-border-dark: var(--nord3);
|
||||
--c-warning-details-bg: var(--c-bg);
|
||||
--c-warning-title: var(--nord13);
|
||||
--c-warning-text: var(--nord13);
|
||||
--c-warning-text-accent: var(--nord13);
|
||||
--c-warning-text-light: var(--nord13);
|
||||
--c-warning-text-quote: var(--nord13);
|
||||
|
||||
--c-danger: var(--nord11);
|
||||
--c-danger-bg: rgba(191, 97, 106, 0.2);
|
||||
--c-danger-bg-light: rgba(191, 97, 106, 0.2);
|
||||
--c-danger-bg-lighter: rgba(191, 97, 106, 0.1);
|
||||
--c-danger-border-dark: var(--nord11);
|
||||
--c-danger-details-bg: var(--nord2);
|
||||
--c-danger-title: hsl(354 43% 75.7%);
|
||||
--c-danger-text: hsl(354 43% 80.7%);
|
||||
--c-danger-text-accent: var(--nord11);
|
||||
--c-danger-text-light: var(--nord11);
|
||||
--c-danger-text-quote: var(--nord11);
|
||||
|
||||
--c-details-bg: var(--c-bg-light);
|
||||
|
||||
// badge component colors
|
||||
--c-badge-warning-text: var(--nord0);
|
||||
--c-badge-danger-text: var(--nord0);
|
||||
|
||||
// code blocks vars
|
||||
--code-hl-bg-color: var(--nord2);
|
||||
}
|
30
docs/README.org
Normal file
@ -0,0 +1,30 @@
|
||||
#+title: P’undrak’s Dotfiles
|
||||
#+setupfile: headers
|
||||
|
||||
* Index
|
||||
Hi, I’m P’undrak (pronounced /PUN-DRAK/, or more exactly {{{phon(pʰynɖak̚)}}}),
|
||||
also known as Lucien Cartier-Tilet. If you want to know more about me,
|
||||
you can head to my [[https://phundrak.com/en][main website]].
|
||||
|
||||
This website is my collection of dotfiles for my daily GNU/Linux
|
||||
environment, tweaked to my liking. The sidebar will act as an index of
|
||||
the various tools I use and their configuration.
|
||||
|
||||
Additionaly, you can find my configuration for my ErgodoxEZ keyboard
|
||||
[[https://configure.ergodox-ez.com/ergodox-ez/layouts/5WrVw/latest/0][here]]. It is optimized for usage with the Bépo layout set as a software
|
||||
layout. It has also a layer set to emulate a Qwerty layout when using
|
||||
the Bépo software layout due to some games that do not offer to remap
|
||||
keys or whose remap feature is kind of buggy with some keys, such as
|
||||
the «é» placed where the «w» is on a Qwerty layout (I’m looking at
|
||||
you, HoloCure).
|
||||
|
||||
** Installation
|
||||
If you wish to install my dotfiles and you are on ArchLinux, you can
|
||||
follow the [[file:bootstrap.org][bootstrap]] page where you can find a walkthrough of how I
|
||||
configure my environment and what I install. If you have [[https://github.com/TheLocehiliosan/yadm][YADM]]
|
||||
installed, you can even execute =yadm bootstrap= to execute it after
|
||||
cloning my repo with =yadm clone
|
||||
https://labs.phundrak.com/phundrak/dotfiles.git=.
|
||||
|
||||
** License
|
||||
See [[https://labs.phundrak.com/phundrak/dotfiles/src/branch/master/LICENSE.org][the repository’s license file]].
|
72
docs/about.org
Normal file
@ -0,0 +1,72 @@
|
||||
#+title: About this website
|
||||
#+setupfile: headers
|
||||
|
||||
* About this website
|
||||
** Introduction
|
||||
This is the config website of Lucien “Phundrak” Cartier-Tilet.
|
||||
|
||||
This website is made with [[https://orgmode.org/][org-mode]] and [[https://v2.vuepress.vuejs.org/][Vuepress]] and is entirely free
|
||||
and open-source. You can find its source code on my Gitea instance
|
||||
[[https://labs.phundrak.com/phundrak/config.phundrak.com][here]].
|
||||
|
||||
** Where is the website hosted?
|
||||
This website is hosted on my private physical server, located in the
|
||||
town of Bron in France, near Lyon. All of my websites are also hosted
|
||||
on this server, except for [[https://labs.phundrak.com][=labs.phundrak.com=]] and =mail.phundrak.com=
|
||||
which are hosted on servers rented to Scaleway and OVH France
|
||||
respectively. These servers are also located in France.
|
||||
|
||||
** Cookies
|
||||
*** What are cookies?
|
||||
Cookies are small files a website saves on your computer or mobile
|
||||
phone when you visit a website. site. Although not all sites make use
|
||||
of them, they are nevertheless extremely common in order to allow
|
||||
websites to function properly or function properly or more
|
||||
efficiently.
|
||||
|
||||
This website uses some functional cookies in order to remember your
|
||||
preferences, such as your preferred language or its color theme. These
|
||||
cookies are not and cannot be used to track you.
|
||||
|
||||
However, as this site is protected by Cloudflare, they may also host
|
||||
some cookies to remember, for example, that your browser is safe or to
|
||||
record traffic to the site.
|
||||
|
||||
*** How can I control cookies on my computer?
|
||||
If you don't want Cloudflare to record your browsing activity on my
|
||||
website, a good adblocker should do the trick. I personally recommend
|
||||
[[https://ublockorigin.com/][uBlock Origin]], one of the most effective adblockers I know of if not
|
||||
the most effective one.
|
||||
|
||||
You can also manually delete cookies from your browser, but given the
|
||||
number of browsers out there, it might be quicker for you to look up
|
||||
DuckDuckGo, Qwant or Startpage to do this for your current browser (if
|
||||
you're worried about cookie usage, I guess you'll want to avoid
|
||||
Google).
|
||||
|
||||
*** What about other methods of tracking users?
|
||||
There are other more subtle methods of tracking someone on the
|
||||
internet, or even via emails or any web content rendered on the
|
||||
screen, such as web beacons (extremely small images). It is also
|
||||
possible to store Flash cookies or local shared objects.
|
||||
|
||||
This site does not use them at all.
|
||||
|
||||
** Is there targeted advertisement on this website?
|
||||
There’s no advertisement to begin with. If you see any, check your
|
||||
computer and browser for virus, that is not normal.
|
||||
|
||||
** How often is this page updated?
|
||||
It is updated from time to time to reflect any changes in how my
|
||||
website behaves, or if I notice errors on this page (such as typos). I
|
||||
might add some user tracking, however don’t worry, Matomo (the service
|
||||
I would use) would only track you on this website and this website
|
||||
only. Matomo respects the privacy of a website’s users.
|
||||
|
||||
You can see the last update of this page by looking at the last
|
||||
modification of the file =about.org= on [[https://labs.phundrak.com/phundrak/config.phundrak.com/src/branch/main/docs][this page]].
|
||||
|
||||
** I have other questions
|
||||
|
||||
And I have the answers! I’ll be more thang happy to chat with you by
|
||||
email, feel free to send me one at [[mailto:lucien@phundrak.com][lucien@phundrak.com]].
|
@ -1,27 +1,17 @@
|
||||
#+TITLE: Arch Linux, Phundrak-flavored
|
||||
#+setupfile: headers
|
||||
#+OPTIONS: unique-id:t
|
||||
#+HTML_HEAD_EXTRA: <meta name="description" content="Phundrak-flavored Arch Linux" />
|
||||
#+HTML_HEAD_EXTRA: <meta property="og:title" content="Phundrak-flavored Arch Linux" />
|
||||
#+HTML_HEAD_EXTRA: <meta property="og:description" content="How to install a Phundrak-flavored Arch Linux" />
|
||||
#+PROPERTY: header-args :tangle no :exports none
|
||||
#+PROPERTY: header-args:sh :tangle no :exports code
|
||||
#+PROPERTY: header-args:fish :exports code :noweb yes
|
||||
#+PROPERTY: header-args:emacs-lisp :exports none :noweb yes :tangle no :cache yes
|
||||
|
||||
* Introduction
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Introduction-cd5792cd
|
||||
:END:
|
||||
* Bootstrap Script
|
||||
Here will be presented what I do to get my system up and running on a fresh Arch
|
||||
Linux install. These installation instructions were written in order to get an
|
||||
Arch Linux distribution up and running with the same configuration as my main
|
||||
computer’s and my travelling laptop’s configuration.
|
||||
|
||||
* Install Arch Linux
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Install_Arch_Linux-ac7ad3b2
|
||||
:END:
|
||||
** Install Arch Linux
|
||||
I usually install Arch from the [[https://www.archlinux.org/download/][vanilla ISO]], however I began using [[https://github.com/MatMoul/archfi][archfi]] to
|
||||
install easily the distro (I’ve done it so many times, I know how it works now).
|
||||
Usually, my distros will be installed on two partitions: ~/home~ and ~/~ (root).
|
||||
@ -41,15 +31,11 @@ not enough space, the command will fail, and you won’t be able to use this
|
||||
command. For instance, my current computer has 32 GB of RAM, hence my SWAP
|
||||
partition is 16 GB large.
|
||||
|
||||
** Get the latest, fastest mirrors
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Install_Arch_Linux-Get_the_latest_fastest_mirrors-765401c9
|
||||
:END:
|
||||
*** Get the latest, fastest mirrors
|
||||
When you boot into the live ISO, execute the following command:
|
||||
#+BEGIN_SRC sh
|
||||
pacman -Sy reflector
|
||||
reflector -c FR -c DE -c BE -l 200 -p http -p https --sort rate \
|
||||
--save /etc/pacman.d/mirrorlist --verbose
|
||||
reflector -c FR,DE -l 20 -p https --sort rate --save /etc/pacman.d/mirrorlist --verbose
|
||||
#+END_SRC
|
||||
|
||||
This will update the packages from your live ISO, and you will get the best
|
||||
@ -57,10 +43,7 @@ mirrors for your installation. Of course, change the countries accordingly to
|
||||
your location. In my case, I am only interested in French, German, and Belgian
|
||||
mirrors.
|
||||
|
||||
** Install the system
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Install_Arch_Linux-Install_the_system-3ff49aa6
|
||||
:END:
|
||||
*** Install the system
|
||||
Then you can use a custom script to ease your installation of Arch if you do not
|
||||
wish to do it manually. Personally, I’ve done it several times already, I know
|
||||
how the distro works, I just want to be able to install my distro quickly now.
|
||||
@ -85,10 +68,9 @@ which will help us to install some packages later.
|
||||
Once your system is installed, reboot and remove your installation media from
|
||||
your computer.
|
||||
|
||||
* Execute bootstrap
|
||||
** Execute bootstrap
|
||||
:PROPERTIES:
|
||||
:HEADER-ARGS:fish: :tangle ~/.config/yadm/bootstrap :shebang "#!/usr/bin/fish" :exports code :mkdirp yes
|
||||
:CUSTOM_ID: Execute_bootstrap-e37054ef
|
||||
:END:
|
||||
The first thing I will do is add the [[https://aur.chaotic.cx/][Chaotic AUR]] repository to get
|
||||
access to ~paru~ as well as some AUR packages without the need of an AUR
|
||||
@ -113,10 +95,7 @@ yadm clone https://labs.phundrak.com/phundrak/dotfiles
|
||||
|
||||
Let’s take a look at what it does.
|
||||
|
||||
** Decrypt private yadm files
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Decrypt_private_yadm_files-68af7157
|
||||
:END:
|
||||
*** Decrypt private yadm files
|
||||
Some private files are stored encrypted in the repository of my yadm dotfiles. I
|
||||
will need them later on during the bootstrap execution.
|
||||
#+BEGIN_SRC fish
|
||||
@ -127,10 +106,7 @@ else
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
** Get a correct keyboard layout
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Get_a_correct_keyboard_layout-77d24b30
|
||||
:END:
|
||||
*** Get a correct keyboard layout
|
||||
I use mainly the [[https://bepo.fr/wiki/Accueil][bépo]] layout, a French keyboard layout inspired by Dvorak
|
||||
layouts, however I sometimes need to switch back to the standard French AZERTY
|
||||
or the American QWERTY layout, so I make it so the Menu key switches for me my
|
||||
@ -157,10 +133,7 @@ if test $status -eq 0
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
** Set our locale
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Set_our_locale-e74d772a
|
||||
:END:
|
||||
*** Set our locale
|
||||
I use two main locales, the French and US UTF-8 locales, and I like to keep the
|
||||
Japanese locale activated just in case.
|
||||
#+BEGIN_SRC fish
|
||||
@ -205,10 +178,7 @@ printf "\n# Generate locale ####################################################
|
||||
sudo locale-gen
|
||||
#+END_SRC
|
||||
|
||||
** Create some folders
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Create_some_folders-bf701387
|
||||
:END:
|
||||
*** Create some folders
|
||||
Let’s create some folders we might need for mounting our drives, Android devices
|
||||
and CDs.
|
||||
#+BEGIN_SRC fish
|
||||
@ -217,10 +187,7 @@ sudo mkdir -p /mnt/{USB,CD,Android}
|
||||
sudo chown $USER:(id -g $USER) /mnt/{USB,CD,Android}
|
||||
#+END_SRC
|
||||
|
||||
** Set user’s shell to fish
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Set_user’s_shell_to_fish-1a794be2
|
||||
:END:
|
||||
*** Set user’s shell to fish
|
||||
First, the bootstrap shell will set the user’s shell to fish.
|
||||
#+BEGIN_SRC fish
|
||||
printf "\n# Set fish as the default shell ###############################################\n\n"
|
||||
@ -230,10 +197,7 @@ if test $status -eq 0 -a ! "$SHELL" = '/usr/bin/fish'
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
** Install basic packages
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Install_basic_packages-17173316
|
||||
:END:
|
||||
*** Install basic packages
|
||||
Ok, let’s list all the packages that I need. First, let’s begin with
|
||||
system packages.
|
||||
#+name: packages-system
|
||||
@ -529,7 +493,7 @@ them immediately.
|
||||
#+begin_src emacs-lisp :var packages=packages-pkgbuild[,0]
|
||||
(let ((base-dir "~/Documents/code/PKGBUILDs"))
|
||||
(mapconcat (lambda (dir)
|
||||
(format "cd %s && makepkg -si; cd .."
|
||||
(format "cd %s && makepkg -si && cd"
|
||||
(expand-file-name dir base-dir)))
|
||||
packages
|
||||
"\n"))
|
||||
@ -537,16 +501,13 @@ them immediately.
|
||||
|
||||
#+RESULTS[82db1c3f1b9c80b3c24075d1a20933be59baac47]: gen-package-pkgbuild
|
||||
#+begin_src fish :exports none
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/emacs && makepkg -si; cd ..
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/nsxiv && makepkg -si; cd ..
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/pumopm-git && makepkg -si; cd ..
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/sent && makepkg -si; cd ..
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/emacs && makepkg -si && cd
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/nsxiv && makepkg -si && cd
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/pumopm-git && makepkg -si && cd
|
||||
cd /home/phundrak/Documents/code/PKGBUILDs/sent && makepkg -si && cd
|
||||
#+end_src
|
||||
|
||||
** Tangle configuration files from Org files
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Tangle_configuration_files_from_Org_files-cc524361
|
||||
:END:
|
||||
*** Tangle configuration files from Org files
|
||||
Before tangling our configuration files, we need to create some
|
||||
directories first to make sure our files can be properly tangled.
|
||||
Here’s the list of directories we need to create:
|
||||
@ -673,14 +634,8 @@ printf "\n# Tangling org files #################################################
|
||||
<<generate-tangle()>>
|
||||
#+END_SRC
|
||||
|
||||
** Set up dotfiles’ git repository
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Set_up_dotfiles-ab372bd9
|
||||
:END:
|
||||
*** Update our dotfiles’ remotes
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Set_up_dotfiles-Update_our_dotfiles’_remotes-5a0fe6f7
|
||||
:END:
|
||||
*** Set up dotfiles’ git repository
|
||||
**** Update our dotfiles’ remotes
|
||||
This line in the bootstrap script will test if the current user is using my
|
||||
username. If yes, it’s probably me.
|
||||
#+BEGIN_SRC fish
|
||||
@ -705,10 +660,7 @@ Finally, let’s close this ~if~ statement.
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
*** Update our submodules
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Set_up_dotfiles-Update_our_submodules-3e921579
|
||||
:END:
|
||||
**** Update our submodules
|
||||
Now we can download the various dependencies of our dotfiles. To do so, let’s
|
||||
run the following command:
|
||||
#+BEGIN_SRC fish
|
||||
@ -716,17 +668,11 @@ printf "\n# Getting yadm susbmodules ###########################################
|
||||
yadm submodule update --init --recursive
|
||||
#+END_SRC
|
||||
|
||||
** Enable some services
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-3d38d98e
|
||||
:END:
|
||||
*** Enable some services
|
||||
We have installed some packages which require some services to run. Let’s enable
|
||||
them.
|
||||
|
||||
*** Systemd-timesyncd
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Systemd-timesyncd-d887e45b
|
||||
:END:
|
||||
**** Systemd-timesyncd
|
||||
This service enables time syncing with the NTP protocol, so I can be sure my
|
||||
computer’s time is correct. The service first needs to be enabled:
|
||||
#+BEGIN_SRC fish
|
||||
@ -740,10 +686,7 @@ synced.
|
||||
sudo timedatectl set-ntp true
|
||||
#+END_SRC
|
||||
|
||||
*** Acpilight
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Acpilight-39152794
|
||||
:END:
|
||||
**** Acpilight
|
||||
~acpilight~ is our utility managing the brightness of our screen. There
|
||||
is actually no service to enable here, but we must ensure the user is
|
||||
part of the ~video~ group to enable the user modifying the brightness of
|
||||
@ -752,10 +695,7 @@ our screen without using ~sudo~.
|
||||
sudo usermod -aG video $USER
|
||||
#+END_SRC
|
||||
|
||||
*** Docker
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Docker-305e8309
|
||||
:END:
|
||||
**** Docker
|
||||
First, let’s activate Docker on startup.
|
||||
#+BEGIN_SRC fish
|
||||
printf "\n# Enabling and starting Docker ################################################\n\n"
|
||||
@ -771,10 +711,7 @@ if test $adddockergroup = 'y' || test $adddockergroup = "Y" || test $adddockergr
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
*** Emacs
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Emacs-c7785c21
|
||||
:END:
|
||||
**** Emacs
|
||||
Emacs will run as a user service, which means it won’t be launched until we log
|
||||
in. However, the service won’t be started immediately, I personally prefer to
|
||||
start a standalone instance in which installing and compiling the Emacs packages
|
||||
@ -792,10 +729,7 @@ started like so (command not tangled in the bootstrap):
|
||||
systemctl --user start emacs
|
||||
#+end_src
|
||||
|
||||
*** Mpd
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Mpd-f0f5b9b7
|
||||
:END:
|
||||
**** Mpd
|
||||
Mpd will also use as a user service in order to get rid of some lines of code in
|
||||
my configuration.
|
||||
#+BEGIN_SRC fish
|
||||
@ -804,10 +738,7 @@ mkdir -p ~/.config/mpd/playlists
|
||||
systemctl --user enable --now mpd
|
||||
#+END_SRC
|
||||
|
||||
*** NordVPN
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-NordVPN-75c1bd88
|
||||
:END:
|
||||
**** NordVPN
|
||||
Thanks to the AUR package ~nordvpn-bin~, I no longer have to manually maintain
|
||||
my VPN connections with OpenVPN. However, it requires a service that we should
|
||||
activate:
|
||||
@ -855,10 +786,7 @@ nordvpn set notify enabled
|
||||
nordvpn set ipv6 enabled
|
||||
#+end_src
|
||||
|
||||
*** PipeWire
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute-bootstrap-Enable-some-services-PipeWire-sihc11b0mdj0
|
||||
:END:
|
||||
**** PipeWire
|
||||
PipeWire is a replacement for PulseAudio, ALSA and the likes, and it
|
||||
is /*much*/ better in terms of security and performance. However, unlike
|
||||
PulseAudio, Pipewire is a user service that needs to be enabled per
|
||||
@ -881,10 +809,7 @@ noise-canceling source. The same source should be your input device
|
||||
where you want to use your microphone. The only downside is this is
|
||||
ony a mono input, but it shouldn’t matter for most people.
|
||||
|
||||
*** SSH server
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-SSH_server-204f5997
|
||||
:END:
|
||||
**** SSH server
|
||||
Maybe we want to activate an SSH server on our machine. If so, we can enable it.
|
||||
Let’s ask the question.
|
||||
#+BEGIN_SRC fish
|
||||
@ -895,29 +820,20 @@ if test $status -eq 0
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
** Symlink some system config files
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Symlink_some_system_config_files-1dd95175
|
||||
:END:
|
||||
*** Symlink some system config files
|
||||
Let’s symlink the ~plock~ script ([[file:bin.org::#Lock-635fcb38][source here]]) to ~/usr/bin~ so ~xss-lock~
|
||||
can find it.
|
||||
#+BEGIN_SRC fish
|
||||
sudo ln -s ~/.local/bin/plock /usr/bin/plock
|
||||
#+END_SRC
|
||||
|
||||
** Install packages from git
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Install_packages_from_git-7c6a6ea4
|
||||
:END:
|
||||
*** Install packages from git
|
||||
Now, let’s install some packages from git directly.
|
||||
#+BEGIN_SRC fish
|
||||
mkdir -p ~/fromGIT
|
||||
#+END_SRC
|
||||
|
||||
*** Reveal.JS
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Install_packages_from_git-Reveal.JS-bb4da0bf
|
||||
:END:
|
||||
**** Reveal.JS
|
||||
I sometimes use Reveal.JS to make presentations, and I set its
|
||||
location in my [[file:emacs.org][Emacs config]] to be in =~/fromGIT=, so let’s clone it
|
||||
there.
|
||||
@ -927,14 +843,8 @@ cd ~/fromGIT
|
||||
git clone https://github.com/hakimel/reveal.js.git
|
||||
#+END_SRC
|
||||
|
||||
** Install Rust
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Install_Rust-1839c4d0
|
||||
:END:
|
||||
*** Install the toolchains
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Install_Rust-Install_the_toolchains-3480764a
|
||||
:END:
|
||||
*** Install Rust
|
||||
**** Install the toolchains
|
||||
When using Rust, I bounce between two toolchains, the ~stable~ toolchain and the
|
||||
~nightly~ toolchain, although I try to stick with Rust Stable. To install them,
|
||||
I will use ~rustup~ which has already been installed previously.
|
||||
@ -949,15 +859,12 @@ to install the nightly toolchain, let’s run this:
|
||||
rustup toolchain install nightly
|
||||
#+END_SRC
|
||||
|
||||
*** Install some utilities
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Install_Rust-Install_some_utilities-c4a7c785
|
||||
:END:
|
||||
**** Install some utilities
|
||||
We’ll need some utilities when developing Rust from Emacs, namely ~rustfmt~ and
|
||||
~racer~. Let’s install them with ~cargo~.
|
||||
#+BEGIN_SRC fish
|
||||
printf "\n# Add rust utilities ##########################################################\n\n"
|
||||
cargo install rustfmt racer
|
||||
cargo install rustfmt
|
||||
#+END_SRC
|
||||
|
||||
We will also need some components for development purposes.
|
||||
@ -965,7 +872,6 @@ We will also need some components for development purposes.
|
||||
| Component | Why |
|
||||
|-----------+-------------------------------------------|
|
||||
| rust-src | Rust documentation in Emacs |
|
||||
| rls | LSP backend for Emacs |
|
||||
| clippy | A better version of cargo’s ~check~ command |
|
||||
|
||||
#+NAME: rust-components-gen
|
||||
@ -977,7 +883,6 @@ We will also need some components for development purposes.
|
||||
|
||||
#+RESULTS[b3935b1c09d86fe506b43670f52960306a1e9809]: rust-components-gen
|
||||
: rustup component add rust-src
|
||||
: rustup component add rls
|
||||
: rustup component add clippy
|
||||
|
||||
Here is the code to do so:
|
||||
@ -985,38 +890,29 @@ Here is the code to do so:
|
||||
<<rust-components-gen()>>
|
||||
#+END_SRC
|
||||
|
||||
** Set up our fish shell
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Set_up_our_fish_shell-f0741c22
|
||||
:END:
|
||||
*** Set up our fish shell
|
||||
The last thing we want to do is to set up our fish shell with some extensions in
|
||||
order to improve the user experience.
|
||||
|
||||
*** Install ~fisher~
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Set_up_our_fish_shell-Install_=fisher=-3a44531b
|
||||
:END:
|
||||
**** Install ~fisher~
|
||||
We will be using ~fisher~ as our extension manager for Fish. Let’s install it.
|
||||
#+BEGIN_SRC fish
|
||||
printf "\n# Installing fisher ###########################################################\n\n"
|
||||
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher
|
||||
#+END_SRC
|
||||
|
||||
*** Install our extensions
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Execute_bootstrap-Set_up_our_fish_shell-Install_our_extensions-188e4566
|
||||
:END:
|
||||
**** Install our extensions
|
||||
I generally use the following extensions in my Fish shell.
|
||||
#+NAME: fish-extensions-table
|
||||
#+CAPTION: Fish extensions managed by Fisher
|
||||
| Package name | Description |
|
||||
|-----------------------------+------------------------------------------------------------------|
|
||||
| decors/fish-colored-man | Color man pages to make them more readable |
|
||||
| franciscolourenco/done | Automatically receive notifications when a long process finishes |
|
||||
| jethrokuan/fzf | Improved key bindings for [[https://github.com/junegunn/fzf][junegunn/fzf]] |
|
||||
| jorgebucaran/fish-bax | Run bash scripts, replaying environment changes in fish |
|
||||
| jorgebucaran/fish-getopts | CLI options parser; alternative to the [[https://fishshell.com/docs/current/commands.html#argparse][argparse]] fish builtin |
|
||||
| laughedelic/pisces | Autoclose parentheses, braces, quotes and other paired symbols |
|
||||
| Package name | Description |
|
||||
|---------------------------+------------------------------------------------------------------|
|
||||
| decors/fish-colored-man | Color man pages to make them more readable |
|
||||
| franciscolourenco/done | Automatically receive notifications when a long process finishes |
|
||||
| jethrokuan/fzf | Improved key bindings for [[https://github.com/junegunn/fzf][junegunn/fzf]] |
|
||||
| jorgebucaran/fish-bax | Run bash scripts, replaying environment changes in fish |
|
||||
| jorgebucaran/fish-getopts | CLI options parser; alternative to the [[https://fishshell.com/docs/current/commands.html#argparse][argparse]] fish builtin |
|
||||
| laughedelic/pisces | Autoclose parentheses, braces, quotes and other paired symbols |
|
||||
|
||||
#+NAME: fish-extensions-gen
|
||||
#+BEGIN_SRC emacs-lisp :var extensions=fish-extensions-table[,0]
|
@ -1,16 +1,9 @@
|
||||
#+title: AwesomeWM configuration
|
||||
#+title: AwesomeWM
|
||||
#+setupfile: ../headers
|
||||
#+OPTIONS: unique-id:t
|
||||
#+HTML_HEAD_EXTRA: <meta name="description" content="Phundrak's AwesomeWM config" />
|
||||
#+HTML_HEAD_EXTRA: <meta property="og:title" content="Phundrak's AwesomeWM config" />
|
||||
#+HTML_HEAD_EXTRA: <meta property="og:description" content="Description of the AwesomeWM config file of Phundrak" />
|
||||
#+PROPERTY: header-args :noweb yes :tangle no :exports none
|
||||
#+PROPERTY: header-args:lua :tangle ~/.config/awesome/rc.lua :exports code :noweb yes :mkdirp yes
|
||||
|
||||
* Introduction
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Introduction-4c41360e
|
||||
:END:
|
||||
* AwesomeWM
|
||||
From the Arch Wiki: awesome is a highly configurable, next generation framework
|
||||
window manager for Xorg. It is very fast and extensible. It is primarily
|
||||
targeted at power users, developers and any people dealing with every day
|
||||
@ -26,10 +19,7 @@ This document was written in Emacs with Org-mode and is both the documentation
|
||||
and source code of my configuration file which can be extracted to
|
||||
~$HOME/.config/awesome/rc.lua~ through a call to ~org-babel-tangle~.
|
||||
|
||||
* Launching Awesome
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Launching-Awesome-lavgvvz00bj0
|
||||
:END:
|
||||
** Launching Awesome
|
||||
In order to launch Awesome with ~startx~, I need a ~xinit~-compatible
|
||||
script. Here is my ~$HOME/.xinitrc.awesome~ file:
|
||||
#+begin_src sh :tangle ~/.xinitrc.awesome
|
||||
@ -37,10 +27,7 @@ xhost +
|
||||
exec awesome
|
||||
#+end_src
|
||||
|
||||
* Loading libraries
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Loading_libraries-4df76999
|
||||
:END:
|
||||
** Loading libraries
|
||||
First of all, some initialization is needed, and this initialization is about
|
||||
math randomness. So, let’s initialize the ~random~ method of the ~math~ library:
|
||||
#+BEGIN_SRC lua
|
||||
@ -105,10 +92,7 @@ By the way, let’s initialize the ~random~ method of the ~math~ library:
|
||||
math.randomseed(os.time())
|
||||
#+END_SRC
|
||||
|
||||
* Error handling
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Error_handling-f6a6668f
|
||||
:END:
|
||||
** Error handling
|
||||
This code checks if Awesome encountered an error during startup and fell back to
|
||||
another config. This code will only ever execute for the fallback config.
|
||||
#+BEGIN_SRC lua
|
||||
@ -136,14 +120,8 @@ do
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
* Variable definitions
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Variable_definitions-06b2bcbf
|
||||
:END:
|
||||
** Themes
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Variable_definitions-Themes-591886b4
|
||||
:END:
|
||||
** Variable definitions
|
||||
*** Themes
|
||||
With Awesome, it is possible to load or write custom themes in order to give
|
||||
Awesome a special look that fits the user. I am currently using a custom theme
|
||||
that is not yet included in my dotfiles. I will add it later, along with the
|
||||
@ -152,10 +130,7 @@ images used for the theme.
|
||||
beautiful.init("/home/phundrak/.config/awesome/nord/theme.lua")
|
||||
#+END_SRC
|
||||
|
||||
** Default terminal and text editor
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Variable_definitions-Default_terminal_and_text_editor-44b84e20
|
||||
:END:
|
||||
*** Default terminal and text editor
|
||||
The two following variables are set so that I don’t need to go over my whole
|
||||
config file in order to modify which terminal or text editor I use, not that I
|
||||
do it often though.
|
||||
@ -164,10 +139,7 @@ terminal = "kitty"
|
||||
editor = os.getenv("EDITOR") or "emacsclient -c -a emacs"
|
||||
#+END_SRC
|
||||
|
||||
** Keys
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Variable_definitions-Keys-b8def4ac
|
||||
:END:
|
||||
*** Keys
|
||||
The following declares the default Modkey. Usually, ~Mod4~ is the Super key,
|
||||
situated between the Ctrl key and the Alt key with a logo (usually Windows’).
|
||||
Another usual value for this is ~Mod1~, which is the Alt key, but it has greater
|
||||
@ -181,20 +153,11 @@ meta = "Mod1"
|
||||
alt = "Mod1" -- Just in case
|
||||
#+END_SRC
|
||||
|
||||
* Custom functions
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Custom_functions-ed54dbe2
|
||||
:END:
|
||||
** Wallpaper-related functions
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Custom_functions-Wallpaper-related_functions-5912f7dd
|
||||
:END:
|
||||
*** Set a random wallpaper
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Custom_functions-Wallpaper-related_functions-Set_a_random_wallpaper-104bbeec
|
||||
:END:
|
||||
** Custom functions
|
||||
*** Wallpaper-related functions
|
||||
**** Set a random wallpaper
|
||||
This function sets a random wallpaper from the directory
|
||||
=~/Pictures/Wallpapers=, see [[file:bin.org::#pape-update-bdecbadf][pape-update]] in my custom scripts.
|
||||
=~/Pictures/Wallpapers=, see [[file:../scripts.md#pape-update][pape-update]] in my custom scripts.
|
||||
#+BEGIN_SRC lua
|
||||
local function set_random_pape()
|
||||
awful.spawn.with_shell("pape-update")
|
||||
@ -204,10 +167,7 @@ local function set_random_pape()
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
*** Restore previous wallpaper
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Custom_functions-Wallpaper-related_functions-Restore_previous_wallpaper-8b5bc08c
|
||||
:END:
|
||||
**** Restore previous wallpaper
|
||||
I also wrote the following function that will restore the previously set
|
||||
wallpaper:
|
||||
#+BEGIN_SRC lua
|
||||
@ -216,12 +176,8 @@ local function set_wallpaper(_)
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
** Layout manipulation
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Custom_functions-Layout_manipulation-6bc7db06
|
||||
:END:
|
||||
The following function is used by a shortcut described below in
|
||||
[[#Keybindings-Clients-f9f96d60]].
|
||||
*** Layout manipulation
|
||||
The following function is used by a shortcut described below in [[file:./awesome.md#clients][Keybindings: Clients]].
|
||||
#+BEGIN_SRC lua
|
||||
local function client_go_back()
|
||||
awful.client.focus.history.previous()
|
||||
@ -231,10 +187,7 @@ local function client_go_back()
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
** Clients manipulation
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Custom_functions-Clients_manipulation-7e958fed
|
||||
:END:
|
||||
*** Clients manipulation
|
||||
#+BEGIN_SRC lua
|
||||
local function restore_minimized_clients()
|
||||
local c = awful.client.restore()
|
||||
@ -275,10 +228,7 @@ local function toggle_horizontal_maximized(c)
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
** Tag manipulation
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Custom_functions-Tag_manipulation-5fc67669
|
||||
:END:
|
||||
*** Tag manipulation
|
||||
#+BEGIN_SRC lua
|
||||
local function view_tag_n(i)
|
||||
local screen = awful.screen.focused()
|
||||
@ -321,10 +271,7 @@ local function toggle_focused_client_to_tag_n(i)
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
** Awesome prompt
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Custom_functions-Awesome_prompt-de4fde50
|
||||
:END:
|
||||
*** Awesome prompt
|
||||
#+BEGIN_SRC lua
|
||||
local function invoke_lua_execute_prompt()
|
||||
awful.prompt.run {
|
||||
@ -336,10 +283,7 @@ local function invoke_lua_execute_prompt()
|
||||
end
|
||||
#+END_SRC
|
||||
|
||||
* Layouts
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Layouts-be55a7fd
|
||||
:END:
|
||||
** Layouts
|
||||
The following is a list of available windows layouts. I only enable some of
|
||||
them, and their order in the table is their order in Awesome.
|
||||
#+NAME: table-layouts
|
||||
@ -396,18 +340,12 @@ awful.layout.layouts = {
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
* Top bar
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Top_bar-d3117294
|
||||
:END:
|
||||
** Top bar
|
||||
The top bar in Awesome is declared thanks to a ~wibar~ widget fro the ~awful~
|
||||
library. It is comprised of several buttons and widgets that will be declared
|
||||
below.
|
||||
|
||||
** Menus
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Top_bar-Menus-cf468ca8
|
||||
:END:
|
||||
*** Menus
|
||||
#+NAME: make-menu
|
||||
#+BEGIN_SRC emacs-lisp :var menu=table-main-menu
|
||||
(mapconcat (lambda (item)
|
||||
@ -467,10 +405,7 @@ Finally, let’s declare the menubar’s terminal for applications that require
|
||||
menubar.utils.terminal = terminal
|
||||
#+END_SRC
|
||||
|
||||
** Widgets
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Top_bar-Widgets-0b255378
|
||||
:END:
|
||||
*** Widgets
|
||||
Let’s declare the keyboard map indicator and switcher for the top bar:
|
||||
#+BEGIN_SRC lua
|
||||
keyboardlayout = awful.widget.keyboardlayout()
|
||||
@ -481,10 +416,7 @@ Let’s also create a clock widget:
|
||||
textclock = wibox.widget.textclock()
|
||||
#+END_SRC
|
||||
|
||||
** Tag list
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Top_bar-Tag_list-d43dbb62
|
||||
:END:
|
||||
*** Tag list
|
||||
In order to create the taglist (an equivalent to workspaces, but better), we
|
||||
need to create first a local variable that will hold the widget. It will be
|
||||
declared as you can see below:
|
||||
@ -564,10 +496,7 @@ local taglist_buttons = gears.table.join(
|
||||
)
|
||||
#+END_SRC
|
||||
|
||||
** Tasks list
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Top_bar-Tasks_list-fb7c9b20
|
||||
:END:
|
||||
*** Tasks list
|
||||
Similarly to the tag list, the task list can display some special behavior
|
||||
depending on the clicks it receives. These clicks are set like so:
|
||||
#+BEGIN_SRC lua :tangle no
|
||||
@ -631,19 +560,14 @@ local tasklist_buttons = gears.table.join(
|
||||
)
|
||||
#+END_SRC
|
||||
|
||||
* Theme and display
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Theme_and_display-6f94bad4
|
||||
:END:
|
||||
** Screen update
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Theme_and_display-Screen_update-e162a27a
|
||||
:END:
|
||||
When a screen’s geometry changes (e.g. when a different resolution is applied),
|
||||
the signal ~property::geometry~ is sent. When this is the case, the wallpaper
|
||||
should be redisplayed since it won’t necessarily fit the new geometry of the
|
||||
screen. And remember, I have a [[#Custom_functions-Wallpaper-related_functions-Restore_previous_wallpaper-8b5bc08c][function that does exactly that]]! Let’s connect
|
||||
this function to the geometry change signal:
|
||||
** Theme and display
|
||||
*** Screen update
|
||||
When a screen’s geometry changes (e.g. when a different resolution is
|
||||
applied), the signal ~property::geometry~ is sent. When this is the
|
||||
case, the wallpaper should be redisplayed since it won’t necessarily
|
||||
fit the new geometry of the screen. And remember, I have a [[file:./awesome.md#restore-previous-wallpaper][function
|
||||
that does exactly that]]! Let’s connect this function to the geometry
|
||||
change signal:
|
||||
#+BEGIN_SRC lua
|
||||
screen.connect_signal("property::geometry", set_wallpaper)
|
||||
#+END_SRC
|
||||
@ -675,8 +599,9 @@ awful.tag({ "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }, s, awful.layout.
|
||||
#+END_SRC
|
||||
|
||||
Next, let’s create the taglist widget. It will use the ~taglist_buttons~
|
||||
[[#Top_bar-Tag_list-d43dbb62][declared above]] in order to handle clicks on tags, and due to the filter, all
|
||||
tags will be displayed in the tagbar ([[https://awesomewm.org/apidoc/widgets/awful.widget.taglist.html#List_filters][more about tag filters]]).
|
||||
[[file:./awesome.md#tag-list][declared above]] in order to handle clicks on tags, and due to the
|
||||
filter, all tags will be displayed in the tagbar ([[https://awesomewm.org/apidoc/widgets/awful.widget.taglist.html#List_filters][more about tag
|
||||
filters]]).
|
||||
#+NAME: screen-taglist-widget
|
||||
#+BEGIN_SRC lua :tangle no
|
||||
s.taglist = awful.widget.taglist {
|
||||
@ -686,10 +611,10 @@ s.taglist = awful.widget.taglist {
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
A tasklist widget will also get created thanks with the ~tasklist_button~
|
||||
[[#Top_bar-Tag_list-d43dbb62][declared above]] that will handle clicks on tasks. Contrarily to the taglist
|
||||
widget above, the tasklist will only display the screen’s current tags thanks to
|
||||
its filter.
|
||||
A tasklist widget will also get created thanks with the
|
||||
~tasklist_button~ [[file:./awesome.md#tasks-list][declared above]] that will handle clicks on tasks.
|
||||
Contrarily to the taglist widget above, the tasklist will only display
|
||||
the screen’s current tags thanks to its filter.
|
||||
#+NAME: screen-tasklist-widget
|
||||
#+BEGIN_SRC lua :tangle no
|
||||
s.tasklist = awful.widget.tasklist {
|
||||
@ -765,10 +690,7 @@ awful.screen.connect_for_each_screen(function(s)
|
||||
end)
|
||||
#+END_SRC
|
||||
|
||||
* Mouse bindings
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Mouse_bindings-eb4a69a8
|
||||
:END:
|
||||
** Mouse bindings
|
||||
It is possible with Awesome to bind some shortcuts to mouse events when the
|
||||
mouse is above Awesome itself (not above some client). Only one is set: the
|
||||
right click opens the Awesome menu.
|
||||
@ -808,10 +730,7 @@ clientbuttons = gears.table.join(
|
||||
)
|
||||
#+END_SRC
|
||||
|
||||
* Keybindings
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-a4e415b3
|
||||
:END:
|
||||
** Keybindings
|
||||
Keybindings allow the user to execute some Lua code all across Awesome. They all
|
||||
bear at least a list of modifier keys, the actual key to be pressed, the action
|
||||
they keybinding should yield, a description, and a group. The latter two will be
|
||||
@ -950,10 +869,7 @@ clientkeys = gears.table.join(
|
||||
)
|
||||
#+END_SRC
|
||||
|
||||
** Applications
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Applications-8321c6c9
|
||||
:END:
|
||||
*** Applications
|
||||
#+NAME: sc-app
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
|--------+-----------+---------+-----------------------+-------------------+-------|
|
||||
@ -961,20 +877,14 @@ clientkeys = gears.table.join(
|
||||
| n | modkey | spawn | nemo | open file manager | app |
|
||||
| g | modkey | spawn | gimp | open GIMP | app |
|
||||
|
||||
*** Internet apps
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Applications-Internet_apps-87e80705
|
||||
:END:
|
||||
**** Internet apps
|
||||
#+NAME: sc-app-internet
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
|-----+----------------+---------+-----------------------------------+--------------------+----------|
|
||||
| b | modkey | yes | awful.spawn(os.getenv("BROWSER")) | invoke web browser | internet |
|
||||
| d | control, shift | spawn | lightcord | launch Discord | internet |
|
||||
|
||||
*** Screenshots
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Applications-Screenshots-fa63a5a5
|
||||
:END:
|
||||
**** Screenshots
|
||||
#+NAME: sc-app-screenshot
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
|-------+-----------+---------+----------------------------------------------+-----------------------------+------------|
|
||||
@ -982,20 +892,14 @@ clientkeys = gears.table.join(
|
||||
| Print | control | spawn | scrot -s -e 'mv $f ~/Pictures/Screenshots' | Screenshot (area selection) | screenshot |
|
||||
| Print | shift | spawn | scrot -d 3 -e 'mv $f ~/Pictures/Screenshots' | Screenshot (3s delay) | screenshot |
|
||||
|
||||
*** Emacs
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Applications-Emacs-95f8f6a4
|
||||
:END:
|
||||
**** Emacs
|
||||
#+NAME: sc-app-emacs
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
|-----+---------------+---------+-------------------+----------------------+-------|
|
||||
| e | modkey | spawn | emacsclient -c -n | invoke Spacemacs | emacs |
|
||||
| e | modkey, shift | spawn | emacs | invoke Vanilla Emacs | emacs |
|
||||
|
||||
*** Rofi
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Applications-Rofi-ca998c87
|
||||
:END:
|
||||
**** Rofi
|
||||
#+NAME: sc-app-rofi
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
|-----+------------------------+---------+------------------------------------------+---------------------------------+-------|
|
||||
@ -1011,10 +915,7 @@ clientkeys = gears.table.join(
|
||||
| y | modkey | shell | ytplay | play web video in mpv | rofi |
|
||||
| y | modkey, shift | shell | rofi-ytdl | download video from web | rofi |
|
||||
|
||||
** Awesome
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Awesome-7b691e10
|
||||
:END:
|
||||
*** Awesome
|
||||
Here will be declared some shortcuts directly related to Awesome itself.
|
||||
#+NAME: sc-awesome
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
@ -1031,10 +932,7 @@ Here will be declared some shortcuts directly related to Awesome itself.
|
||||
| F4 | modkey, shift | spawn | systemctl suspend | suspend to RAM computer | awesome |
|
||||
| F4 | modkey, shift, control | spawn | poweroff | power off computer | awesome |
|
||||
|
||||
** Clients
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Clients-f9f96d60
|
||||
:END:
|
||||
*** Clients
|
||||
These shortcuts are related to clients (aka windows) management.
|
||||
#+NAME: sc-client
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group | Clientkey? |
|
||||
@ -1058,10 +956,7 @@ These shortcuts are related to clients (aka windows) management.
|
||||
| f | modkey, control | no | awful.client.floating.toggle | toggle floating | client | yes |
|
||||
| Tab | modkey | no | client_go_back | go back | client | no |
|
||||
|
||||
** Layout manipulation
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Layout_manipulation-648b4581
|
||||
:END:
|
||||
*** Layout manipulation
|
||||
#+NAME: sc-layout
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
|-------+-----------------+---------+-------------------------------------+-----------------------------------+--------|
|
||||
@ -1074,10 +969,7 @@ These shortcuts are related to clients (aka windows) management.
|
||||
| space | modkey | yes | awful.layout.inc(1) | next layout | layout |
|
||||
| space | modkey, meta | yes | awful.layout.inc(-1) | previous layout | layout |
|
||||
|
||||
** Media
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Media-f2cc1324
|
||||
:END:
|
||||
*** Media
|
||||
#+NAME: sc-media
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
|----------------------+-----------------+----------+---------------------------------+--------------------------+-------|
|
||||
@ -1103,10 +995,7 @@ These shortcuts are related to clients (aka windows) management.
|
||||
| XF86AudioPlay | meta | shell | mpc stop | stop playback | media |
|
||||
| p | modkey, meta | shell | mpc stop | stop playback | media |
|
||||
|
||||
** Screen
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Screen-b73991f0
|
||||
:END:
|
||||
*** Screen
|
||||
#+NAME: sc-screen
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
|-----------------------+--------------+---------+---------------------------------+----------------------------+--------|
|
||||
@ -1119,10 +1008,7 @@ These shortcuts are related to clients (aka windows) management.
|
||||
| F3 | modkey | spawn | arandr | randr graphical frontend | screen |
|
||||
| o | modkey | yes | awful.screen.focus_relative(1) | focus next screen | screen |
|
||||
|
||||
** Tags
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Tags-3424b757
|
||||
:END:
|
||||
*** Tags
|
||||
#+NAME: sc-tag
|
||||
| Key | Modifiers | Lambda? | Action | What it does | Group |
|
||||
|--------+-----------------+---------+---------------------------+--------------+-------|
|
||||
@ -1141,10 +1027,7 @@ displayed as ~0~). Here is what the possible actions are:
|
||||
| Number | modkey, shift | move_focused_to_tag_n( | move focused client to tag # | tag |
|
||||
| Number | modkey, control, shift | toggle_focused_client_to_tag_n( | Toggle focused client on tag # | tag |
|
||||
|
||||
** Misc
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Keybindings-Misc-0b45ce02
|
||||
:END:
|
||||
*** Misc
|
||||
In this category you will find other keybindings that do not fit in other
|
||||
categories. For now, the only keybinding that is in this category is for
|
||||
toggling the touchpad’s tapping ability. This is linked to a special script I
|
||||
@ -1154,10 +1037,7 @@ wrote [[file:bin.org::#Toggle_touchpad_tapping-23348b00][here]].
|
||||
|--------------------+-----------+---------+-----------+-------------------------+-------|
|
||||
| XF86TouchpadToggle | | shell | tttapping | toggle touchpad tapping | misc |
|
||||
|
||||
* Rules
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Rules-c6142cdf
|
||||
:END:
|
||||
** Rules
|
||||
With ~awful.rules~, users are able to describe some rules for window clients
|
||||
when the latter spawn, such as their placement, their properties or even execute
|
||||
a script. A rule can be applied through the ~manage~ signal, and they are all
|
||||
@ -1181,10 +1061,7 @@ awful.rules.rules = {
|
||||
For more documentation on rules and their syntax, you can read the [[https://awesomewm.org/doc/api/libraries/awful.rules.html][official
|
||||
documentation]].
|
||||
|
||||
** Universal rules
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Rules-Universal_rules-50aad2ce
|
||||
:END:
|
||||
*** Universal rules
|
||||
The first rule is a universal rule which will match all clients, as you can see
|
||||
with its syntax below:
|
||||
#+BEGIN_SRC lua :tangle no
|
||||
@ -1205,7 +1082,7 @@ short explanation as to what they do.
|
||||
| focus | awful.client.focus.filter | Set focus on the new window, except filtered out windows |
|
||||
| raise | true | Set it as raised window |
|
||||
| keys | clientkeys | Set the client’s shortcuts set in [[*Clients][Shortcuts/Clients]] |
|
||||
| buttons | clientbuttons | Set the client’s mouse shortcuts from [[#Mouse_bindings-eb4a69a8][Mouse bindings]] |
|
||||
| buttons | clientbuttons | Set the client’s mouse shortcuts from [[file:./awesome.md#mouse-bindings][Mouse bindings]] |
|
||||
| screen | awful.screen.preferred | Spawn the client on the main screen |
|
||||
| placement | awful.placement.no_overlap+awful.placement.no_offscreen | Avoid the client to appear off the screen and overlaping another client |
|
||||
| round_corners | true | Enable rounded corners for client |
|
||||
@ -1241,10 +1118,7 @@ This is what my universal rules look like:
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
** Floating clients
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Rules-Floating_clients-49ab582e
|
||||
:END:
|
||||
*** Floating clients
|
||||
Some clients will be declared by default as floating windows. For this, we will
|
||||
declare a rule that will match any of the provided conditions:
|
||||
#+NAME: rules-floating-conditions-table
|
||||
@ -1282,10 +1156,7 @@ as you can see below:
|
||||
}, properties = { floating = true }}
|
||||
#+END_SRC
|
||||
|
||||
** Titlebars
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Rules-Titlebars-b532fdba
|
||||
:END:
|
||||
*** Titlebars
|
||||
Any normal or dialog client will get a titlebar. This is enabled like so:
|
||||
#+NAME: rules-titlebars
|
||||
#+BEGIN_SRC lua :tangle no
|
||||
@ -1294,10 +1165,7 @@ Any normal or dialog client will get a titlebar. This is enabled like so:
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
** Default tag for clients
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Rules-Default_tag_for_clients-6ded2a47
|
||||
:END:
|
||||
*** Default tag for clients
|
||||
With the use of some rules, it is possible to define which client are assigned
|
||||
to which tag by default.
|
||||
#+NAME: rules-default-tags-table
|
||||
@ -1339,17 +1207,11 @@ This is what these rules look like:
|
||||
<<rules-default-tags-generate()>>
|
||||
#+END_SRC
|
||||
|
||||
* Signals
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Signals-e32971d6
|
||||
:END:
|
||||
** Signals
|
||||
Signals are a way for Awesome to handle events, such as client creation or
|
||||
deletion.
|
||||
|
||||
** Client creation
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Signals-Client_creation-8048ac12
|
||||
:END:
|
||||
*** Client creation
|
||||
When a new client is created, the ~manage~ signal is emited. When so, the
|
||||
following snippet ensures this new client is not off the screen, unless its
|
||||
position was deliberately set by a program or by the user. It will also spawn
|
||||
@ -1365,13 +1227,10 @@ client.connect_signal("manage", function (c)
|
||||
end)
|
||||
#+END_SRC
|
||||
|
||||
** Titlebar creation
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Signals-Titlebar_creation-3b1aaa14
|
||||
:END:
|
||||
*** Titlebar creation
|
||||
It is possible for Awesome to send request signals, such as the request to
|
||||
create titlebar (generally for new clients). The following snippet handles this
|
||||
titlebar creation if titlebar creation was set to ~true~ in the [[#Rules-c6142cdf][rules]]. For a
|
||||
titlebar creation if titlebar creation was set to ~true~ in the [[file:./awesome.md#rules][rules]]. For a
|
||||
detailed explanation of the code, see below.
|
||||
#+BEGIN_SRC lua
|
||||
client.connect_signal("request::titlebars", function(c)
|
||||
@ -1461,10 +1320,7 @@ layout = wibox.layout.align.vertical,
|
||||
position = "left"
|
||||
#+END_SRC
|
||||
|
||||
** Changes of focus
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Signals-Changes_of_focus-1b73902c
|
||||
:END:
|
||||
*** Changes of focus
|
||||
The default Awesome configuration enables the following snippet of code that
|
||||
makes windows hovered by the user’s mouse focused. Just for completeness’ sake,
|
||||
I included it in this document, but be aware this won’t be tangled into my
|
||||
@ -1484,10 +1340,7 @@ client.connect_signal("focus", function(c) c.border_color = beautiful.border_foc
|
||||
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
|
||||
#+end_SRC
|
||||
|
||||
* Autostart
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Autostart-f2cf42fe
|
||||
:END:
|
||||
** Autostart
|
||||
By simply adding a line requesting to spawn a command, it is possible to create
|
||||
some autolaunch. All of my autolaunched apps are launch through a custom script
|
||||
which you can [[file:~/org/config/bin.org::#Autostart-a99e99e7][find here]]. The command gets called with
|
||||
@ -1496,18 +1349,9 @@ which you can [[file:~/org/config/bin.org::#Autostart-a99e99e7][find here]]. The
|
||||
awful.spawn.with_shell("autostart")
|
||||
#+END_SRC
|
||||
|
||||
* What to do now :noexport:
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: What_to_do_now-bce61fe1
|
||||
:END:
|
||||
** DONE Error on S-q
|
||||
** What to do now :noexport:
|
||||
*** DONE Error on S-q
|
||||
CLOSED: [2020-04-12 dim. 15:47]
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: What_to_do_now-Error_on_S-q-beea9b99
|
||||
:END:
|
||||
~attempt to index a nil value (global 'c')~
|
||||
|
||||
** TODO Make custom theme
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: What_to_do_now-Make_custom_theme-5837307e
|
||||
:END:
|
||||
*** TODO Make custom theme
|
@ -1,16 +1,9 @@
|
||||
#+TITLE: i3 config
|
||||
#+TITLE: i3
|
||||
#+setupfile: ../headers
|
||||
#+OPTIONS: unique-id:t
|
||||
#+HTML_HEAD_EXTRA: <meta name="description" content="Phundrak's i3 config" />
|
||||
#+HTML_HEAD_EXTRA: <meta property="og:title" content="Phundrak's i3 config" />
|
||||
#+HTML_HEAD_EXTRA: <meta property="og:description" content="Description of the i3 config file of Phundrak" />
|
||||
#+PROPERTY: header-args :noweb yes :exports code :tangle ~/.config/i3/config
|
||||
#+PROPERTY: header-args:emacs-lisp :exports none :tangle no
|
||||
|
||||
* Presentation
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Presentation-9c7a53bf
|
||||
:END:
|
||||
* i3
|
||||
#+begin_center
|
||||
*Before proceeding, be aware that I deprecated this i3 config on August 22nd, 2020, meaning I won’t update it anymore unless I use it again some day in the future. I will keep it on my website though.*
|
||||
#+end_center
|
||||
@ -23,10 +16,7 @@ It is to be noted I am using [[https://github.com/Airblader/i3][Airblader’s fo
|
||||
# -*- mode: conf -*-
|
||||
#+END_SRC
|
||||
|
||||
* Screenshots
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Screenshots-51f1cef3
|
||||
:END:
|
||||
** Screenshots
|
||||
#+CAPTION: Desktop with Neofetch in the terminal
|
||||
[[./img/neofetch.png.webp]]
|
||||
|
||||
@ -36,14 +26,8 @@ It is to be noted I am using [[https://github.com/Airblader/i3][Airblader’s fo
|
||||
#+CAPTION: Desktop with Rofi
|
||||
[[./img/rofi.png.webp]]
|
||||
|
||||
* Variables declaration
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Variables_declaration-0ebc9a21
|
||||
:END:
|
||||
** Global
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Variables_declaration-Global-1cf1bfe4
|
||||
:END:
|
||||
** Variables declaration
|
||||
*** Global
|
||||
The first I do is declaring the modifier key and the alt key —I don’t find the names =Mod1= and =Mod4= to be explicit enough. This will map =$mod= to the Super key (or as some people unfortunately call it, the /Windows/ key) and =$alt= to the Alt key.
|
||||
|
||||
Let’s also bind the =$up=, =$down=, =$left= and =$right= variables to respectively the up, down, left, and right arrows on the keyboard. Why bind them to variables? If I ever want to modify the arrow keys to some other keys, like =é=, =a=, =u=, and =i= (the equivalent of =wqsd= on the bépo layout) or =c=, =t=, =s=, and =r= (the equivalent of =hjkl= on the bépo layout), I will just have to modify these four lines.
|
||||
@ -119,10 +103,7 @@ Now comes the font for the window tiles. Honestly, this setting is useless since
|
||||
font Fira Sans Book:style=Book:pixelsize=10
|
||||
#+END_SRC
|
||||
|
||||
** Floating windows
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Variables_declaration-Floating_windows-897d0c3b
|
||||
:END:
|
||||
*** Floating windows
|
||||
Floating windows are windows that are not tiled with other windows, but rather are free to go anywhere on your screen, with any size. A bit like what you would get with any other non-tiling window manager or desktop environment (though most of them support minimal tiling features).
|
||||
|
||||
Let’s declare our floading modyfier. With floating windows, you can move them around by clicking on the window’s borders; but since we don’t have any with this config, we will have instead to press the floating modifier while clicking on the window (anywhere on the window is fine) to move them around.
|
||||
@ -132,16 +113,10 @@ Here is the configuration:
|
||||
floating_modifier $mod
|
||||
#+END_SRC
|
||||
|
||||
* i3 global settings
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: i3_global_settings-1b863d93
|
||||
:END:
|
||||
** i3 global settings
|
||||
Some settings affect i3 globally, such as its aspect or how it handles the mouse. Hence, here are some settings I set in my configuration.
|
||||
|
||||
** Mouse settings
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: i3_global_settings-Mouse_settings-4630241d
|
||||
:END:
|
||||
*** Mouse settings
|
||||
First of all, I do not want i3 to warp my mouse each time I change windows; my mouse stays where it is.
|
||||
#+BEGIN_SRC conf
|
||||
mouse_warping none
|
||||
@ -152,28 +127,19 @@ I also to not want the window focus to follow my mouse, because sometimes I will
|
||||
focus_follows_mouse no
|
||||
#+END_SRC
|
||||
|
||||
** Popup handling
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: i3_global_settings-Popup_handling-51b6ed8d
|
||||
:END:
|
||||
*** Popup handling
|
||||
While in fullscreen, some software might generate a popup. In that case, I want to be aware of that, and any popup will make me leave fullscreen in order to be presented with said popup.
|
||||
#+BEGIN_SRC conf
|
||||
popup_during_fullscreen leave_fullscreen
|
||||
#+END_SRC
|
||||
|
||||
** Behavior of workspace changes
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: i3_global_settings-Behavior_of_workspace_changes-00202985
|
||||
:END:
|
||||
*** Behavior of workspace changes
|
||||
When changing workspace as described below, we often want to go back to the previous workspace we were working on, but we might not remember immediately which one it was, or we might still have our fingers ready to fire the shortcut which made us make the first workspace change. Hence, if we type the same workspace change shortcut, instead of doing nothing it will bring us back to the previous workspace we were on.
|
||||
#+BEGIN_SRC conf
|
||||
workspace_auto_back_and_forth yes
|
||||
#+END_SRC
|
||||
|
||||
** Gaps and window appearance
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: i3_global_settings-Gaps_and_window_appearance-749e9f7b
|
||||
:END:
|
||||
*** Gaps and window appearance
|
||||
As mentioned in at the beginning of this document, I am using i3-gaps, which brings spacing (gaps) between windows to i3.
|
||||
|
||||
First, I want space around my windows only when there are several containers on the same screen, otherwise they will be maximized.
|
||||
@ -210,10 +176,7 @@ Some parameters are also available when it comes to the colors i3 uses. Honestly
|
||||
client.placeholder $bg $bg $fg $bg $bg
|
||||
#+END_SRC
|
||||
|
||||
* Assigning windows to workspaces
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Assigning_windows_to_workspaces-e59f61e5
|
||||
:END:
|
||||
** Assigning windows to workspaces
|
||||
I decided to bind some windows to some workspaces in order to have a better organization of my desktop.
|
||||
#+NAME: assignment-table
|
||||
| Application | Class | Workspace |
|
||||
@ -269,10 +232,7 @@ Now I’ll call the above code as a noweb reference that should be executed.
|
||||
<<ws10-output-edp1()>>
|
||||
#+END_SRC
|
||||
|
||||
* Shortcuts
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-9c7074d3
|
||||
:END:
|
||||
** Shortcuts
|
||||
I use *A LOT* of shortcuts when it comes to my workflow. Like, all the time. So, expect this chapter to be a bit long, and I’ll try to make it readable still.
|
||||
|
||||
Shortcuts are set like so:
|
||||
@ -287,10 +247,7 @@ bindsym shortcut command
|
||||
"\n")
|
||||
#+END_SRC
|
||||
|
||||
** Terminal shortcuts
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Terminal_shortcuts-514ecdbe
|
||||
:END:
|
||||
*** Terminal shortcuts
|
||||
I have a couple of shortcuts which are related to my terminal. For instance, ~$mod+Return~ opens a regular terminal instance while ~$mod+$alt+M~ opens an SSH instance on my Mila host.
|
||||
#+NAME: terminal-shortcuts
|
||||
| shortcut | command | What it does |
|
||||
@ -300,17 +257,14 @@ I have a couple of shortcuts which are related to my terminal. For instance, ~$m
|
||||
| $mod+Shift+Return | split v;; exec $term | Opens a terminal on the right of the current one |
|
||||
| $mod+$alt+m | exec $term ssh Mila | Opens an SSH instance in my Mila host |
|
||||
| $mod+$alt+n | exec $term ssh Naro | Opens an SSH instance in my Naro host |
|
||||
| $mod+Shift+h | exec $term htop | Opens a terminal with ~htop~ |
|
||||
| $mod+Shift+h | exec $term htop | Opens a terminal with ~htop~ |
|
||||
|
||||
Here is the configuration:
|
||||
#+BEGIN_SRC conf
|
||||
<<generate-shortcuts(table=terminal-shortcuts)>>
|
||||
#+END_SRC
|
||||
|
||||
** i3 shortcuts
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-i3_shortcuts-369039ae
|
||||
:END:
|
||||
*** i3 shortcuts
|
||||
A couple of shortcuts are dedicated to i3 itself.
|
||||
#+NAME: i3-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -341,14 +295,8 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=computer-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
** Window and workspace management
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-a384b8f8
|
||||
:END:
|
||||
*** Managing how windows will split
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Managing_how_windows_will_split-5a22ae31
|
||||
:END:
|
||||
*** Window and workspace management
|
||||
**** Managing how windows will split
|
||||
It is possible to indicate to i3 how windows interact with one another, and especially how they are organized by spawning new windows either to the right or below the current window.
|
||||
#+NAME: split-win-sh
|
||||
| shortcuts | command | what it does |
|
||||
@ -361,10 +309,7 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=split-win-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Focus windows
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Focus_windows-69a00ae9
|
||||
:END:
|
||||
**** Focus windows
|
||||
To change window focus, you can use one of the following shortcuts:
|
||||
#+NAME: window-focus-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -379,10 +324,7 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=window-focus-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Focus workspaces
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Focus_workspaces-9f4bee74
|
||||
:END:
|
||||
**** Focus workspaces
|
||||
Just like windows, it is also possible to change focus between workspaces, because let’s be honest, most people won’t have ten screens to display all ten workspaces at the same time, and frankly that would be impractical.
|
||||
#+NAME: ws-focus-sh
|
||||
| shortcut | window | what it does |
|
||||
@ -403,10 +345,7 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=ws-focus-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Moving windows
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Moving_windows-d8c90ac2
|
||||
:END:
|
||||
**** Moving windows
|
||||
To move windows, a couple of shortcuts are available:
|
||||
#+NAME: window-move-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -421,10 +360,7 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=window-move-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Moving containers
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Moving_containers-b97cf4ae
|
||||
:END:
|
||||
**** Moving containers
|
||||
To move containers between the available screens, you have the following shortcuts:
|
||||
#+NAME: containers-move-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -455,10 +391,7 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=containers-ws-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Moving workspaces
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Moving_workspaces-a71d7b54
|
||||
:END:
|
||||
**** Moving workspaces
|
||||
|
||||
It is also possible to move workspaces. The related shortcuts available are the following:
|
||||
|
||||
@ -475,10 +408,7 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=workspace-move-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Close windows
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Close_windows-5e521a48
|
||||
:END:
|
||||
**** Close windows
|
||||
To close windows, we have two main shortcuts: Alt+F4 and mod+q. The first one is here due to habits, but I don’t really use it anymore due to my main keyboard which doesn’t have any easy access to the functions keys, hence mod+q.
|
||||
#+NAME: close-win-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -491,10 +421,7 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=close-win-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Manage the size of the current window
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Manage_the_size_of_the_current_window-11afa914
|
||||
:END:
|
||||
**** Manage the size of the current window
|
||||
It is possible to change the size of the current window, even if it is a floating one. The first shortcut that might interest you is $mod+f which switches your current window to fullscreen. But to resize a window, you will need to enter the ~resize~ mode.
|
||||
#+NAME: size-win-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -533,10 +460,7 @@ Here is the configuration:
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Manage floating windows
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Manage_floating_windows-9206f4da
|
||||
:END:
|
||||
**** Manage floating windows
|
||||
As said above, your windows can be floating windows instead of being tiled like they are by default. For this too we have a couple of shortcuts:
|
||||
#+NAME: float-win-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -544,17 +468,14 @@ As said above, your windows can be floating windows instead of being tiled like
|
||||
| $mod+Shift+space | floating toggle | Toggles the window between tiled and floating mode |
|
||||
| $mod+space | focus mode_toggle | Toggles the focus between tiled and floating windows |
|
||||
| $mod+Ctrl+c | move position center | Centers the focused floating window |
|
||||
If you want to move around your floating window, you can do it with your mouse while holding down the floating modifier declared [[#Variables_declaration-Floating_windows-897d0c3b][here]].
|
||||
If you want to move around your floating window, you can do it with your mouse while holding down the floating modifier declared [[file:./i3.md#floating-windows][here]].
|
||||
|
||||
Here is the configuration:
|
||||
#+BEGIN_SRC conf
|
||||
<<generate-shortcuts(table=float-win-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Scratchpad and window display
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Scratchpad_and_window_display-10d8d1f4
|
||||
:END:
|
||||
**** Scratchpad and window display
|
||||
You can think of i3’s scratchpad as some sort of extra workspace in which you can hide your windows you are not using, or as if you want to reduce a window to the taskbar of other window managers or desktop environments. You have basically two shortcuts for the scratchpad: one that sends the current window to the scratchpad, and one that cicles through the windows sent to the scratchpad and shows them to you sequencially. If you go through all of them, they will be hidden again. You can get a window out of the scratchpad by tiling it to the current workspace with the shortcut described above.
|
||||
|
||||
You also have the possibility of making a floating window a sticky window. This means not only will it show on all workspaces, it will also be on top of every other window. It can be useful if you have some notes you want to keep an eye on for instance.
|
||||
@ -570,10 +491,7 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=scratchpad-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Gaps management
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Window_and_workspace_management-Gaps_management-33979213
|
||||
:END:
|
||||
**** Gaps management
|
||||
It is possible to dynamically change the gaps between containers if we want to change a bit the appearance of i3. For that, we obviously have some shortcuts.
|
||||
#+NAME: gaps-resize-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -589,16 +507,10 @@ Here is the corresponding configuration:
|
||||
<<generate-shortcuts(table=gaps-resize-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
** Launching software
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Launching_software-0e088e69
|
||||
:END:
|
||||
*** Launching software
|
||||
A big part of my i3 shortcuts though are related to launching various software. I’ll try to sort them by category here, but do take a look even at categories which you might not be interested in, they might actually have something useful for you.
|
||||
|
||||
*** Software and command launcher
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Launching_software-Software_and_command_launcher-a3f5863e
|
||||
:END:
|
||||
**** Software and command launcher
|
||||
These commands will allow the user to launch applications which provide ~.desktop~ files or user-defined ~.desktop~ files, as well as commands with the help of rofi.
|
||||
#+NAME: launcher-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -611,10 +523,7 @@ Here is the configuration:
|
||||
<<generate-shortcuts(table=launcher-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Internet software
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Launching_software-Internet_software-a0524cd8
|
||||
:END:
|
||||
**** Internet software
|
||||
I have a couple of Internet-related software I can launch easily.
|
||||
#+NAME: internet-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -628,10 +537,7 @@ Hence this configuration:
|
||||
<<generate-shortcuts(table=internet-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Screenshots
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Launching_software-Screenshots-41e41c88
|
||||
:END:
|
||||
**** Screenshots
|
||||
A couple of shortcuts are available for taking screenshots.
|
||||
#+NAME: screenshot-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -645,10 +551,7 @@ This gives us this configuration:
|
||||
<<generate-shortcuts(table=screenshot-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Screen brightness
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Launching_software-Screen_brightness-6855d53f
|
||||
:END:
|
||||
**** Screen brightness
|
||||
Here we have four commands for managing our screen’s brightness (this is useful for laptops, not so much with desktops), and two of them are actually duplicates of the other two in case a laptop doesn’t have dedicated keys or we are using a keyboard which doesn’t provide them.
|
||||
#+NAME: brightness-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -663,10 +566,7 @@ This gives us this configuration:
|
||||
<<generate-shortcuts(table=brightness-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Media control
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Launching_software-Media_control-18ad2815
|
||||
:END:
|
||||
**** Media control
|
||||
Some shortcuts are dedicated to media control, especially when it comes to controlling music. All of these media control shortcuts will be calls to ~mpc~ which will in turn send commands to ~mpd~, which is the music server I use on my computers.
|
||||
#+NAME: media-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -709,31 +609,25 @@ This gives us this configuration:
|
||||
<<generate-shortcuts(table=volume-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Rofi utilities
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Launching_software-Rofi_utilities-b8eb5b95
|
||||
:END:
|
||||
**** Rofi utilities
|
||||
We also have some utilities I’ve written and which are interfaced with rofi. Here are said shortcuts.
|
||||
#+NAME: rofi-sh
|
||||
| shortcut | command | what it does |
|
||||
|-------------------+-----------------------+-----------------------------------------------------------------------|
|
||||
| shortcut | command | what it does |
|
||||
|-------------------+-----------------------+---------------------------------------------------------------------|
|
||||
| $mod+Shift+p | exec rofi-pass --type | Types the selected password available from ~pass~ where the cursor is |
|
||||
| $mod+Ctrl+Shift+p | exec rofi-pass | Copies in the clipboard the selected password from ~pass~ for 45 sec |
|
||||
| $mod+Ctrl+m | exec rofi-mount | Volume mounting helper |
|
||||
| $mod+Ctrl+u | exec rofi-umount | Volume unmounting helper |
|
||||
| $mod+$alt+e | exec rofi-emoji | Emoji picker, copies it in the clipboard |
|
||||
| $mod+Ctrl+w | exec wacom-setup | Sets my Wacom Bamboo tablet as being active on the selected screen |
|
||||
| $mod+Shift+w | exec connect-wifi | Connect to an available WiFi network |
|
||||
| $mod+Ctrl+m | exec rofi-mount | Volume mounting helper |
|
||||
| $mod+Ctrl+u | exec rofi-umount | Volume unmounting helper |
|
||||
| $mod+$alt+e | exec rofi-emoji | Emoji picker, copies it in the clipboard |
|
||||
| $mod+Ctrl+w | exec wacom-setup | Sets my Wacom Bamboo tablet as being active on the selected screen |
|
||||
| $mod+Shift+w | exec connect-wifi | Connect to an available WiFi network |
|
||||
|
||||
This gives us the following configuration:
|
||||
#+BEGIN_SRC conf
|
||||
<<generate-shortcuts(table=rofi-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Miscellaneous
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Launching_software-Miscellaneous-7ec80fea
|
||||
:END:
|
||||
**** Miscellaneous
|
||||
And last but not least, I have some other shortcuts for various software, some of them which I use quite a lot like the shortcut for launching Emacs.
|
||||
#+NAME: misc-sh
|
||||
| shortcut | command | what it does |
|
||||
@ -748,10 +642,7 @@ This gives us the following configuration:
|
||||
<<generate-shortcuts(table=misc-sh)>>
|
||||
#+END_SRC
|
||||
|
||||
*** Screen management
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Shortcuts-Launching_software-Screen_management-f9b35bf2
|
||||
:END:
|
||||
**** Screen management
|
||||
Additionally, we have a shortcut for entering presentation mode on the additional screen of the computer; on my main computer, Mila, the additional screen is HDMI-1, while it is VGA1 on my travel laptop. We’ll use some Emacs Lisp to determine on the configuration file export which screens names to use.
|
||||
#+NAME: hostname-screen-management
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
@ -764,10 +655,7 @@ Now, we just have to call this Emacs Lisp code as a noweb reference and execute
|
||||
<<hostname-screen-management()>>
|
||||
#+END_SRC
|
||||
|
||||
* Software autolaunch
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: Software_autolaunch-ccee82f6
|
||||
:END:
|
||||
** Software autolaunch
|
||||
When i3 is launched, I want it to also launch some software automatically. Here is what we will launch:
|
||||
#+NAME: autolaunch
|
||||
| always execute it? | command | what it is |
|
Before Width: | Height: | Size: 392 KiB After Width: | Height: | Size: 392 KiB |
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 3.0 MiB After Width: | Height: | Size: 3.0 MiB |
Before Width: | Height: | Size: 179 KiB After Width: | Height: | Size: 179 KiB |
Before Width: | Height: | Size: 415 KiB After Width: | Height: | Size: 415 KiB |