start new:
tmux
start new with session name:
tmux new -s myname
| Package: libcuda* nvidia* | |
| Pin: release o=LP-PPA-xorg-edgers | |
| Pin-Priority: 500 | |
| Package: * | |
| Pin: release o=LP-PPA-xorg-edgers | |
| Pin-Priority: 50 |
| <?php | |
| /** | |
| * This file is part of the Mango package. | |
| * | |
| * (c) Mango | |
| * | |
| * For the full copyright and license information, please view the LICENSE | |
| * file that was distributed with this source code. | |
| */ |
| import os | |
| import xml.etree.cElementTree as ET | |
| wallpapers = ET.Element("wallpapers") | |
| for root, dirs, files in os.walk(os.path.expanduser("~/Pictures")): | |
| for file in files: | |
| if (file.lower().endswith(('.png', '.jpg', '.jpeg'))): | |
| wallpaper = ET.SubElement(wallpapers, "wallpaper") | |
| wallpaper.set("deleted", "false") | |
| name = ET.SubElement(wallpaper, "name") |
| #!/bin/bash | |
| # export DBUS_SESSION_BUS_ADDRESS environment variable because cron hates me | |
| PID=$(pgrep -u USER gnome-session-b) | |
| export DBUS_SESSION_BUS_ADDRESS=$(grep -z DBUS_SESSION_BUS_ADDRESS /proc/$PID/environ|cut -d= -f2-) | |
| /usr/bin/gsettings set org.gnome.shell.extensions.user-theme name 'Flat-Plat' | |
| /usr/bin/gsettings set org.gnome.desktop.interface gtk-theme 'Flat-Plat' | |
| /usr/bin/gsettings set org.gnome.desktop.background picture-uri 'file://WALLPAPER-PATH' | |
| /usr/bin/gsettings --schemadir ~/.local/share/gnome-shell/extensions/[email protected] set org.zzrough.gs-extensions.drop-down-terminal background-color 'rgb(69,90,100)' |
I have managed to install this… and make it work. I implemented it for Facebook and Google, but you can extend it. My solution it is mostly as described in #116, with a bit of more code presented. The key aspects that lack in the #116 presentation (IMO) are:
oauth_user_provider in the security.yml with your custom created serviceHere are the steps:
routing.yml I have added all the routes for both bundles.config.yml mostly as it is presented in the HWIOAuthBundle.security.yml mostly as it is presented in the HWIOAuthBundle (though my routes are using /login pattern, not /connect). Also, the oauth_user_provider is set for my custom service.| zsh | |
| nvim | |
| oh-my-zsh | |
| zsh-syntax-highlighting | |
| https://github.com/junegunn/fzf | |
| https://github.com/jeffkaufman/icdiff | |
| https://github.com/keepcosmos/terjira | |
| https://github.com/zsh-users/zsh-autosuggestions | |
| curl | |
| htop |
| Todo |
| <?php | |
| declare(strict_types=1); | |
| namespace App\Entity; | |
| use Symfony\Component\Security\Core\User\UserInterface as BaseUserInterface; | |
| /** | |
| * Interface UserInterface. | |
| */ |