-
Check the AMD Radeon Software for Linux latest version that is available. This is because until these graphics drivers support a linux kernel version there is no use trying to install linux in your machine.
-
Check the kernel version supported and create a bootable drive of the linux distro with exactly that kernel.
-
While installation DONOT agree 'download updates while installation'. Random updates are installed which can be a problem.
-
After installing there is a high chance that the neither(internal gpu nor dedicated GPU) drivers are installed. If the linux doesnt boot under GUI, try TTY
(ctrl+alt+F[1-6])and change the following parameter in /etc/default/grubGRUB_CMDLINE_LINUX_DEFAULT = "nomodeset"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // get all tweets from @prisma | |
| from:prisma | |
| // tweets between two accounts | |
| from:ryanchenkie to:chris__sev | |
| // tweets by a hashtag but only with images | |
| #InaugurationDay filter:images | |
| // keywords by people on a specific list |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # Launches files based on their mimetypes | |
| # Usage: launch [FILE...] | |
| # Dependencies: file | |
| case $(file --mime-type "$@" -bL) in | |
| # Check for the mimetype of your file (This is POSIX regex) | |
| video/* | audio/* | image/gif) | |
| # Launch using your favorite application |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Prefix is Ctrl-a | |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| unbind C-b | |
| set -sg escape-time 1 | |
| set -g base-index 1 | |
| setw -g pane-base-index 1 | |
| #Mouse works as expected |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Use rofi to pick emoji because that's what this | |
| # century is about apparently... | |
| # | |
| # Requirements: | |
| # rofi, xsel, xdotool, curl, xmllint | |
| # | |
| # Usage: | |
| # 1. Download all emoji |
What people refer to as a "macro" is often actually a "recording".
You press qa to start recording your commands into register a, you do your thing, you stop your recording with q, and you play that recording back with @a.
Yes, what you just recorded is a macro, but macros are not necessarily recorded or even stored in registers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install ARCH Linux with encrypted file-system and UEFI | |
| # The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
| # Download the archiso image from https://www.archlinux.org/ | |
| # Copy to a usb-drive | |
| dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
| # Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
| # Set swiss-french keymap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Xft.dpi: 120 | |
| Xft.antialias: true | |
| Xft.hinting: true | |
| Xft.rgba: rgb | |
| Xft.hintstyle: hintslight | |
| rofi.color-enabled: true | |
| rofi.color-window: #282828, #282828, #268bd2 | |
| rofi.color-normal: #282828, #ffffff, #282828, #268bd2, #ffffff | |
| rofi.color-active: #282828, #268bd2, #282828, #268bd2, #205171 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------------------------------------- | |
| -- Configuration for using Xmonad inside Xfce, KDE and standalone. | |
| -- | |
| -- Xfce: It is recommended to disable/remove xfwm4 and xfdesktop. | |
| -- KDE: Plasma works with xmonad, except | |
| -- 1. Mouse cursor cannot focus on empty monitors. | |
| -- 2. Panel start-menu search field cannot receive input. | |
| ------------------------------------------------------------------------------- |
NewerOlder